diff --git a/c-api/structures.po b/c-api/structures.po index f07aa80d..5088c5ee 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-02 22:11+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -133,14 +133,17 @@ msgid "" msgstr "" #: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240 +#: ../Doc/c-api/structures.rst:305 msgid "Field" msgstr "" #: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240 +#: ../Doc/c-api/structures.rst:305 msgid "C Type" msgstr "Type C" #: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240 +#: ../Doc/c-api/structures.rst:305 msgid "Meaning" msgstr "Signification" @@ -150,7 +153,8 @@ msgstr "" #: ../Doc/c-api/structures.rst:131 ../Doc/c-api/structures.rst:139 #: ../Doc/c-api/structures.rst:242 ../Doc/c-api/structures.rst:255 -#: ../Doc/c-api/structures.rst:271 +#: ../Doc/c-api/structures.rst:271 ../Doc/c-api/structures.rst:307 +#: ../Doc/c-api/structures.rst:315 msgid "char \\*" msgstr "" @@ -488,3 +492,89 @@ msgid "" "macro:`READONLY`. Only :c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` " "members can be deleted. (They are set to *NULL*)." msgstr "" + +#: ../Doc/c-api/structures.rst:301 +msgid "" +"Structure to define property-like access for a type. See also description of " +"the :c:member:`PyTypeObject.tp_getset` slot." +msgstr "" + +#: ../Doc/c-api/structures.rst:307 +msgid "name" +msgstr "" + +#: ../Doc/c-api/structures.rst:307 +msgid "attribute name" +msgstr "" + +#: ../Doc/c-api/structures.rst:309 +msgid "get" +msgstr "" + +#: ../Doc/c-api/structures.rst:309 +msgid "getter" +msgstr "" + +#: ../Doc/c-api/structures.rst:309 +msgid "C Function to get the attribute" +msgstr "" + +#: ../Doc/c-api/structures.rst:311 +msgid "set" +msgstr "" + +#: ../Doc/c-api/structures.rst:311 +msgid "setter" +msgstr "" + +#: ../Doc/c-api/structures.rst:311 +msgid "" +"optional C function to set or delete the attribute, if omitted the attribute " +"is readonly" +msgstr "" + +#: ../Doc/c-api/structures.rst:315 +msgid "doc" +msgstr "" + +#: ../Doc/c-api/structures.rst:315 +msgid "optional docstring" +msgstr "" + +#: ../Doc/c-api/structures.rst:317 +msgid "closure" +msgstr "" + +#: ../Doc/c-api/structures.rst:317 +msgid "void \\*" +msgstr "" + +#: ../Doc/c-api/structures.rst:317 +msgid "" +"optional function pointer, providing additional data for getter and setter" +msgstr "" + +#: ../Doc/c-api/structures.rst:322 +msgid "" +"The ``get`` function takes one :c:type:`PyObject\\*` parameter (the " +"instance) and a function pointer (the associated ``closure``)::" +msgstr "" + +#: ../Doc/c-api/structures.rst:327 +msgid "" +"It should return a new reference on success or *NULL* with a set exception " +"on failure." +msgstr "" + +#: ../Doc/c-api/structures.rst:330 +msgid "" +"``set`` functions take two :c:type:`PyObject\\*` parameters (the instance " +"and the value to be set) and a function pointer (the associated " +"``closure``)::" +msgstr "" + +#: ../Doc/c-api/structures.rst:335 +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 "" diff --git a/c-api/typeobj.po b/c-api/typeobj.po index 2eca84a0..189792e6 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-02 22:11+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -120,9 +120,9 @@ msgstr "" #: ../Doc/c-api/typeobj.rst:86 ../Doc/c-api/typeobj.rst:188 #: ../Doc/c-api/typeobj.rst:255 ../Doc/c-api/typeobj.rst:322 #: ../Doc/c-api/typeobj.rst:340 ../Doc/c-api/typeobj.rst:666 -#: ../Doc/c-api/typeobj.rst:683 ../Doc/c-api/typeobj.rst:778 -#: ../Doc/c-api/typeobj.rst:873 ../Doc/c-api/typeobj.rst:966 -#: ../Doc/c-api/typeobj.rst:1021 +#: ../Doc/c-api/typeobj.rst:683 ../Doc/c-api/typeobj.rst:763 +#: ../Doc/c-api/typeobj.rst:858 ../Doc/c-api/typeobj.rst:951 +#: ../Doc/c-api/typeobj.rst:1006 msgid "This field is inherited by subtypes." msgstr "" @@ -951,11 +951,7 @@ msgid "" "through a different mechanism)." msgstr "" -#: ../Doc/c-api/typeobj.rst:724 -msgid "Docs for PyGetSetDef::" -msgstr "" - -#: ../Doc/c-api/typeobj.rst:740 +#: ../Doc/c-api/typeobj.rst:725 msgid "" "An optional pointer to a base type from which type properties are " "inherited. At this level, only single inheritance is supported; multiple " @@ -963,18 +959,18 @@ msgid "" "metatype." msgstr "" -#: ../Doc/c-api/typeobj.rst:744 +#: ../Doc/c-api/typeobj.rst:729 msgid "" "This field is not inherited by subtypes (obviously), but it defaults to " "``&PyBaseObject_Type`` (which to Python programmers is known as the type :" "class:`object`)." msgstr "" -#: ../Doc/c-api/typeobj.rst:751 +#: ../Doc/c-api/typeobj.rst:736 msgid "The type's dictionary is stored here by :c:func:`PyType_Ready`." msgstr "" -#: ../Doc/c-api/typeobj.rst:753 +#: ../Doc/c-api/typeobj.rst:738 msgid "" "This field should normally be initialized to *NULL* before PyType_Ready is " "called; it may also be initialized to a dictionary containing initial " @@ -983,41 +979,41 @@ msgid "" "they don't correspond to overloaded operations (like :meth:`__add__`)." msgstr "" -#: ../Doc/c-api/typeobj.rst:759 +#: ../Doc/c-api/typeobj.rst:744 msgid "" "This field is not inherited by subtypes (though the attributes defined in " "here are inherited through a different mechanism)." msgstr "" -#: ../Doc/c-api/typeobj.rst:764 +#: ../Doc/c-api/typeobj.rst:749 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 "" -#: ../Doc/c-api/typeobj.rst:770 +#: ../Doc/c-api/typeobj.rst:755 msgid "An optional pointer to a \"descriptor get\" function." msgstr "" -#: ../Doc/c-api/typeobj.rst:772 ../Doc/c-api/typeobj.rst:786 -#: ../Doc/c-api/typeobj.rst:858 ../Doc/c-api/typeobj.rst:880 -#: ../Doc/c-api/typeobj.rst:911 +#: ../Doc/c-api/typeobj.rst:757 ../Doc/c-api/typeobj.rst:771 +#: ../Doc/c-api/typeobj.rst:843 ../Doc/c-api/typeobj.rst:865 +#: ../Doc/c-api/typeobj.rst:896 msgid "The function signature is ::" msgstr "" -#: ../Doc/c-api/typeobj.rst:783 +#: ../Doc/c-api/typeobj.rst:768 msgid "" "An optional pointer to a function for setting and deleting a descriptor's " "value." msgstr "" -#: ../Doc/c-api/typeobj.rst:790 +#: ../Doc/c-api/typeobj.rst:775 msgid "" "The *value* argument is set to *NULL* to delete the value. This field is " "inherited by subtypes." msgstr "" -#: ../Doc/c-api/typeobj.rst:798 +#: ../Doc/c-api/typeobj.rst:783 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 " @@ -1025,13 +1021,13 @@ msgid "" "func:`PyObject_GenericGetAttr`." msgstr "" -#: ../Doc/c-api/typeobj.rst:803 +#: ../Doc/c-api/typeobj.rst:788 msgid "" "Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is " "the dictionary for attributes of the type object itself." msgstr "" -#: ../Doc/c-api/typeobj.rst:806 +#: ../Doc/c-api/typeobj.rst:791 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, " @@ -1047,13 +1043,13 @@ msgid "" "the very end of the structure." msgstr "" -#: ../Doc/c-api/typeobj.rst:818 +#: ../Doc/c-api/typeobj.rst:803 msgid "" "The real dictionary offset in an instance can be computed from a negative :c:" "member:`~PyTypeObject.tp_dictoffset` as follows::" msgstr "" -#: ../Doc/c-api/typeobj.rst:825 +#: ../Doc/c-api/typeobj.rst:810 msgid "" "where :c:member:`~PyTypeObject.tp_basicsize`, :c:member:`~PyTypeObject." "tp_itemsize` and :c:member:`~PyTypeObject.tp_dictoffset` are taken from the " @@ -1063,7 +1059,7 @@ msgid "" "it is done for you by :c:func:`_PyObject_GetDictPtr`.)" msgstr "" -#: ../Doc/c-api/typeobj.rst:831 +#: ../Doc/c-api/typeobj.rst:816 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 " @@ -1072,7 +1068,7 @@ msgid "" "should not be a problem." msgstr "" -#: ../Doc/c-api/typeobj.rst:836 +#: ../Doc/c-api/typeobj.rst:821 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, " @@ -1080,14 +1076,14 @@ msgid "" "`~PyTypeObject.tp_dictoffset` is set to that slot's offset." msgstr "" -#: ../Doc/c-api/typeobj.rst:841 +#: ../Doc/c-api/typeobj.rst:826 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 "" -#: ../Doc/c-api/typeobj.rst:844 +#: ../Doc/c-api/typeobj.rst:829 msgid "" "(Adding a slot named :attr:`~object.__dict__` to the :attr:`__slots__` " "declaration does not have the expected effect, it just causes confusion. " @@ -1095,11 +1091,11 @@ msgid "" "though.)" msgstr "" -#: ../Doc/c-api/typeobj.rst:851 +#: ../Doc/c-api/typeobj.rst:836 msgid "An optional pointer to an instance initialization function." msgstr "" -#: ../Doc/c-api/typeobj.rst:853 +#: ../Doc/c-api/typeobj.rst:838 msgid "" "This function corresponds to the :meth:`__init__` method of classes. Like :" "meth:`__init__`, it is possible to create an instance without calling :meth:" @@ -1107,14 +1103,14 @@ msgid "" "meth:`__init__` method again." msgstr "" -#: ../Doc/c-api/typeobj.rst:862 +#: ../Doc/c-api/typeobj.rst:847 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:" "`__init__`." msgstr "" -#: ../Doc/c-api/typeobj.rst:866 +#: ../Doc/c-api/typeobj.rst:851 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 :" @@ -1126,11 +1122,11 @@ msgid "" "subtype's :c:member:`~PyTypeObject.tp_init` is called." msgstr "" -#: ../Doc/c-api/typeobj.rst:878 +#: ../Doc/c-api/typeobj.rst:863 msgid "An optional pointer to an instance allocation function." msgstr "" -#: ../Doc/c-api/typeobj.rst:884 +#: ../Doc/c-api/typeobj.rst:869 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 " @@ -1144,14 +1140,14 @@ msgid "" "member:`~PyTypeObject.tp_basicsize`." msgstr "" -#: ../Doc/c-api/typeobj.rst:894 +#: ../Doc/c-api/typeobj.rst:879 msgid "" "Do not use this function to do any other instance initialization, not even " "to allocate additional memory; that should be done by :c:member:" "`~PyTypeObject.tp_new`." msgstr "" -#: ../Doc/c-api/typeobj.rst:897 +#: ../Doc/c-api/typeobj.rst:882 msgid "" "This field is inherited by static subtypes, but not by dynamic subtypes " "(subtypes created by a class statement); in the latter, this field is always " @@ -1159,18 +1155,18 @@ msgid "" "strategy. That is also the recommended value for statically defined types." msgstr "" -#: ../Doc/c-api/typeobj.rst:905 +#: ../Doc/c-api/typeobj.rst:890 msgid "An optional pointer to an instance creation function." msgstr "" -#: ../Doc/c-api/typeobj.rst:907 +#: ../Doc/c-api/typeobj.rst:892 msgid "" "If this function is *NULL* for a particular type, that type cannot be called " "to create new instances; presumably there is some other way to create " "instances, like a factory function." msgstr "" -#: ../Doc/c-api/typeobj.rst:915 +#: ../Doc/c-api/typeobj.rst:900 msgid "" "The subtype argument is the type of the object being created; the *args* and " "*kwds* arguments represent positional and keyword arguments of the call to " @@ -1179,7 +1175,7 @@ msgid "" "(but not an unrelated type)." msgstr "" -#: ../Doc/c-api/typeobj.rst:921 +#: ../Doc/c-api/typeobj.rst:906 msgid "" "The :c:member:`~PyTypeObject.tp_new` function should call ``subtype-" ">tp_alloc(subtype, nitems)`` to allocate space for the object, and then do " @@ -1191,26 +1187,26 @@ msgid "" "be deferred to :c:member:`~PyTypeObject.tp_init`." msgstr "" -#: ../Doc/c-api/typeobj.rst:929 +#: ../Doc/c-api/typeobj.rst:914 msgid "" "This field is inherited by subtypes, except it is not inherited by static " "types whose :c:member:`~PyTypeObject.tp_base` is *NULL* or " "``&PyBaseObject_Type``." msgstr "" -#: ../Doc/c-api/typeobj.rst:935 +#: ../Doc/c-api/typeobj.rst:920 msgid "" "An optional pointer to an instance deallocation function. Its signature is :" "c:type:`freefunc`::" msgstr "" -#: ../Doc/c-api/typeobj.rst:940 +#: ../Doc/c-api/typeobj.rst:925 msgid "" "An initializer that is compatible with this signature is :c:func:" "`PyObject_Free`." msgstr "" -#: ../Doc/c-api/typeobj.rst:942 +#: ../Doc/c-api/typeobj.rst:927 msgid "" "This field is inherited by static subtypes, but not by dynamic subtypes " "(subtypes created by a class statement); in the latter, this field is set to " @@ -1218,11 +1214,11 @@ msgid "" "of the :const:`Py_TPFLAGS_HAVE_GC` flag bit." msgstr "" -#: ../Doc/c-api/typeobj.rst:950 +#: ../Doc/c-api/typeobj.rst:935 msgid "An optional pointer to a function called by the garbage collector." msgstr "" -#: ../Doc/c-api/typeobj.rst:952 +#: ../Doc/c-api/typeobj.rst:937 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 " @@ -1234,46 +1230,46 @@ msgid "" "instance. The signature is ::" msgstr "" -#: ../Doc/c-api/typeobj.rst:962 +#: ../Doc/c-api/typeobj.rst:947 msgid "" "(The only example of this are types themselves. The metatype, :c:data:" "`PyType_Type`, defines this function to distinguish between statically and " "dynamically allocated types.)" msgstr "" -#: ../Doc/c-api/typeobj.rst:971 +#: ../Doc/c-api/typeobj.rst:956 msgid "Tuple of base types." msgstr "" -#: ../Doc/c-api/typeobj.rst:973 +#: ../Doc/c-api/typeobj.rst:958 msgid "" "This is set for types created by a class statement. It should be *NULL* for " "statically defined types." msgstr "" -#: ../Doc/c-api/typeobj.rst:976 +#: ../Doc/c-api/typeobj.rst:961 msgid "This field is not inherited." msgstr "" -#: ../Doc/c-api/typeobj.rst:981 +#: ../Doc/c-api/typeobj.rst:966 msgid "" "Tuple containing the expanded set of base types, starting with the type " "itself and ending with :class:`object`, in Method Resolution Order." msgstr "" -#: ../Doc/c-api/typeobj.rst:984 +#: ../Doc/c-api/typeobj.rst:969 msgid "" "This field is not inherited; it is calculated fresh by :c:func:" "`PyType_Ready`." msgstr "" -#: ../Doc/c-api/typeobj.rst:989 +#: ../Doc/c-api/typeobj.rst:974 msgid "" "An optional pointer to an instance finalization function. Its signature is :" "c:type:`destructor`::" msgstr "" -#: ../Doc/c-api/typeobj.rst:994 +#: ../Doc/c-api/typeobj.rst:979 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 " @@ -1283,39 +1279,39 @@ msgid "" "object in a sane state." msgstr "" -#: ../Doc/c-api/typeobj.rst:1001 +#: ../Doc/c-api/typeobj.rst:986 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 "" -#: ../Doc/c-api/typeobj.rst:1018 +#: ../Doc/c-api/typeobj.rst:1003 msgid "" "For this field to be taken into account (even through inheritance), you must " "also set the :const:`Py_TPFLAGS_HAVE_FINALIZE` flags bit." msgstr "" -#: ../Doc/c-api/typeobj.rst:1025 +#: ../Doc/c-api/typeobj.rst:1010 msgid "\"Safe object finalization\" (:pep:`442`)" msgstr "" -#: ../Doc/c-api/typeobj.rst:1030 +#: ../Doc/c-api/typeobj.rst:1015 msgid "Unused. Not inherited. Internal use only." msgstr "" -#: ../Doc/c-api/typeobj.rst:1035 +#: ../Doc/c-api/typeobj.rst:1020 msgid "" "List of weak references to subclasses. Not inherited. Internal use only." msgstr "" -#: ../Doc/c-api/typeobj.rst:1040 +#: ../Doc/c-api/typeobj.rst:1025 msgid "" "Weak reference list head, for weak references to this type object. Not " "inherited. Internal use only." msgstr "" -#: ../Doc/c-api/typeobj.rst:1043 +#: ../Doc/c-api/typeobj.rst:1028 msgid "" "The remaining fields are only defined if the feature test macro :const:" "`COUNT_ALLOCS` is defined, and are for internal use only. They are " @@ -1323,25 +1319,25 @@ msgid "" "subtypes." msgstr "" -#: ../Doc/c-api/typeobj.rst:1051 +#: ../Doc/c-api/typeobj.rst:1036 msgid "Number of allocations." msgstr "" -#: ../Doc/c-api/typeobj.rst:1056 +#: ../Doc/c-api/typeobj.rst:1041 msgid "Number of frees." msgstr "" -#: ../Doc/c-api/typeobj.rst:1061 +#: ../Doc/c-api/typeobj.rst:1046 msgid "Maximum simultaneously allocated objects." msgstr "" -#: ../Doc/c-api/typeobj.rst:1066 +#: ../Doc/c-api/typeobj.rst:1051 msgid "" "Pointer to the next type object with a non-zero :c:member:`~PyTypeObject." "tp_allocs` field." msgstr "" -#: ../Doc/c-api/typeobj.rst:1068 +#: ../Doc/c-api/typeobj.rst:1053 msgid "" "Also, note that, in a garbage collected Python, tp_dealloc may be called " "from any Python thread, not just the thread which created the object (if the " @@ -1354,22 +1350,22 @@ msgid "" "will not violate any assumptions of the library." msgstr "" -#: ../Doc/c-api/typeobj.rst:1082 +#: ../Doc/c-api/typeobj.rst:1067 msgid "Number Object Structures" msgstr "" -#: ../Doc/c-api/typeobj.rst:1089 +#: ../Doc/c-api/typeobj.rst:1074 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 "" -#: ../Doc/c-api/typeobj.rst:1093 ../Doc/c-api/typeobj.rst:1366 +#: ../Doc/c-api/typeobj.rst:1078 ../Doc/c-api/typeobj.rst:1351 msgid "Here is the structure definition::" msgstr "" -#: ../Doc/c-api/typeobj.rst:1140 +#: ../Doc/c-api/typeobj.rst:1125 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 " @@ -1379,37 +1375,37 @@ msgid "" "and set an exception." msgstr "" -#: ../Doc/c-api/typeobj.rst:1149 +#: ../Doc/c-api/typeobj.rst:1134 msgid "" "The :c:data:`nb_reserved` field should always be ``NULL``. It was " "previously called :c:data:`nb_long`, and was renamed in Python 3.0.1." msgstr "" -#: ../Doc/c-api/typeobj.rst:1157 +#: ../Doc/c-api/typeobj.rst:1142 msgid "Mapping Object Structures" msgstr "" -#: ../Doc/c-api/typeobj.rst:1164 +#: ../Doc/c-api/typeobj.rst:1149 msgid "" "This structure holds pointers to the functions which an object uses to " "implement the mapping protocol. It has three members:" msgstr "" -#: ../Doc/c-api/typeobj.rst:1169 +#: ../Doc/c-api/typeobj.rst:1154 msgid "" "This function is used by :c:func:`PyMapping_Length` 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 "" -#: ../Doc/c-api/typeobj.rst:1175 +#: ../Doc/c-api/typeobj.rst:1160 msgid "" "This function is used by :c:func:`PyObject_GetItem` and has the same " "signature. This slot must be filled for the :c:func:`PyMapping_Check` " "function to return ``1``, it can be *NULL* otherwise." msgstr "" -#: ../Doc/c-api/typeobj.rst:1181 +#: ../Doc/c-api/typeobj.rst:1166 msgid "" "This function is used by :c:func:`PyObject_SetItem` and :c:func:" "`PyObject_DelItem`. It has the same signature as :c:func:" @@ -1418,30 +1414,30 @@ msgid "" "deletion." msgstr "" -#: ../Doc/c-api/typeobj.rst:1191 +#: ../Doc/c-api/typeobj.rst:1176 msgid "Sequence Object Structures" msgstr "" -#: ../Doc/c-api/typeobj.rst:1198 +#: ../Doc/c-api/typeobj.rst:1183 msgid "" "This structure holds pointers to the functions which an object uses to " "implement the sequence protocol." msgstr "" -#: ../Doc/c-api/typeobj.rst:1203 +#: ../Doc/c-api/typeobj.rst:1188 msgid "" "This function is used by :c:func:`PySequence_Size` and :c:func:" "`PyObject_Size`, and has the same signature." msgstr "" -#: ../Doc/c-api/typeobj.rst:1208 +#: ../Doc/c-api/typeobj.rst:1193 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:`~PyTypeObject.tp_as_number.nb_add` slot." msgstr "" -#: ../Doc/c-api/typeobj.rst:1214 +#: ../Doc/c-api/typeobj.rst:1199 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 " @@ -1449,14 +1445,14 @@ msgid "" "slot." msgstr "" -#: ../Doc/c-api/typeobj.rst:1221 +#: ../Doc/c-api/typeobj.rst:1206 msgid "" "This function is used by :c:func:`PySequence_GetItem` and has the same " "signature. This slot must be filled for the :c:func:`PySequence_Check` " "function to return ``1``, it can be *NULL* otherwise." msgstr "" -#: ../Doc/c-api/typeobj.rst:1225 +#: ../Doc/c-api/typeobj.rst:1210 msgid "" "Negative indexes are handled as follows: if the :attr:`sq_length` slot is " "filled, it is called and the sequence length is used to compute a positive " @@ -1464,98 +1460,98 @@ msgid "" "the index is passed as is to the function." msgstr "" -#: ../Doc/c-api/typeobj.rst:1232 +#: ../Doc/c-api/typeobj.rst:1217 msgid "" "This function is used by :c:func:`PySequence_SetItem` and has the same " "signature. This slot may be left to *NULL* if the object does not support " "item assignment and deletion." msgstr "" -#: ../Doc/c-api/typeobj.rst:1238 +#: ../Doc/c-api/typeobj.rst:1223 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 "" -#: ../Doc/c-api/typeobj.rst:1245 +#: ../Doc/c-api/typeobj.rst:1230 msgid "" "This function is used by :c:func:`PySequence_InPlaceConcat` and has the same " "signature. It should modify its first operand, and return it." msgstr "" -#: ../Doc/c-api/typeobj.rst:1250 +#: ../Doc/c-api/typeobj.rst:1235 msgid "" "This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same " "signature. It should modify its first operand, and return it." msgstr "" -#: ../Doc/c-api/typeobj.rst:1260 +#: ../Doc/c-api/typeobj.rst:1245 msgid "Buffer Object Structures" msgstr "" -#: ../Doc/c-api/typeobj.rst:1268 +#: ../Doc/c-api/typeobj.rst:1253 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 "" -#: ../Doc/c-api/typeobj.rst:1274 ../Doc/c-api/typeobj.rst:1323 -#: ../Doc/c-api/typeobj.rst:1376 ../Doc/c-api/typeobj.rst:1387 -#: ../Doc/c-api/typeobj.rst:1398 +#: ../Doc/c-api/typeobj.rst:1259 ../Doc/c-api/typeobj.rst:1308 +#: ../Doc/c-api/typeobj.rst:1361 ../Doc/c-api/typeobj.rst:1372 +#: ../Doc/c-api/typeobj.rst:1383 msgid "The signature of this function is::" msgstr "" -#: ../Doc/c-api/typeobj.rst:1278 +#: ../Doc/c-api/typeobj.rst:1263 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 "" -#: ../Doc/c-api/typeobj.rst:1282 +#: ../Doc/c-api/typeobj.rst:1267 msgid "" "Check if the request can be met. If not, raise :c:data:`PyExc_BufferError`, " "set :c:data:`view->obj` to *NULL* and return ``-1``." msgstr "" -#: ../Doc/c-api/typeobj.rst:1285 +#: ../Doc/c-api/typeobj.rst:1270 msgid "Fill in the requested fields." msgstr "" -#: ../Doc/c-api/typeobj.rst:1287 +#: ../Doc/c-api/typeobj.rst:1272 msgid "Increment an internal counter for the number of exports." msgstr "" -#: ../Doc/c-api/typeobj.rst:1289 +#: ../Doc/c-api/typeobj.rst:1274 msgid "" "Set :c:data:`view->obj` to *exporter* and increment :c:data:`view->obj`." msgstr "" -#: ../Doc/c-api/typeobj.rst:1291 +#: ../Doc/c-api/typeobj.rst:1276 msgid "Return ``0``." msgstr "" -#: ../Doc/c-api/typeobj.rst:1293 +#: ../Doc/c-api/typeobj.rst:1278 msgid "" "If *exporter* is part of a chain or tree of buffer providers, two main " "schemes can be used:" msgstr "" -#: ../Doc/c-api/typeobj.rst:1296 +#: ../Doc/c-api/typeobj.rst:1281 msgid "" "Re-export: Each member of the tree acts as the exporting object and sets :c:" "data:`view->obj` to a new reference to itself." msgstr "" -#: ../Doc/c-api/typeobj.rst:1299 +#: ../Doc/c-api/typeobj.rst:1284 msgid "" "Redirect: The buffer request is redirected to the root object of the tree. " "Here, :c:data:`view->obj` will be a new reference to the root object." msgstr "" -#: ../Doc/c-api/typeobj.rst:1303 +#: ../Doc/c-api/typeobj.rst:1288 msgid "" "The individual fields of *view* are described in section :ref:`Buffer " "structure `, the rules how an exporter must react to " @@ -1563,7 +1559,7 @@ msgid "" "types>`." msgstr "" -#: ../Doc/c-api/typeobj.rst:1308 +#: ../Doc/c-api/typeobj.rst:1293 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:" @@ -1572,19 +1568,19 @@ msgid "" "internal` are read-only for the consumer." msgstr "" -#: ../Doc/c-api/typeobj.rst:1315 +#: ../Doc/c-api/typeobj.rst:1300 msgid "" ":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes " "buffer while dealing correctly with all request types." msgstr "" -#: ../Doc/c-api/typeobj.rst:1318 +#: ../Doc/c-api/typeobj.rst:1303 msgid "" ":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps " "this function." msgstr "" -#: ../Doc/c-api/typeobj.rst:1327 +#: ../Doc/c-api/typeobj.rst:1312 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 " @@ -1592,15 +1588,15 @@ msgid "" "these optional steps:" msgstr "" -#: ../Doc/c-api/typeobj.rst:1332 +#: ../Doc/c-api/typeobj.rst:1317 msgid "Decrement an internal counter for the number of exports." msgstr "" -#: ../Doc/c-api/typeobj.rst:1334 +#: ../Doc/c-api/typeobj.rst:1319 msgid "If the counter is ``0``, free all memory associated with *view*." msgstr "" -#: ../Doc/c-api/typeobj.rst:1336 +#: ../Doc/c-api/typeobj.rst:1321 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 " @@ -1608,52 +1604,52 @@ msgid "" "*view* argument." msgstr "" -#: ../Doc/c-api/typeobj.rst:1342 +#: ../Doc/c-api/typeobj.rst:1327 msgid "" "This function MUST NOT decrement :c:data:`view->obj`, since that is done " "automatically in :c:func:`PyBuffer_Release` (this scheme is useful for " "breaking reference cycles)." msgstr "" -#: ../Doc/c-api/typeobj.rst:1347 +#: ../Doc/c-api/typeobj.rst:1332 msgid "" ":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this " "function." msgstr "" -#: ../Doc/c-api/typeobj.rst:1355 +#: ../Doc/c-api/typeobj.rst:1340 msgid "Async Object Structures" msgstr "" -#: ../Doc/c-api/typeobj.rst:1363 +#: ../Doc/c-api/typeobj.rst:1348 msgid "" "This structure holds pointers to the functions required to implement :term:" "`awaitable` and :term:`asynchronous iterator` objects." msgstr "" -#: ../Doc/c-api/typeobj.rst:1380 +#: ../Doc/c-api/typeobj.rst:1365 msgid "" "The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must " "return ``1`` for it." msgstr "" -#: ../Doc/c-api/typeobj.rst:1383 +#: ../Doc/c-api/typeobj.rst:1368 msgid "" "This slot may be set to *NULL* if an object is not an :term:`awaitable`." msgstr "" -#: ../Doc/c-api/typeobj.rst:1391 +#: ../Doc/c-api/typeobj.rst:1376 msgid "" "Must return an :term:`awaitable` object. See :meth:`__anext__` for details." msgstr "" -#: ../Doc/c-api/typeobj.rst:1393 +#: ../Doc/c-api/typeobj.rst:1378 msgid "" "This slot may be set to *NULL* if an object does not implement asynchronous " "iteration protocol." msgstr "" -#: ../Doc/c-api/typeobj.rst:1402 +#: ../Doc/c-api/typeobj.rst:1387 msgid "" "Must return an :term:`awaitable` object. See :meth:`__anext__` for details. " "This slot may be set to *NULL*." diff --git a/distributing/index.po b/distributing/index.po index 8af68548..39e0d45c 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Distributing Python Modules" msgstr "Distribuer des Modules Python" -#: ../Doc/distributing/index.rst:0 -msgid "Email" -msgstr "" - #: ../Doc/distributing/index.rst:7 msgid "distutils-sig@python.org" msgstr "distutils-sig@python.org" diff --git a/distutils/index.po b/distutils/index.po index 14c2f5b9..2434d3df 100644 --- a/distutils/index.po +++ b/distutils/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,18 +21,10 @@ msgstr "" msgid "Distributing Python Modules (Legacy version)" msgstr "" -#: ../Doc/distutils/index.rst:0 -msgid "Authors" -msgstr "" - #: ../Doc/distutils/index.rst:7 msgid "Greg Ward, Anthony Baxter" msgstr "" -#: ../Doc/distutils/index.rst:0 -msgid "Email" -msgstr "" - #: ../Doc/distutils/index.rst:8 msgid "distutils-sig@python.org" msgstr "distutils-sig@python.org" diff --git a/faq/windows.po b/faq/windows.po index 70233226..799c5f85 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -38,6 +38,10 @@ msgstr "" "le lancement de programmes depuis la ligne de commande de Windows alors tout " "semblera évident; Sinon, vous auriez besoin d'être un peu guidé." +#: ../Doc/faq/windows.rst:0 +msgid "|Python Development on XP|_" +msgstr "Développement |Python sur XP|_" + #: ../Doc/faq/windows.rst:27 msgid "" "This series of screencasts aims to get you up and running with Python on " @@ -125,6 +129,10 @@ msgid "" "``>>>``, gives you a message like::" msgstr "" +#: ../Doc/faq/windows.rst:0 +msgid "|Adding Python to DOS Path|_" +msgstr "" + #: ../Doc/faq/windows.rst:102 msgid "" "Python is not added to the DOS path by default. This screencast will walk " @@ -447,6 +455,3 @@ msgid "" "will be able to handle it. (If your copy of WinZip doesn't, get a newer one " "from https://www.winzip.com.)" msgstr "" - -#~ msgid "|Python Development on XP|_" -#~ msgstr "Développement |Python sur XP|_" diff --git a/howto/argparse.po b/howto/argparse.po index 0c2468f1..b1dfb76e 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 14:06+0200\n" "Last-Translator: Hugo Ludmann \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Argparse Tutorial" msgstr "Tutoriel Argparse" -#: ../Doc/howto/argparse.rst:0 -msgid "author" -msgstr "" - #: ../Doc/howto/argparse.rst:5 msgid "Tshepang Lekhonkhobe" msgstr "Tshepang Lekhonkhobe" diff --git a/howto/clinic.po b/howto/clinic.po index 6bf174a8..7b043183 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-11 19:00+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:58+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,14 +21,14 @@ msgstr "" msgid "Argument Clinic How-To" msgstr "" -#: ../Doc/howto/clinic.rst:0 -msgid "author" -msgstr "" - #: ../Doc/howto/clinic.rst:7 msgid "Larry Hastings" msgstr "" +#: ../Doc/howto/clinic.rst:0 +msgid "Abstract" +msgstr "Résumé" + #: ../Doc/howto/clinic.rst:12 msgid "" "Argument Clinic is a preprocessor for CPython C files. Its purpose is to " @@ -2432,6 +2432,3 @@ msgid "" "Since Python comments are different from C comments, Argument Clinic blocks " "embedded in Python files look slightly different. They look like this:" msgstr "" - -#~ msgid "Abstract" -#~ msgstr "Résumé" diff --git a/howto/cporting.po b/howto/cporting.po index d0ebcdb3..e434016f 100644 --- a/howto/cporting.po +++ b/howto/cporting.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,14 +21,14 @@ msgstr "" msgid "Porting Extension Modules to Python 3" msgstr "" -#: ../Doc/howto/cporting.rst:0 -msgid "author" -msgstr "" - #: ../Doc/howto/cporting.rst:9 msgid "Benjamin Peterson" msgstr "Benjamin Peterson" +#: ../Doc/howto/cporting.rst:0 +msgid "Abstract" +msgstr "Résumé" + #: ../Doc/howto/cporting.rst:14 msgid "" "Although changing the C-API was not one of Python 3's objectives, the many " @@ -190,6 +190,3 @@ msgid "" "`_. It translates a Python-like language to C. The " "extension modules it creates are compatible with Python 3 and Python 2." msgstr "" - -#~ msgid "Abstract" -#~ msgstr "Résumé" diff --git a/howto/curses.po b/howto/curses.po index 5bbb602a..31ff534a 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,22 +21,18 @@ msgstr "" msgid "Curses Programming with Python" msgstr "" -#: ../Doc/howto/curses.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/curses.rst:7 msgid "A.M. Kuchling, Eric S. Raymond" msgstr "" -#: ../Doc/howto/curses.rst:0 -msgid "Release" -msgstr "Version" - #: ../Doc/howto/curses.rst:8 msgid "2.04" msgstr "" +#: ../Doc/howto/curses.rst:0 +msgid "Abstract" +msgstr "Résumé" + #: ../Doc/howto/curses.rst:13 msgid "" "This document describes how to use the :mod:`curses` extension module to " @@ -735,5 +731,5 @@ msgid "" "demonstrating some applications written using Urwid." msgstr "" -#~ msgid "Abstract" -#~ msgstr "Résumé" +#~ msgid "Release" +#~ msgstr "Version" diff --git a/howto/descriptor.po b/howto/descriptor.po index 62940d6b..85bcab4f 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,22 +21,18 @@ msgstr "" msgid "Descriptor HowTo Guide" msgstr "" -#: ../Doc/howto/descriptor.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/descriptor.rst:5 msgid "Raymond Hettinger" msgstr "" -#: ../Doc/howto/descriptor.rst:0 -msgid "Contact" -msgstr "" - #: ../Doc/howto/descriptor.rst:6 msgid "" msgstr "" +#: ../Doc/howto/descriptor.rst:0 +msgid "Contents" +msgstr "" + #: ../Doc/howto/descriptor.rst:11 msgid "Abstract" msgstr "Résumé" diff --git a/howto/functional.po b/howto/functional.po index f4cac4d4..aa413018 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,18 +21,10 @@ msgstr "" msgid "Functional Programming HOWTO" msgstr "" -#: ../Doc/howto/functional.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/functional.rst:5 msgid "A. M. Kuchling" msgstr "" -#: ../Doc/howto/functional.rst:0 -msgid "Release" -msgstr "Version" - #: ../Doc/howto/functional.rst:6 msgid "0.32" msgstr "" @@ -1376,3 +1368,6 @@ msgid "" ":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new " "generator features in Python 2.5." msgstr "" + +#~ msgid "Release" +#~ msgstr "Version" diff --git a/howto/instrumentation.po b/howto/instrumentation.po index 78967dee..ec60da4b 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Instrumenting CPython with DTrace and SystemTap" msgstr "" -#: ../Doc/howto/instrumentation.rst:0 -msgid "author" -msgstr "" - #: ../Doc/howto/instrumentation.rst:9 msgid "David Malcolm" msgstr "" diff --git a/howto/ipaddress.po b/howto/ipaddress.po index 4077656a..9cbcc703 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "An introduction to the ipaddress module" msgstr "" -#: ../Doc/howto/ipaddress.rst:0 -msgid "author" -msgstr "" - #: ../Doc/howto/ipaddress.rst:11 msgid "Peter Moody" msgstr "" @@ -33,6 +29,10 @@ msgstr "" msgid "Nick Coghlan" msgstr "" +#: ../Doc/howto/ipaddress.rst:0 +msgid "Overview" +msgstr "" + #: ../Doc/howto/ipaddress.rst:16 msgid "" "This document aims to provide a gentle introduction to the :mod:`ipaddress` " diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 5b39beb8..fe7b1eb7 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Logging Cookbook" msgstr "" -#: ../Doc/howto/logging-cookbook.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/logging-cookbook.rst:7 msgid "Vinay Sajip " msgstr "" diff --git a/howto/logging.po b/howto/logging.po index 1c22cab6..41492f24 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Logging HOWTO" msgstr "" -#: ../Doc/howto/logging.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/logging.rst:5 msgid "Vinay Sajip " msgstr "" diff --git a/howto/pyporting.po b/howto/pyporting.po index 54cc5c41..e3ea9301 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,14 +21,14 @@ msgstr "" msgid "Porting Python 2 Code to Python 3" msgstr "" -#: ../Doc/howto/pyporting.rst:0 -msgid "author" -msgstr "" - #: ../Doc/howto/pyporting.rst:7 msgid "Brett Cannon" msgstr "" +#: ../Doc/howto/pyporting.rst:0 +msgid "Abstract" +msgstr "Résumé" + #: ../Doc/howto/pyporting.rst:11 msgid "" "With Python 3 being the future of Python while Python 2 is still in active " @@ -631,6 +631,3 @@ msgid "" "binary data, helping to make sure everything functions as expected in both " "versions of Python." msgstr "" - -#~ msgid "Abstract" -#~ msgstr "Résumé" diff --git a/howto/regex.po b/howto/regex.po index 0873290e..2980b02f 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:58+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,14 +21,14 @@ msgstr "" msgid "Regular Expression HOWTO" msgstr "" -#: ../Doc/howto/regex.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/regex.rst:7 msgid "A.M. Kuchling " msgstr "" +#: ../Doc/howto/regex.rst:0 +msgid "Abstract" +msgstr "Résumé" + #: ../Doc/howto/regex.rst:18 msgid "" "This document is an introductory tutorial to using regular expressions in " @@ -1826,6 +1826,3 @@ msgid "" "edition covered Python's now-removed :mod:`regex` module, which won't help " "you much.) Consider checking it out from your library." msgstr "" - -#~ msgid "Abstract" -#~ msgstr "Résumé" diff --git a/howto/sockets.po b/howto/sockets.po index e65eb968..b029a784 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,14 +21,14 @@ msgstr "" msgid "Socket Programming HOWTO" msgstr "" -#: ../Doc/howto/sockets.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/sockets.rst:7 msgid "Gordon McMillan" msgstr "" +#: ../Doc/howto/sockets.rst:0 +msgid "Abstract" +msgstr "Résumé" + #: ../Doc/howto/sockets.rst:12 msgid "" "Sockets are used nearly everywhere, but are one of the most severely " @@ -475,6 +475,3 @@ msgid "" "differently on Windows. In fact, on Windows I usually use threads (which " "work very, very well) with my sockets." msgstr "" - -#~ msgid "Abstract" -#~ msgstr "Résumé" diff --git a/howto/sorting.po b/howto/sorting.po index e40073a6..7e703552 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,18 +21,10 @@ msgstr "" msgid "Sorting HOW TO" msgstr "" -#: ../Doc/howto/sorting.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/sorting.rst:6 msgid "Andrew Dalke and Raymond Hettinger" msgstr "" -#: ../Doc/howto/sorting.rst:0 -msgid "Release" -msgstr "Version" - #: ../Doc/howto/sorting.rst:7 msgid "0.1" msgstr "" @@ -319,3 +311,6 @@ msgid "" "grades are stored in a dictionary, they can be used to sort a separate list " "of student names:" msgstr "" + +#~ msgid "Release" +#~ msgstr "Version" diff --git a/howto/unicode.po b/howto/unicode.po index ada7629c..13749894 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Unicode HOWTO" msgstr "" -#: ../Doc/howto/unicode.rst:0 -msgid "Release" -msgstr "Version" - #: ../Doc/howto/unicode.rst:7 msgid "1.12" msgstr "" @@ -910,3 +906,6 @@ msgid "" "Gedminas, Kent Johnson, Ken Krugler, Marc-André Lemburg, Martin von Löwis, " "Terry J. Reedy, Chad Whitacre." msgstr "" + +#~ msgid "Release" +#~ msgstr "Version" diff --git a/howto/urllib2.po b/howto/urllib2.po index fe80424e..9b701e78 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "HOWTO Fetch Internet Resources Using The urllib Package" msgstr "" -#: ../Doc/howto/urllib2.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/howto/urllib2.rst:7 msgid "`Michael Foord `_" msgstr "" @@ -40,6 +36,10 @@ msgstr "" msgid "Introduction" msgstr "Introduction" +#: ../Doc/howto/urllib2.rst:0 +msgid "Related Articles" +msgstr "" + #: ../Doc/howto/urllib2.rst:22 msgid "" "You may also find useful the following article on fetching web resources " diff --git a/install/index.po b/install/index.po index f74c07ae..7ffe6381 100644 --- a/install/index.po +++ b/install/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-05-27 10:29+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Installing Python Modules (Legacy version)" msgstr "installation des modules python (Version historique)" -#: ../Doc/install/index.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/install/index.rst:9 msgid "Greg Ward" msgstr "Greg Ward" diff --git a/installing/index.po b/installing/index.po index 7fb05f0b..3377077f 100644 --- a/installing/index.po +++ b/installing/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Installing Python Modules" msgstr "L'installation de modules Python" -#: ../Doc/installing/index.rst:0 -msgid "Email" -msgstr "" - #: ../Doc/installing/index.rst:9 msgid "distutils-sig@python.org" msgstr "distutils-sig@python.org" diff --git a/library/argparse.po b/library/argparse.po index 5d4d06fe..e583ce3c 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "**Source code:** :source:`Lib/argparse.py`" msgstr "**Code source:** :source:`Lib/argparse.py`" +#: ../Doc/library/argparse.rst:0 +msgid "Tutorial" +msgstr "Tutoriel" + #: ../Doc/library/argparse.rst:18 msgid "" "This page contains the API reference information. For a more gentle " @@ -1703,6 +1707,3 @@ msgid "" "``parser.add_argument('--version', action='version', version='')``." msgstr "" - -#~ msgid "Tutorial" -#~ msgstr "Tutoriel" diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index 5eb3d120..9621d758 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -369,55 +369,27 @@ msgstr "" msgid "The default mappings are:" msgstr "" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "subject" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:324 msgid "UniqueUnstructuredHeader" msgstr "UniqueUnstructuredHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "date" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:325 #: ../Doc/library/email.headerregistry.rst:327 msgid "UniqueDateHeader" msgstr "UniqueDateHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "resent-date" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:326 msgid "DateHeader" msgstr "DateHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "orig-date" -msgstr "" - -#: ../Doc/library/email.headerregistry.rst:0 -msgid "sender" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:328 msgid "UniqueSingleAddressHeader" msgstr "UniqueSingleAddressHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "resent-sender" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:329 msgid "SingleAddressHeader" msgstr "SingleAddressHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "to" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:330 #: ../Doc/library/email.headerregistry.rst:332 #: ../Doc/library/email.headerregistry.rst:334 @@ -425,36 +397,12 @@ msgstr "" msgid "UniqueAddressHeader" msgstr "UniqueAddressHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "resent-to" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:331 #: ../Doc/library/email.headerregistry.rst:333 #: ../Doc/library/email.headerregistry.rst:335 msgid "AddressHeader" msgstr "AddressHeader" -#: ../Doc/library/email.headerregistry.rst:0 -msgid "cc" -msgstr "" - -#: ../Doc/library/email.headerregistry.rst:0 -msgid "resent-cc" -msgstr "" - -#: ../Doc/library/email.headerregistry.rst:0 -msgid "from" -msgstr "" - -#: ../Doc/library/email.headerregistry.rst:0 -msgid "resent-from" -msgstr "" - -#: ../Doc/library/email.headerregistry.rst:0 -msgid "reply-to" -msgstr "" - #: ../Doc/library/email.headerregistry.rst:338 msgid "``HeaderRegistry`` has the following methods:" msgstr "" diff --git a/library/enum.po b/library/enum.po index d0ad34c0..037a4895 100644 --- a/library/enum.po +++ b/library/enum.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -435,18 +435,10 @@ msgstr "" msgid "The complete signature is::" msgstr "" -#: ../Doc/library/enum.rst:0 -msgid "value" -msgstr "valeur" - #: ../Doc/library/enum.rst:505 msgid "What the new Enum class will record as its name." msgstr "" -#: ../Doc/library/enum.rst:0 -msgid "names" -msgstr "" - #: ../Doc/library/enum.rst:507 msgid "" "The Enum members. This can be a whitespace or comma separated string " @@ -465,34 +457,18 @@ msgstr "" msgid "or a mapping::" msgstr "" -#: ../Doc/library/enum.rst:0 -msgid "module" -msgstr "module" - #: ../Doc/library/enum.rst:524 msgid "name of module where new Enum class can be found." msgstr "" -#: ../Doc/library/enum.rst:0 -msgid "qualname" -msgstr "" - #: ../Doc/library/enum.rst:526 msgid "where in module new Enum class can be found." msgstr "" -#: ../Doc/library/enum.rst:0 -msgid "type" -msgstr "type" - #: ../Doc/library/enum.rst:528 msgid "type to mix in to new Enum class." msgstr "" -#: ../Doc/library/enum.rst:0 -msgid "start" -msgstr "" - #: ../Doc/library/enum.rst:530 msgid "number to start counting at if only names are passed in." msgstr "" @@ -954,3 +930,12 @@ msgid "" "If a combination of Flag members is not named, the :func:`repr` will include " "all named flags and all named combinations of flags that are in the value::" msgstr "" + +#~ msgid "value" +#~ msgstr "valeur" + +#~ msgid "module" +#~ msgstr "module" + +#~ msgid "type" +#~ msgstr "type" diff --git a/library/hashlib.po b/library/hashlib.po index 49b3ad30..20a92f73 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 01:00+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -582,24 +582,24 @@ msgid "" "sent to users and later verify them to make sure they weren't tampered with::" msgstr "" -#: ../Doc/library/hashlib.rst:523 +#: ../Doc/library/hashlib.rst:524 msgid "" "Even though there's a native keyed hashing mode, BLAKE2 can, of course, be " "used in HMAC construction with :mod:`hmac` module::" msgstr "" -#: ../Doc/library/hashlib.rst:534 +#: ../Doc/library/hashlib.rst:535 msgid "Randomized hashing" msgstr "" -#: ../Doc/library/hashlib.rst:536 +#: ../Doc/library/hashlib.rst:537 msgid "" "By setting *salt* parameter users can introduce randomization to the hash " "function. Randomized hashing is useful for protecting against collision " "attacks on the hash function used in digital signatures." msgstr "" -#: ../Doc/library/hashlib.rst:540 +#: ../Doc/library/hashlib.rst:541 msgid "" "Randomized hashing is designed for situations where one party, the message " "preparer, generates all or part of a message to be signed by a second party, " @@ -620,37 +620,37 @@ msgid "" "message are prepared by the signer." msgstr "" -#: ../Doc/library/hashlib.rst:559 +#: ../Doc/library/hashlib.rst:560 msgid "" "(`NIST SP-800-106 \"Randomized Hashing for Digital Signatures\" `_)" msgstr "" -#: ../Doc/library/hashlib.rst:562 +#: ../Doc/library/hashlib.rst:563 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 "" -#: ../Doc/library/hashlib.rst:567 +#: ../Doc/library/hashlib.rst:568 msgid "" "*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose " "cryptographic hash function, such as SHA-256, is not suitable for hashing " "passwords. See `BLAKE2 FAQ `_ for more information." msgstr "" -#: ../Doc/library/hashlib.rst:590 +#: ../Doc/library/hashlib.rst:591 msgid "Personalization" msgstr "" -#: ../Doc/library/hashlib.rst:592 +#: ../Doc/library/hashlib.rst:593 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 "" -#: ../Doc/library/hashlib.rst:596 +#: ../Doc/library/hashlib.rst:597 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 " @@ -660,41 +660,41 @@ msgid "" "hash function used in the protocol summarily stops this type of attack." msgstr "" -#: ../Doc/library/hashlib.rst:603 +#: ../Doc/library/hashlib.rst:604 msgid "" "(`The Skein Hash Function Family `_, p. 21)" msgstr "" -#: ../Doc/library/hashlib.rst:607 +#: ../Doc/library/hashlib.rst:608 msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::" msgstr "" -#: ../Doc/library/hashlib.rst:621 +#: ../Doc/library/hashlib.rst:622 msgid "" "Personalization together with the keyed mode can also be used to derive " "different keys from a single one." msgstr "" -#: ../Doc/library/hashlib.rst:635 +#: ../Doc/library/hashlib.rst:636 msgid "Tree mode" msgstr "" -#: ../Doc/library/hashlib.rst:637 +#: ../Doc/library/hashlib.rst:638 msgid "Here's an example of hashing a minimal tree with two leaf nodes::" msgstr "" -#: ../Doc/library/hashlib.rst:643 +#: ../Doc/library/hashlib.rst:644 msgid "" "This example uses 64-byte internal digests, and returns the 32-byte final " "digest::" msgstr "" -#: ../Doc/library/hashlib.rst:673 +#: ../Doc/library/hashlib.rst:674 msgid "Credits" msgstr "" -#: ../Doc/library/hashlib.rst:675 +#: ../Doc/library/hashlib.rst:676 msgid "" "BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko " "Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ " @@ -702,102 +702,102 @@ msgid "" "*Raphael C.-W. Phan*." msgstr "" -#: ../Doc/library/hashlib.rst:680 +#: ../Doc/library/hashlib.rst:681 msgid "" "It uses core algorithm from ChaCha_ cipher designed by *Daniel J. " "Bernstein*." msgstr "" -#: ../Doc/library/hashlib.rst:682 +#: ../Doc/library/hashlib.rst:683 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 "" -#: ../Doc/library/hashlib.rst:686 +#: ../Doc/library/hashlib.rst:687 msgid "The C code was partly rewritten for Python by *Christian Heimes*." msgstr "" -#: ../Doc/library/hashlib.rst:688 +#: ../Doc/library/hashlib.rst:689 msgid "" "The following public domain dedication applies for both C hash function " "implementation, extension code, and this documentation:" msgstr "" -#: ../Doc/library/hashlib.rst:691 +#: ../Doc/library/hashlib.rst:692 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 "" -#: ../Doc/library/hashlib.rst:695 +#: ../Doc/library/hashlib.rst:696 msgid "" "You should have received a copy of the CC0 Public Domain Dedication along " "with this software. If not, see http://creativecommons.org/publicdomain/" "zero/1.0/." msgstr "" -#: ../Doc/library/hashlib.rst:699 +#: ../Doc/library/hashlib.rst:700 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 "" -#: ../Doc/library/hashlib.rst:703 +#: ../Doc/library/hashlib.rst:704 msgid "*Alexandr Sokolovskiy*" msgstr "" -#: ../Doc/library/hashlib.rst:718 +#: ../Doc/library/hashlib.rst:719 msgid "Module :mod:`hmac`" msgstr "" -#: ../Doc/library/hashlib.rst:718 +#: ../Doc/library/hashlib.rst:719 msgid "A module to generate message authentication codes using hashes." msgstr "" -#: ../Doc/library/hashlib.rst:721 +#: ../Doc/library/hashlib.rst:722 msgid "Module :mod:`base64`" msgstr "Module :mod:`base64`" -#: ../Doc/library/hashlib.rst:721 +#: ../Doc/library/hashlib.rst:722 msgid "Another way to encode binary hashes for non-binary environments." msgstr "" -#: ../Doc/library/hashlib.rst:724 +#: ../Doc/library/hashlib.rst:725 msgid "https://blake2.net" msgstr "" -#: ../Doc/library/hashlib.rst:724 +#: ../Doc/library/hashlib.rst:725 msgid "Official BLAKE2 website." msgstr "" -#: ../Doc/library/hashlib.rst:727 +#: ../Doc/library/hashlib.rst:728 msgid "http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf" msgstr "" -#: ../Doc/library/hashlib.rst:727 +#: ../Doc/library/hashlib.rst:728 msgid "The FIPS 180-2 publication on Secure Hash Algorithms." msgstr "" -#: ../Doc/library/hashlib.rst:731 +#: ../Doc/library/hashlib.rst:732 msgid "" "https://en.wikipedia.org/wiki/" "Cryptographic_hash_function#Cryptographic_hash_algorithms" msgstr "" -#: ../Doc/library/hashlib.rst:730 +#: ../Doc/library/hashlib.rst:731 msgid "" "Wikipedia article with information on which algorithms have known issues and " "what that means regarding their use." msgstr "" -#: ../Doc/library/hashlib.rst:733 +#: ../Doc/library/hashlib.rst:734 msgid "https://www.ietf.org/rfc/rfc2898.txt" msgstr "" -#: ../Doc/library/hashlib.rst:734 +#: ../Doc/library/hashlib.rst:735 msgid "PKCS #5: Password-Based Cryptography Specification Version 2.0" msgstr "" diff --git a/library/idle.po b/library/idle.po index a8a5668b..01e8d2da 100644 --- a/library/idle.po +++ b/library/idle.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -222,28 +222,28 @@ msgstr "" msgid "Redo the last undone change to the current window." msgstr "" -#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:323 +#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:325 msgid "Cut" msgstr "" -#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:323 +#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:325 msgid "" "Copy selection into the system-wide clipboard; then delete the selection." msgstr "" -#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:326 +#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:328 msgid "Copy" msgstr "" -#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:326 +#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:328 msgid "Copy selection into the system-wide clipboard." msgstr "" -#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:329 +#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:331 msgid "Paste" msgstr "" -#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:329 +#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:331 msgid "Insert contents of the system-wide clipboard into the current window." msgstr "" @@ -428,32 +428,34 @@ msgid "" "will be formatted to less than N columns, where N defaults to 72." msgstr "" -#: ../Doc/library/idle.rst:193 +#: ../Doc/library/idle.rst:195 msgid "Strip trailing whitespace" msgstr "" #: ../Doc/library/idle.rst:193 msgid "" -"Remove any space characters after the last non-space character of a line." +"Remove trailing space and other whitespace characters after the last non-" +"whitespace character of a line by applying str.rstrip to each line, " +"including lines within multiline strings." msgstr "" -#: ../Doc/library/idle.rst:199 +#: ../Doc/library/idle.rst:201 msgid "Run menu (Editor window only)" msgstr "" -#: ../Doc/library/idle.rst:202 +#: ../Doc/library/idle.rst:204 msgid "Python Shell" msgstr "" -#: ../Doc/library/idle.rst:202 +#: ../Doc/library/idle.rst:204 msgid "Open or wake up the Python Shell window." msgstr "" -#: ../Doc/library/idle.rst:209 +#: ../Doc/library/idle.rst:211 msgid "Check Module" msgstr "" -#: ../Doc/library/idle.rst:205 +#: ../Doc/library/idle.rst:207 msgid "" "Check the syntax of the module currently open in the Editor window. If the " "module has not been saved IDLE will either prompt the user to save or " @@ -462,11 +464,11 @@ msgid "" "window." msgstr "" -#: ../Doc/library/idle.rst:218 +#: ../Doc/library/idle.rst:220 msgid "Run Module" msgstr "" -#: ../Doc/library/idle.rst:212 +#: ../Doc/library/idle.rst:214 msgid "" "Do Check Module (above). If no error, restart the shell to clean the " "environment, then execute the module. Output is displayed in the Shell " @@ -476,43 +478,43 @@ msgid "" "similar to executing a file with ``python -i file`` at a command line." msgstr "" -#: ../Doc/library/idle.rst:221 +#: ../Doc/library/idle.rst:223 msgid "Shell menu (Shell window only)" msgstr "" -#: ../Doc/library/idle.rst:224 +#: ../Doc/library/idle.rst:226 msgid "View Last Restart" msgstr "" -#: ../Doc/library/idle.rst:224 +#: ../Doc/library/idle.rst:226 msgid "Scroll the shell window to the last Shell restart." msgstr "" -#: ../Doc/library/idle.rst:227 +#: ../Doc/library/idle.rst:229 msgid "Restart Shell" msgstr "" -#: ../Doc/library/idle.rst:227 +#: ../Doc/library/idle.rst:229 msgid "Restart the shell to clean the environment." msgstr "" -#: ../Doc/library/idle.rst:230 +#: ../Doc/library/idle.rst:232 msgid "Interrupt Execution" msgstr "" -#: ../Doc/library/idle.rst:230 +#: ../Doc/library/idle.rst:232 msgid "Stop a running program." msgstr "" -#: ../Doc/library/idle.rst:233 +#: ../Doc/library/idle.rst:235 msgid "Debug menu (Shell window only)" msgstr "" -#: ../Doc/library/idle.rst:240 +#: ../Doc/library/idle.rst:242 msgid "Go to File/Line" msgstr "" -#: ../Doc/library/idle.rst:236 +#: ../Doc/library/idle.rst:238 msgid "" "Look on the current line. with the cursor, and the line above for a filename " "and line number. If found, open the file if not already open, and show the " @@ -521,45 +523,45 @@ msgid "" "Shell window and Output windows." msgstr "" -#: ../Doc/library/idle.rst:249 +#: ../Doc/library/idle.rst:251 msgid "Debugger (toggle)" msgstr "" -#: ../Doc/library/idle.rst:247 +#: ../Doc/library/idle.rst:249 msgid "" "When activated, code entered in the Shell or run from an Editor will run " "under the debugger. In the Editor, breakpoints can be set with the context " "menu. This feature is still incomplete and somewhat experimental." msgstr "" -#: ../Doc/library/idle.rst:253 +#: ../Doc/library/idle.rst:255 msgid "Stack Viewer" msgstr "" -#: ../Doc/library/idle.rst:252 +#: ../Doc/library/idle.rst:254 msgid "" "Show the stack traceback of the last exception in a tree widget, with access " "to locals and globals." msgstr "" -#: ../Doc/library/idle.rst:256 +#: ../Doc/library/idle.rst:258 msgid "Auto-open Stack Viewer" msgstr "" -#: ../Doc/library/idle.rst:256 +#: ../Doc/library/idle.rst:258 msgid "" "Toggle automatically opening the stack viewer on an unhandled exception." msgstr "" -#: ../Doc/library/idle.rst:259 +#: ../Doc/library/idle.rst:261 msgid "Options menu (Shell and Editor)" msgstr "" -#: ../Doc/library/idle.rst:271 +#: ../Doc/library/idle.rst:273 msgid "Configure IDLE" msgstr "" -#: ../Doc/library/idle.rst:262 +#: ../Doc/library/idle.rst:264 msgid "" "Open a configuration dialog and change preferences for the following: fonts, " "indentation, keybindings, text color themes, startup windows and size, " @@ -569,101 +571,101 @@ msgid "" "new custom theme." msgstr "" -#: ../Doc/library/idle.rst:269 +#: ../Doc/library/idle.rst:271 msgid "" "Non-default user settings are saved in a .idlerc directory in the user's " "home directory. Problems caused by bad user configuration files are solved " "by editing or deleting one or more of the files in .idlerc." msgstr "" -#: ../Doc/library/idle.rst:275 +#: ../Doc/library/idle.rst:277 msgid "Code Context (toggle)(Editor Window only)" msgstr "" -#: ../Doc/library/idle.rst:274 +#: ../Doc/library/idle.rst:276 msgid "" "Open a pane at the top of the edit window which shows the block context of " "the code which has scrolled above the top of the window." msgstr "" -#: ../Doc/library/idle.rst:278 +#: ../Doc/library/idle.rst:280 msgid "Window menu (Shell and Editor)" msgstr "" -#: ../Doc/library/idle.rst:283 +#: ../Doc/library/idle.rst:285 msgid "Zoom Height" msgstr "" -#: ../Doc/library/idle.rst:281 +#: ../Doc/library/idle.rst:283 msgid "" "Toggles the window between normal size and maximum height. The initial size " "defaults to 40 lines by 80 chars unless changed on the General tab of the " "Configure IDLE dialog." msgstr "" -#: ../Doc/library/idle.rst:285 +#: ../Doc/library/idle.rst:287 msgid "" "The rest of this menu lists the names of all open windows; select one to " "bring it to the foreground (deiconifying it if necessary)." msgstr "" -#: ../Doc/library/idle.rst:289 +#: ../Doc/library/idle.rst:291 msgid "Help menu (Shell and Editor)" msgstr "" -#: ../Doc/library/idle.rst:292 +#: ../Doc/library/idle.rst:294 msgid "About IDLE" msgstr "" -#: ../Doc/library/idle.rst:292 +#: ../Doc/library/idle.rst:294 msgid "Display version, copyright, license, credits, and more." msgstr "" -#: ../Doc/library/idle.rst:296 +#: ../Doc/library/idle.rst:298 msgid "IDLE Help" msgstr "" -#: ../Doc/library/idle.rst:295 +#: ../Doc/library/idle.rst:297 msgid "" "Display a help file for IDLE detailing the menu options, basic editing and " "navigation, and other tips." msgstr "" -#: ../Doc/library/idle.rst:300 +#: ../Doc/library/idle.rst:302 msgid "Python Docs" msgstr "" -#: ../Doc/library/idle.rst:299 +#: ../Doc/library/idle.rst:301 msgid "" "Access local Python documentation, if installed, or start a web browser and " "open docs.python.org showing the latest Python documentation." msgstr "" -#: ../Doc/library/idle.rst:303 +#: ../Doc/library/idle.rst:305 msgid "Turtle Demo" msgstr "" -#: ../Doc/library/idle.rst:303 +#: ../Doc/library/idle.rst:305 msgid "Run the turtledemo module with example python code and turtle drawings." msgstr "" -#: ../Doc/library/idle.rst:305 +#: ../Doc/library/idle.rst:307 msgid "" "Additional help sources may be added here with the Configure IDLE dialog " "under the General tab." msgstr "" -#: ../Doc/library/idle.rst:317 +#: ../Doc/library/idle.rst:319 msgid "Context Menus" msgstr "" -#: ../Doc/library/idle.rst:319 +#: ../Doc/library/idle.rst:321 msgid "" "Open a context menu by right-clicking in a window (Control-click on OS X). " "Context menus have the standard clipboard functions also on the Edit menu." msgstr "" -#: ../Doc/library/idle.rst:331 +#: ../Doc/library/idle.rst:333 msgid "" "Editor windows also have breakpoint functions. Lines with a breakpoint set " "are specially marked. Breakpoints only have an effect when running under " @@ -671,121 +673,121 @@ msgid "" "directory." msgstr "" -#: ../Doc/library/idle.rst:336 +#: ../Doc/library/idle.rst:338 msgid "Set Breakpoint" msgstr "" -#: ../Doc/library/idle.rst:336 +#: ../Doc/library/idle.rst:338 msgid "Set a breakpoint on the current line." msgstr "" -#: ../Doc/library/idle.rst:339 +#: ../Doc/library/idle.rst:341 msgid "Clear Breakpoint" msgstr "" -#: ../Doc/library/idle.rst:339 +#: ../Doc/library/idle.rst:341 msgid "Clear the breakpoint on that line." msgstr "" -#: ../Doc/library/idle.rst:341 +#: ../Doc/library/idle.rst:343 msgid "Shell and Output windows have the following." msgstr "" -#: ../Doc/library/idle.rst:345 +#: ../Doc/library/idle.rst:347 msgid "Go to file/line" msgstr "" -#: ../Doc/library/idle.rst:344 +#: ../Doc/library/idle.rst:346 msgid "Same as in Debug menu." msgstr "" -#: ../Doc/library/idle.rst:348 +#: ../Doc/library/idle.rst:350 msgid "Editing and navigation" msgstr "" -#: ../Doc/library/idle.rst:350 +#: ../Doc/library/idle.rst:352 msgid "" "In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix " "and the :kbd:`Command` key on Mac OSX." msgstr "" -#: ../Doc/library/idle.rst:353 +#: ../Doc/library/idle.rst:355 msgid ":kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right" msgstr "" -#: ../Doc/library/idle.rst:355 +#: ../Doc/library/idle.rst:357 msgid "" ":kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right" msgstr "" -#: ../Doc/library/idle.rst:357 +#: ../Doc/library/idle.rst:359 msgid "Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around" msgstr "" -#: ../Doc/library/idle.rst:359 +#: ../Doc/library/idle.rst:361 msgid ":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words" msgstr "" -#: ../Doc/library/idle.rst:361 +#: ../Doc/library/idle.rst:363 msgid ":kbd:`Home`/:kbd:`End` go to begin/end of line" msgstr "" -#: ../Doc/library/idle.rst:363 +#: ../Doc/library/idle.rst:365 msgid ":kbd:`C-Home`/:kbd:`C-End` go to begin/end of file" msgstr "" -#: ../Doc/library/idle.rst:365 +#: ../Doc/library/idle.rst:367 msgid "Some useful Emacs bindings are inherited from Tcl/Tk:" msgstr "" -#: ../Doc/library/idle.rst:367 +#: ../Doc/library/idle.rst:369 msgid ":kbd:`C-a` beginning of line" msgstr "" -#: ../Doc/library/idle.rst:369 +#: ../Doc/library/idle.rst:371 msgid ":kbd:`C-e` end of line" msgstr "" -#: ../Doc/library/idle.rst:371 +#: ../Doc/library/idle.rst:373 msgid ":kbd:`C-k` kill line (but doesn't put it in clipboard)" msgstr "" -#: ../Doc/library/idle.rst:373 +#: ../Doc/library/idle.rst:375 msgid ":kbd:`C-l` center window around the insertion point" msgstr "" -#: ../Doc/library/idle.rst:375 +#: ../Doc/library/idle.rst:377 msgid "" ":kbd:`C-b` go backward one character without deleting (usually you can also " "use the cursor key for this)" msgstr "" -#: ../Doc/library/idle.rst:378 +#: ../Doc/library/idle.rst:380 msgid "" ":kbd:`C-f` go forward one character without deleting (usually you can also " "use the cursor key for this)" msgstr "" -#: ../Doc/library/idle.rst:381 +#: ../Doc/library/idle.rst:383 msgid "" ":kbd:`C-p` go up one line (usually you can also use the cursor key for this)" msgstr "" -#: ../Doc/library/idle.rst:384 +#: ../Doc/library/idle.rst:386 msgid ":kbd:`C-d` delete next character" msgstr "" -#: ../Doc/library/idle.rst:386 +#: ../Doc/library/idle.rst:388 msgid "" "Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may " "work. Keybindings are selected in the Configure IDLE dialog." msgstr "" -#: ../Doc/library/idle.rst:391 +#: ../Doc/library/idle.rst:393 msgid "Automatic indentation" msgstr "" -#: ../Doc/library/idle.rst:393 +#: ../Doc/library/idle.rst:395 msgid "" "After a block-opening statement, the next line is indented by 4 spaces (in " "the Python Shell window by one tab). After certain keywords (break, return " @@ -795,21 +797,21 @@ msgid "" "tabs are restricted to four spaces due to Tcl/Tk limitations." msgstr "" -#: ../Doc/library/idle.rst:400 +#: ../Doc/library/idle.rst:402 msgid "See also the indent/dedent region commands in the edit menu." msgstr "" -#: ../Doc/library/idle.rst:403 +#: ../Doc/library/idle.rst:405 msgid "Completions" msgstr "" -#: ../Doc/library/idle.rst:405 +#: ../Doc/library/idle.rst:407 msgid "" "Completions are supplied for functions, classes, and attributes of classes, " "both built-in and user-defined. Completions are also provided for filenames." msgstr "" -#: ../Doc/library/idle.rst:409 +#: ../Doc/library/idle.rst:411 msgid "" "The AutoCompleteWindow (ACW) will open after a predefined delay (default is " "two seconds) after a '.' or (in a string) an os.sep is typed. If after one " @@ -817,13 +819,13 @@ msgid "" "ACW will open immediately if a possible continuation is found." msgstr "" -#: ../Doc/library/idle.rst:414 +#: ../Doc/library/idle.rst:416 msgid "" "If there is only one possible completion for the characters entered, a :kbd:" "`Tab` will supply that completion without opening the ACW." msgstr "" -#: ../Doc/library/idle.rst:417 +#: ../Doc/library/idle.rst:419 msgid "" "'Show Completions' will force open a completions window, by default the :kbd:" "`C-space` will open a completions window. In an empty string, this will " @@ -833,7 +835,7 @@ msgid "" "the ACW will attempt to be more specific." msgstr "" -#: ../Doc/library/idle.rst:424 +#: ../Doc/library/idle.rst:426 msgid "" "If a string of characters is typed, the ACW selection will jump to the entry " "most closely matching those characters. Entering a :kbd:`tab` will cause " @@ -843,18 +845,18 @@ msgid "" "and the scroll wheel all operate on the ACW." msgstr "" -#: ../Doc/library/idle.rst:431 +#: ../Doc/library/idle.rst:433 msgid "" "\"Hidden\" attributes can be accessed by typing the beginning of hidden name " "after a '.', e.g. '_'. This allows access to modules with ``__all__`` set, " "or to class-private attributes." msgstr "" -#: ../Doc/library/idle.rst:435 +#: ../Doc/library/idle.rst:437 msgid "Completions and the 'Expand Word' facility can save a lot of typing!" msgstr "" -#: ../Doc/library/idle.rst:437 +#: ../Doc/library/idle.rst:439 msgid "" "Completions are currently limited to those in the namespaces. Names in an " "Editor window which are not via ``__main__`` and :data:`sys.modules` will " @@ -863,17 +865,17 @@ msgid "" "so much can be found by default, e.g. the re module." msgstr "" -#: ../Doc/library/idle.rst:443 +#: ../Doc/library/idle.rst:445 msgid "" "If you don't like the ACW popping up unbidden, simply make the delay longer " "or disable the extension." msgstr "" -#: ../Doc/library/idle.rst:447 +#: ../Doc/library/idle.rst:449 msgid "Calltips" msgstr "" -#: ../Doc/library/idle.rst:449 +#: ../Doc/library/idle.rst:451 msgid "" "A calltip is shown when one types :kbd:`(` after the name of an *accessible* " "function. A name expression may include dots and subscripts. A calltip " @@ -882,7 +884,7 @@ msgid "" "definition, the menu or shortcut display a calltip." msgstr "" -#: ../Doc/library/idle.rst:455 +#: ../Doc/library/idle.rst:457 msgid "" "A calltip consists of the function signature and the first line of the " "docstring. For builtins without an accessible signature, the calltip " @@ -890,14 +892,14 @@ msgid "" "details may change." msgstr "" -#: ../Doc/library/idle.rst:460 +#: ../Doc/library/idle.rst:462 msgid "" "The set of *accessible* functions depends on what modules have been imported " "into the user process, including those imported by Idle itself, and what " "definitions have been run, all since the last restart." msgstr "" -#: ../Doc/library/idle.rst:464 +#: ../Doc/library/idle.rst:466 msgid "" "For example, restart the Shell and enter ``itertools.count(``. A calltip " "appears because Idle imports itertools into the user process for its own " @@ -906,53 +908,53 @@ msgid "" "``import turtle`` and then ``turtle.write(`` will work." msgstr "" -#: ../Doc/library/idle.rst:470 +#: ../Doc/library/idle.rst:472 msgid "" "In an editor, import statements have no effect until one runs the file. One " "might want to run a file after writing the import statements at the top, or " "immediately run an existing file before editing." msgstr "" -#: ../Doc/library/idle.rst:475 +#: ../Doc/library/idle.rst:477 msgid "Python Shell window" msgstr "" -#: ../Doc/library/idle.rst:477 +#: ../Doc/library/idle.rst:479 msgid ":kbd:`C-c` interrupts executing command" msgstr "" -#: ../Doc/library/idle.rst:479 +#: ../Doc/library/idle.rst:481 msgid "" ":kbd:`C-d` sends end-of-file; closes window if typed at a ``>>>`` prompt" msgstr "" -#: ../Doc/library/idle.rst:481 +#: ../Doc/library/idle.rst:483 msgid ":kbd:`Alt-/` (Expand word) is also useful to reduce typing" msgstr "" -#: ../Doc/library/idle.rst:483 +#: ../Doc/library/idle.rst:485 msgid "Command history" msgstr "" -#: ../Doc/library/idle.rst:485 +#: ../Doc/library/idle.rst:487 msgid "" ":kbd:`Alt-p` retrieves previous command matching what you have typed. On OS " "X use :kbd:`C-p`." msgstr "" -#: ../Doc/library/idle.rst:488 +#: ../Doc/library/idle.rst:490 msgid ":kbd:`Alt-n` retrieves next. On OS X use :kbd:`C-n`." msgstr "" -#: ../Doc/library/idle.rst:490 +#: ../Doc/library/idle.rst:492 msgid ":kbd:`Return` while on any previous command retrieves that command" msgstr "" -#: ../Doc/library/idle.rst:494 +#: ../Doc/library/idle.rst:496 msgid "Text colors" msgstr "" -#: ../Doc/library/idle.rst:496 +#: ../Doc/library/idle.rst:498 msgid "" "Idle defaults to black on white text, but colors text with special meanings. " "For the shell, these are shell output, shell error, user output, and user " @@ -962,7 +964,7 @@ msgid "" "(when present), found text (when possible), and selected text." msgstr "" -#: ../Doc/library/idle.rst:503 +#: ../Doc/library/idle.rst:505 msgid "" "Text coloring is done in the background, so uncolorized text is occasionally " "visible. To change the color scheme, use the Configure IDLE dialog " @@ -970,11 +972,11 @@ msgid "" "and text in popups and dialogs is not user-configurable." msgstr "" -#: ../Doc/library/idle.rst:510 +#: ../Doc/library/idle.rst:512 msgid "Startup and code execution" msgstr "" -#: ../Doc/library/idle.rst:512 +#: ../Doc/library/idle.rst:514 msgid "" "Upon startup with the ``-s`` option, IDLE will execute the file referenced " "by the environment variables :envvar:`IDLESTARTUP` or :envvar:" @@ -986,7 +988,7 @@ msgid "" "modules." msgstr "" -#: ../Doc/library/idle.rst:520 +#: ../Doc/library/idle.rst:522 msgid "" "In addition, ``Tk`` also loads a startup file if it is present. Note that " "the Tk file is loaded unconditionally. This additional file is ``.Idle.py`` " @@ -995,15 +997,15 @@ msgid "" "importing functions to be used from IDLE's Python shell." msgstr "" -#: ../Doc/library/idle.rst:528 +#: ../Doc/library/idle.rst:530 msgid "Command line usage" msgstr "" -#: ../Doc/library/idle.rst:544 +#: ../Doc/library/idle.rst:546 msgid "If there are arguments:" msgstr "" -#: ../Doc/library/idle.rst:546 +#: ../Doc/library/idle.rst:548 msgid "" "If ``-``, ``-c``, or ``r`` is used, all arguments are placed in ``sys." "argv[1:...]`` and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-r'``. " @@ -1011,17 +1013,17 @@ msgid "" "dialog." msgstr "" -#: ../Doc/library/idle.rst:551 +#: ../Doc/library/idle.rst:553 msgid "" "Otherwise, arguments are files opened for editing and ``sys.argv`` reflects " "the arguments passed to IDLE itself." msgstr "" -#: ../Doc/library/idle.rst:556 +#: ../Doc/library/idle.rst:558 msgid "Startup failure" msgstr "" -#: ../Doc/library/idle.rst:558 +#: ../Doc/library/idle.rst:560 msgid "" "IDLE uses a socket to communicate between the IDLE GUI process and the user " "code execution process. A connection must be established whenever the Shell " @@ -1031,7 +1033,7 @@ msgid "" "user here. It then exits." msgstr "" -#: ../Doc/library/idle.rst:565 +#: ../Doc/library/idle.rst:567 msgid "" "A common cause of failure is a user-written file with the same name as a " "standard library module, such as *random.py* and *tkinter.py*. When such a " @@ -1040,7 +1042,7 @@ msgid "" "file." msgstr "" -#: ../Doc/library/idle.rst:571 +#: ../Doc/library/idle.rst:573 msgid "" "Though less common than in the past, an antivirus or firewall program may " "stop the connection. If the program cannot be taught to allow the " @@ -1050,7 +1052,7 @@ msgid "" "connections." msgstr "" -#: ../Doc/library/idle.rst:578 +#: ../Doc/library/idle.rst:580 msgid "" "Python installation issues occasionally stop IDLE: multiple versions can " "clash, or a single installation might need admin access. If one undo the " @@ -1058,7 +1060,7 @@ msgid "" "completely remove Python and start over." msgstr "" -#: ../Doc/library/idle.rst:583 +#: ../Doc/library/idle.rst:585 msgid "" "A zombie pythonw.exe process could be a problem. On Windows, use Task " "Manager to detect and stop one. Sometimes a restart initiated by a program " @@ -1066,7 +1068,7 @@ msgid "" "error box or Restart Shell on the Shell menu may fix a temporary problem." msgstr "" -#: ../Doc/library/idle.rst:588 +#: ../Doc/library/idle.rst:590 msgid "" "When IDLE first starts, it attempts to read user configuration files in ~/." "idlerc/ (~ is one's home directory). If there is a problem, an error " @@ -1076,36 +1078,36 @@ msgid "" "be to delete one or more of the configuration files." msgstr "" -#: ../Doc/library/idle.rst:595 +#: ../Doc/library/idle.rst:597 msgid "" "If IDLE quits with no message, and it was not started from a console, try " "starting from a console (``python -m idlelib)`` and see if a message appears." msgstr "" -#: ../Doc/library/idle.rst:600 +#: ../Doc/library/idle.rst:602 msgid "IDLE-console differences" msgstr "" -#: ../Doc/library/idle.rst:602 +#: ../Doc/library/idle.rst:604 msgid "" -"As much as possible, the result of executing Python code with IDLE is the " -"same as executing the same code in a console window. However, the different " -"interface and operation occasionally affect visible results. For instance, " -"``sys.modules`` starts with more entries." +"With rare exceptions, the result of executing Python code with IDLE is " +"intended to be the same as executing the same code in a console window. " +"However, the different interface and operation occasionally affect visible " +"results. For instance, ``sys.modules`` starts with more entries." msgstr "" -#: ../Doc/library/idle.rst:607 +#: ../Doc/library/idle.rst:609 msgid "" "IDLE also replaces ``sys.stdin``, ``sys.stdout``, and ``sys.stderr`` with " -"objects that get input from and send output to the Shell window. When this " -"window has the focus, it controls the keyboard and screen. This is normally " +"objects that get input from and send output to the Shell window. When Shell " +"has the focus, it controls the keyboard and screen. This is normally " "transparent, but functions that directly access the keyboard and screen will " "not work. If ``sys`` is reset with ``importlib.reload(sys)``, IDLE's " "changes are lost and things like ``input``, ``raw_input``, and ``print`` " "will not work correctly." msgstr "" -#: ../Doc/library/idle.rst:615 +#: ../Doc/library/idle.rst:617 msgid "" "With IDLE's Shell, one enters, edits, and recalls complete statements. Some " "consoles only work with a single physical line at a time. IDLE uses " @@ -1113,11 +1115,43 @@ msgid "" "defined for each statement." msgstr "" -#: ../Doc/library/idle.rst:621 +#: ../Doc/library/idle.rst:623 +msgid "Developing tkinter applications" +msgstr "" + +#: ../Doc/library/idle.rst:625 +msgid "" +"IDLE is intentionally different from standard Python in order to facilitate " +"development of tkinter programs. Enter ``import tkinter as tk; root = tk." +"Tk()`` in standard Python and nothing appears. Enter the same in IDLE and a " +"tk window appears. In standard Python, one must also enter ``root." +"update()`` to see the window. IDLE does the equivalent in the background, " +"about 20 times a second, which is about every 50 milleseconds. Next enter " +"``b = tk.Button(root, text='button'); b.pack()``. Again, nothing visibly " +"changes in standard Python until one enters ``root.update()``." +msgstr "" + +#: ../Doc/library/idle.rst:634 +msgid "" +"Most tkinter programs run ``root.mainloop()``, which usually does not return " +"until the tk app is destroyed. If the program is run with ``python -i`` or " +"from an IDLE editor, a ``>>>`` shell prompt does not appear until " +"``mainloop()`` returns, at which time there is nothing left to interact with." +msgstr "" + +#: ../Doc/library/idle.rst:640 +msgid "" +"When running a tkinter program from an IDLE editor, one can comment out the " +"mainloop call. One then gets a shell prompt immediately and can interact " +"with the live application. One just has to remember to re-enable the " +"mainloop call when running in standard Python." +msgstr "" + +#: ../Doc/library/idle.rst:646 msgid "Running without a subprocess" msgstr "" -#: ../Doc/library/idle.rst:623 +#: ../Doc/library/idle.rst:648 msgid "" "By default, IDLE executes user code in a separate subprocess via a socket, " "which uses the internal loopback interface. This connection is not " @@ -1125,7 +1159,7 @@ msgid "" "firewall software complains anyway, you can ignore it." msgstr "" -#: ../Doc/library/idle.rst:628 +#: ../Doc/library/idle.rst:653 msgid "" "If the attempt to make the socket connection fails, Idle will notify you. " "Such failures are sometimes transient, but if persistent, the problem may be " @@ -1134,7 +1168,7 @@ msgid "" "command line switch." msgstr "" -#: ../Doc/library/idle.rst:634 +#: ../Doc/library/idle.rst:659 msgid "" "If IDLE is started with the -n command line switch it will run in a single " "process and will not create the subprocess which runs the RPC Python " @@ -1148,15 +1182,15 @@ msgid "" "at all possible." msgstr "" -#: ../Doc/library/idle.rst:649 +#: ../Doc/library/idle.rst:674 msgid "Help and preferences" msgstr "" -#: ../Doc/library/idle.rst:652 +#: ../Doc/library/idle.rst:677 msgid "Additional help sources" msgstr "" -#: ../Doc/library/idle.rst:654 +#: ../Doc/library/idle.rst:679 msgid "" "IDLE includes a help menu entry called \"Python Docs\" that will open the " "extensive sources of help, including tutorials, available at docs.python." @@ -1165,11 +1199,11 @@ msgid "" "of IDLE for more information." msgstr "" -#: ../Doc/library/idle.rst:662 +#: ../Doc/library/idle.rst:687 msgid "Setting preferences" msgstr "" -#: ../Doc/library/idle.rst:664 +#: ../Doc/library/idle.rst:689 msgid "" "The font preferences, highlighting, keys, and general preferences can be " "changed via Configure IDLE on the Option menu. Keys can be user defined; " @@ -1177,15 +1211,15 @@ msgid "" "custom key set in the Configure IDLE dialog under the keys tab." msgstr "" -#: ../Doc/library/idle.rst:671 +#: ../Doc/library/idle.rst:696 msgid "Extensions" msgstr "" -#: ../Doc/library/idle.rst:673 +#: ../Doc/library/idle.rst:698 msgid "" "IDLE contains an extension facility. Preferences for extensions can be " -"changed with Configure Extensions. See the beginning of config-extensions." -"def in the idlelib directory for further information. The only current " -"default extension is zoomheight. It exists as an extension primarily to be " -"an example and for testing purposes." +"changed with the Extensions tab of the preferences dialog. See the beginning " +"of config-extensions.def in the idlelib directory for further information. " +"The only current default extension is zzdummy, an example also used for " +"testing." msgstr "" diff --git a/library/logging.config.po b/library/logging.config.po index 5a3c7263..e50e1c12 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,6 +25,10 @@ msgstr "" msgid "**Source code:** :source:`Lib/logging/config.py`" msgstr "" +#: ../Doc/library/logging.config.rst:0 +msgid "Important" +msgstr "" + #: ../Doc/library/logging.config.rst:14 msgid "" "This page contains only reference information. For tutorials, please see" @@ -136,10 +140,6 @@ msgid "" "chosen configuration)." msgstr "" -#: ../Doc/library/logging.config.rst:0 -msgid "Parameters" -msgstr "" - #: ../Doc/library/logging.config.rst:90 msgid "" "A filename, or a file-like object, or an instance derived from :class:" diff --git a/library/logging.handlers.po b/library/logging.handlers.po index d13b7247..3890830b 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,6 +25,10 @@ msgstr "" msgid "**Source code:** :source:`Lib/logging/handlers.py`" msgstr "" +#: ../Doc/library/logging.handlers.rst:0 +msgid "Important" +msgstr "" + #: ../Doc/library/logging.handlers.rst:14 msgid "" "This page contains only reference information. For tutorials, please see" @@ -271,10 +275,6 @@ msgid "" "callable (the default is ``None``), the name is returned unchanged." msgstr "" -#: ../Doc/library/logging.handlers.rst:0 -msgid "Parameters" -msgstr "" - #: ../Doc/library/logging.handlers.rst:231 msgid "The default name for the log file." msgstr "" diff --git a/library/logging.po b/library/logging.po index 67d90a64..92db11ae 100644 --- a/library/logging.po +++ b/library/logging.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 14:05+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -25,6 +25,10 @@ msgstr "" msgid "**Source code:** :source:`Lib/logging/__init__.py`" msgstr "" +#: ../Doc/library/logging.rst:0 +msgid "Important" +msgstr "" + #: ../Doc/library/logging.rst:16 msgid "" "This page contains the API reference information. For tutorial information " @@ -821,10 +825,6 @@ msgid "" "record." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "Parameters" -msgstr "" - #: ../Doc/library/logging.rst:658 msgid "" "The name of the logger used to log the event represented by this LogRecord. " @@ -950,7 +950,7 @@ msgstr "Format" msgid "Description" msgstr "Description" -#: ../Doc/library/logging.rst:742 ../Doc/library/logging.rst:0 +#: ../Doc/library/logging.rst:742 msgid "args" msgstr "" @@ -995,7 +995,7 @@ msgid "" "time`)." msgstr "" -#: ../Doc/library/logging.rst:756 ../Doc/library/logging.rst:0 +#: ../Doc/library/logging.rst:756 msgid "exc_info" msgstr "exc_info" @@ -1108,7 +1108,7 @@ msgid "" "`Formatter.format` is invoked." msgstr "" -#: ../Doc/library/logging.rst:784 ../Doc/library/logging.rst:0 +#: ../Doc/library/logging.rst:784 msgid "msg" msgstr "" @@ -1119,7 +1119,7 @@ msgid "" "messages`)." msgstr "" -#: ../Doc/library/logging.rst:789 ../Doc/library/logging.rst:0 +#: ../Doc/library/logging.rst:789 msgid "name" msgstr "" @@ -1660,26 +1660,14 @@ msgstr "" msgid "The logger name." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "level" -msgstr "level" - #: ../Doc/library/logging.rst:1185 msgid "The logging level (numeric)." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "fn" -msgstr "fn" - #: ../Doc/library/logging.rst:1186 msgid "The full pathname of the file where the logging call was made." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "lno" -msgstr "lno" - #: ../Doc/library/logging.rst:1187 msgid "The line number in the file where the logging call was made." msgstr "" @@ -1696,28 +1684,16 @@ msgstr "" msgid "An exception tuple, or ``None``." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "func" -msgstr "func" - #: ../Doc/library/logging.rst:1191 msgid "The name of the function or method which invoked the logging call." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "sinfo" -msgstr "sinfo" - #: ../Doc/library/logging.rst:1193 msgid "" "A stack traceback such as is provided by :func:`traceback.print_stack`, " "showing the call hierarchy." msgstr "" -#: ../Doc/library/logging.rst:0 -msgid "kwargs" -msgstr "" - #: ../Doc/library/logging.rst:1195 msgid "Additional keyword arguments." msgstr "" @@ -1807,3 +1783,18 @@ msgid "" "2.1.x and 2.2.x, which do not include the :mod:`logging` package in the " "standard library." msgstr "" + +#~ msgid "level" +#~ msgstr "level" + +#~ msgid "fn" +#~ msgstr "fn" + +#~ msgid "lno" +#~ msgstr "lno" + +#~ msgid "func" +#~ msgstr "func" + +#~ msgid "sinfo" +#~ msgstr "sinfo" diff --git a/library/socket.po b/library/socket.po index 9f0fd69e..4efffbc0 100644 --- a/library/socket.po +++ b/library/socket.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1135,10 +1135,6 @@ msgid "" "`setblocking` or :meth:`settimeout`." msgstr "" -#: ../Doc/library/socket.rst:0 -msgid "platform" -msgstr "" - #: ../Doc/library/socket.rst:1026 msgid "Windows" msgstr "Windows" diff --git a/library/ssl.po b/library/ssl.po index 1275bdab..ef12fb04 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-09-12 13:41+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -333,8 +333,8 @@ msgstr "" #: ../Doc/library/ssl.rst:219 msgid "" "The *ciphers* parameter sets the available ciphers for this SSL object. It " -"should be a string in the `OpenSSL cipher list format `_." +"should be a string in the `OpenSSL cipher list format `_." msgstr "" #: ../Doc/library/ssl.rst:223 @@ -1641,10 +1641,10 @@ msgstr "" #: ../Doc/library/ssl.rst:1446 msgid "" "Set the available ciphers for sockets created with this context. It should " -"be a string in the `OpenSSL cipher list format `_. If no cipher can be selected " -"(because compile-time options or other configuration forbids use of all the " -"specified ciphers), an :class:`SSLError` will be raised." +"be a string in the `OpenSSL cipher list format `_. If no cipher can be " +"selected (because compile-time options or other configuration forbids use of " +"all the specified ciphers), an :class:`SSLError` will be raised." msgstr "" #: ../Doc/library/ssl.rst:1454 diff --git a/library/tokenize.po b/library/tokenize.po index 18c96214..e677fbb2 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-02 22:11+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,21 +35,22 @@ msgstr "" #: ../Doc/library/tokenize.rst:19 msgid "" -"To simplify token stream handling, all :ref:`operators` and :ref:" -"`delimiters` tokens are returned using the generic :data:`token.OP` token " -"type. The exact type can be determined by checking the ``exact_type`` " -"property on the :term:`named tuple` returned from :func:`tokenize.tokenize`." +"To simplify token stream handling, all :ref:`operator ` and :ref:" +"`delimiter ` tokens and :data:`Ellipsis` are returned using the " +"generic :data:`~token.OP` token type. The exact type can be determined by " +"checking the ``exact_type`` property on the :term:`named tuple` returned " +"from :func:`tokenize.tokenize`." msgstr "" -#: ../Doc/library/tokenize.rst:25 +#: ../Doc/library/tokenize.rst:26 msgid "Tokenizing Input" msgstr "" -#: ../Doc/library/tokenize.rst:27 +#: ../Doc/library/tokenize.rst:28 msgid "The primary entry point is a :term:`generator`:" msgstr "" -#: ../Doc/library/tokenize.rst:31 +#: ../Doc/library/tokenize.rst:32 msgid "" "The :func:`.tokenize` generator requires one argument, *readline*, which " "must be a callable object which provides the same interface as the :meth:`io." @@ -57,7 +58,7 @@ msgid "" "return one line of input as bytes." msgstr "" -#: ../Doc/library/tokenize.rst:36 +#: ../Doc/library/tokenize.rst:37 msgid "" "The generator produces 5-tuples with these members: the token type; the " "token string; a 2-tuple ``(srow, scol)`` of ints specifying the row and " @@ -69,7 +70,7 @@ msgid "" "end line``." msgstr "" -#: ../Doc/library/tokenize.rst:45 +#: ../Doc/library/tokenize.rst:46 msgid "" "The returned :term:`named tuple` has an additional property named " "``exact_type`` that contains the exact operator type for :data:`token.OP` " @@ -77,59 +78,59 @@ msgid "" "``type`` field." msgstr "" -#: ../Doc/library/tokenize.rst:50 +#: ../Doc/library/tokenize.rst:51 msgid "Added support for named tuples." msgstr "" -#: ../Doc/library/tokenize.rst:53 +#: ../Doc/library/tokenize.rst:54 msgid "Added support for ``exact_type``." msgstr "" -#: ../Doc/library/tokenize.rst:56 +#: ../Doc/library/tokenize.rst:57 msgid "" ":func:`.tokenize` determines the source encoding of the file by looking for " "a UTF-8 BOM or encoding cookie, according to :pep:`263`." msgstr "" -#: ../Doc/library/tokenize.rst:60 +#: ../Doc/library/tokenize.rst:61 msgid "" "All constants from the :mod:`token` module are also exported from :mod:" "`tokenize`, as are three additional token type values:" msgstr "" -#: ../Doc/library/tokenize.rst:65 +#: ../Doc/library/tokenize.rst:66 msgid "Token value used to indicate a comment." msgstr "" -#: ../Doc/library/tokenize.rst:70 +#: ../Doc/library/tokenize.rst:71 msgid "" "Token value used to indicate a non-terminating newline. The NEWLINE token " "indicates the end of a logical line of Python code; NL tokens are generated " "when a logical line of code is continued over multiple physical lines." msgstr "" -#: ../Doc/library/tokenize.rst:77 +#: ../Doc/library/tokenize.rst:78 msgid "" "Token value that indicates the encoding used to decode the source bytes into " "text. The first token returned by :func:`.tokenize` will always be an " "ENCODING token." msgstr "" -#: ../Doc/library/tokenize.rst:82 +#: ../Doc/library/tokenize.rst:83 msgid "" "Another function is provided to reverse the tokenization process. This is " "useful for creating tools that tokenize a script, modify the token stream, " "and write back the modified script." msgstr "" -#: ../Doc/library/tokenize.rst:89 +#: ../Doc/library/tokenize.rst:90 msgid "" "Converts tokens back into Python source code. The *iterable* must return " "sequences with at least two elements, the token type and the token string. " "Any additional sequence elements are ignored." msgstr "" -#: ../Doc/library/tokenize.rst:93 +#: ../Doc/library/tokenize.rst:94 msgid "" "The reconstructed script is returned as a single string. The result is " "guaranteed to tokenize back to match the input so that the conversion is " @@ -138,32 +139,32 @@ msgid "" "may change." msgstr "" -#: ../Doc/library/tokenize.rst:99 +#: ../Doc/library/tokenize.rst:100 msgid "" "It returns bytes, encoded using the ENCODING token, which is the first token " "sequence output by :func:`.tokenize`." msgstr "" -#: ../Doc/library/tokenize.rst:103 +#: ../Doc/library/tokenize.rst:104 msgid "" ":func:`.tokenize` needs to detect the encoding of source files it tokenizes. " "The function it uses to do this is available:" msgstr "" -#: ../Doc/library/tokenize.rst:108 +#: ../Doc/library/tokenize.rst:109 msgid "" "The :func:`detect_encoding` function is used to detect the encoding that " "should be used to decode a Python source file. It requires one argument, " "readline, in the same way as the :func:`.tokenize` generator." msgstr "" -#: ../Doc/library/tokenize.rst:112 +#: ../Doc/library/tokenize.rst:113 msgid "" "It will call readline a maximum of twice, and return the encoding used (as a " "string) and a list of any lines (not decoded from bytes) it has read in." msgstr "" -#: ../Doc/library/tokenize.rst:116 +#: ../Doc/library/tokenize.rst:117 msgid "" "It detects the encoding from the presence of a UTF-8 BOM or an encoding " "cookie as specified in :pep:`263`. If both a BOM and a cookie are present, " @@ -171,84 +172,84 @@ msgid "" "``'utf-8-sig'`` will be returned as an encoding." msgstr "" -#: ../Doc/library/tokenize.rst:121 +#: ../Doc/library/tokenize.rst:122 msgid "" "If no encoding is specified, then the default of ``'utf-8'`` will be " "returned." msgstr "" -#: ../Doc/library/tokenize.rst:124 +#: ../Doc/library/tokenize.rst:125 msgid "" "Use :func:`.open` to open Python source files: it uses :func:" "`detect_encoding` to detect the file encoding." msgstr "" -#: ../Doc/library/tokenize.rst:130 +#: ../Doc/library/tokenize.rst:131 msgid "" "Open a file in read only mode using the encoding detected by :func:" "`detect_encoding`." msgstr "" -#: ../Doc/library/tokenize.rst:137 +#: ../Doc/library/tokenize.rst:138 msgid "" "Raised when either a docstring or expression that may be split over several " "lines is not completed anywhere in the file, for example::" msgstr "" -#: ../Doc/library/tokenize.rst:143 +#: ../Doc/library/tokenize.rst:144 msgid "or::" msgstr "ou : ::" -#: ../Doc/library/tokenize.rst:149 +#: ../Doc/library/tokenize.rst:150 msgid "" "Note that unclosed single-quoted strings do not cause an error to be raised. " "They are tokenized as ``ERRORTOKEN``, followed by the tokenization of their " "contents." msgstr "" -#: ../Doc/library/tokenize.rst:157 +#: ../Doc/library/tokenize.rst:158 msgid "Command-Line Usage" msgstr "" -#: ../Doc/library/tokenize.rst:161 +#: ../Doc/library/tokenize.rst:162 msgid "" "The :mod:`tokenize` module can be executed as a script from the command " "line. It is as simple as:" msgstr "" -#: ../Doc/library/tokenize.rst:168 +#: ../Doc/library/tokenize.rst:169 msgid "The following options are accepted:" msgstr "" -#: ../Doc/library/tokenize.rst:174 +#: ../Doc/library/tokenize.rst:175 msgid "show this help message and exit" msgstr "" -#: ../Doc/library/tokenize.rst:178 +#: ../Doc/library/tokenize.rst:179 msgid "display token names using the exact type" msgstr "" -#: ../Doc/library/tokenize.rst:180 +#: ../Doc/library/tokenize.rst:181 msgid "" "If :file:`filename.py` is specified its contents are tokenized to stdout. " "Otherwise, tokenization is performed on stdin." msgstr "" -#: ../Doc/library/tokenize.rst:184 +#: ../Doc/library/tokenize.rst:185 msgid "Examples" msgstr "Exemples" -#: ../Doc/library/tokenize.rst:186 +#: ../Doc/library/tokenize.rst:187 msgid "" "Example of a script rewriter that transforms float literals into Decimal " "objects::" msgstr "" -#: ../Doc/library/tokenize.rst:228 +#: ../Doc/library/tokenize.rst:229 msgid "Example of tokenizing from the command line. The script::" msgstr "" -#: ../Doc/library/tokenize.rst:235 +#: ../Doc/library/tokenize.rst:236 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 " @@ -256,6 +257,6 @@ msgid "" "token (if any)" msgstr "" -#: ../Doc/library/tokenize.rst:263 +#: ../Doc/library/tokenize.rst:264 msgid "The exact token type names can be displayed using the ``-e`` option:" msgstr "" diff --git a/library/turtle.po b/library/turtle.po index b1f4060c..b2449c92 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-11 19:00+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -45,6 +45,10 @@ msgid "" "degrees clockwise." msgstr "" +#: ../Doc/library/turtle.rst:0 +msgid "Turtle star" +msgstr "" + #: ../Doc/library/turtle.rst:33 msgid "" "Turtle can draw intricate shapes using programs that repeat simple moves." @@ -610,10 +614,6 @@ msgid "" "``turtle``." msgstr "" -#: ../Doc/library/turtle.rst:0 -msgid "Parameters" -msgstr "" - #: ../Doc/library/turtle.rst:247 ../Doc/library/turtle.rst:290 #: ../Doc/library/turtle.rst:313 ../Doc/library/turtle.rst:369 #: ../Doc/library/turtle.rst:390 ../Doc/library/turtle.rst:411 diff --git a/reference/datamodel.po b/reference/datamodel.po index f1caf241..957b5239 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2235,7 +2235,7 @@ msgstr "" #: ../Doc/reference/datamodel.rst:1877 msgid "" "The potential uses for metaclasses are boundless. Some ideas that have been " -"explored include logging, interface checking, automatic delegation, " +"explored include enum, logging, interface checking, automatic delegation, " "automatic property creation, proxies, frameworks, and automatic resource " "locking/synchronization." msgstr "" diff --git a/reference/expressions.po b/reference/expressions.po index 52de65bc..1dd5db78 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -1879,7 +1879,9 @@ msgid "``*``, ``@``, ``/``, ``//``, ``%``" msgstr "``*``, ``@``, ``/``, ``//``, ``%``" #: ../Doc/reference/expressions.rst:1694 -msgid "Multiplication, matrix multiplication division, remainder [#]_" +msgid "" +"Multiplication, matrix multiplication, division, floor division, remainder " +"[#]_" msgstr "" #: ../Doc/reference/expressions.rst:1698 diff --git a/reference/lexical_analysis.po b/reference/lexical_analysis.po index 6ebc6ee9..3866c6a5 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -892,101 +892,101 @@ msgstr "" msgid "Some examples of formatted string literals::" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:680 +#: ../Doc/reference/lexical_analysis.rst:686 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::" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:687 +#: ../Doc/reference/lexical_analysis.rst:693 msgid "" "Backslashes are not allowed in format expressions and will raise an error::" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:692 +#: ../Doc/reference/lexical_analysis.rst:698 msgid "" "To include a value in which a backslash escape is required, create a " "temporary variable." msgstr "" -#: ../Doc/reference/lexical_analysis.rst:699 +#: ../Doc/reference/lexical_analysis.rst:705 msgid "" "Formatted string literals cannot be used as docstrings, even if they do not " "include expressions." msgstr "" -#: ../Doc/reference/lexical_analysis.rst:710 +#: ../Doc/reference/lexical_analysis.rst:716 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 "" -#: ../Doc/reference/lexical_analysis.rst:717 +#: ../Doc/reference/lexical_analysis.rst:723 msgid "Numeric literals" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:723 +#: ../Doc/reference/lexical_analysis.rst:729 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 "" -#: ../Doc/reference/lexical_analysis.rst:727 +#: ../Doc/reference/lexical_analysis.rst:733 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 "" -#: ../Doc/reference/lexical_analysis.rst:735 +#: ../Doc/reference/lexical_analysis.rst:741 msgid "Integer literals" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:737 +#: ../Doc/reference/lexical_analysis.rst:743 msgid "Integer literals are described by the following lexical definitions:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:751 +#: ../Doc/reference/lexical_analysis.rst:757 msgid "" "There is no limit for the length of integer literals apart from what can be " "stored in available memory." msgstr "" -#: ../Doc/reference/lexical_analysis.rst:754 +#: ../Doc/reference/lexical_analysis.rst:760 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 "" -#: ../Doc/reference/lexical_analysis.rst:758 +#: ../Doc/reference/lexical_analysis.rst:764 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 "" -#: ../Doc/reference/lexical_analysis.rst:762 +#: ../Doc/reference/lexical_analysis.rst:768 msgid "Some examples of integer literals::" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:768 -#: ../Doc/reference/lexical_analysis.rst:800 +#: ../Doc/reference/lexical_analysis.rst:774 +#: ../Doc/reference/lexical_analysis.rst:806 msgid "Underscores are now allowed for grouping purposes in literals." msgstr "" -#: ../Doc/reference/lexical_analysis.rst:775 +#: ../Doc/reference/lexical_analysis.rst:781 msgid "Floating point literals" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:777 +#: ../Doc/reference/lexical_analysis.rst:783 msgid "" "Floating point literals are described by the following lexical definitions:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:787 +#: ../Doc/reference/lexical_analysis.rst:793 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 " @@ -995,26 +995,26 @@ msgid "" "grouping." msgstr "" -#: ../Doc/reference/lexical_analysis.rst:792 +#: ../Doc/reference/lexical_analysis.rst:798 msgid "Some examples of floating point literals::" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:796 +#: ../Doc/reference/lexical_analysis.rst:802 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 "" -#: ../Doc/reference/lexical_analysis.rst:807 +#: ../Doc/reference/lexical_analysis.rst:813 msgid "Imaginary literals" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:809 +#: ../Doc/reference/lexical_analysis.rst:815 msgid "Imaginary literals are described by the following lexical definitions:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:814 +#: ../Doc/reference/lexical_analysis.rst:820 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 " @@ -1023,23 +1023,23 @@ msgid "" "Some examples of imaginary literals::" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:826 +#: ../Doc/reference/lexical_analysis.rst:832 msgid "Operators" msgstr "Opérateurs" -#: ../Doc/reference/lexical_analysis.rst:830 +#: ../Doc/reference/lexical_analysis.rst:836 msgid "The following tokens are operators:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:843 +#: ../Doc/reference/lexical_analysis.rst:849 msgid "Delimiters" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:847 +#: ../Doc/reference/lexical_analysis.rst:853 msgid "The following tokens serve as delimiters in the grammar:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:856 +#: ../Doc/reference/lexical_analysis.rst:862 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 " @@ -1047,22 +1047,22 @@ msgid "" "as delimiters, but also perform an operation." msgstr "" -#: ../Doc/reference/lexical_analysis.rst:861 +#: ../Doc/reference/lexical_analysis.rst:867 msgid "" "The following printing ASCII characters have special meaning as part of " "other tokens or are otherwise significant to the lexical analyzer:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:868 +#: ../Doc/reference/lexical_analysis.rst:874 msgid "" "The following printing ASCII characters are not used in Python. Their " "occurrence outside string literals and comments is an unconditional error:" msgstr "" -#: ../Doc/reference/lexical_analysis.rst:877 +#: ../Doc/reference/lexical_analysis.rst:883 msgid "Footnotes" msgstr "Notes" -#: ../Doc/reference/lexical_analysis.rst:878 +#: ../Doc/reference/lexical_analysis.rst:884 msgid "http://www.unicode.org/Public/9.0.0/ucd/NameAliases.txt" msgstr "" diff --git a/sphinx.po b/sphinx.po index 55c90162..a9f6af65 100644 --- a/sphinx.po +++ b/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-05-16 13:58+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -69,17 +69,45 @@ msgstr "Liste de Livres" msgid "Audio/Visual Talks" msgstr "Discours audiovisuels" -#: ../Doc/tools/templates/customsourcelink.html:3 -msgid "This Page" -msgstr "Cette Page" +#: ../Doc/tools/templates/layout.html:10 +msgid "Documentation " +msgstr "Documentation" -#: ../Doc/tools/templates/customsourcelink.html:5 -msgid "Report a Bug" -msgstr "Rapporter un bug" +#: ../Doc/tools/templates/layout.html:21 +msgid "Quick search" +msgstr "Recherche rapide" -#: ../Doc/tools/templates/customsourcelink.html:8 -msgid "Show Source" -msgstr "Voir la source" +#: ../Doc/tools/templates/layout.html:22 +msgid "Go" +msgstr "Go" + +#: ../Doc/tools/templates/layout.html:108 +#: ../Doc/tools/templates/indexcontent.html:63 +msgid "Copyright" +msgstr "Copyright" + +#: ../Doc/tools/templates/layout.html:110 +msgid "The Python Software Foundation is a non-profit corporation." +msgstr "La Python Software Foundation est une organisation à but non lucratif." + +#: ../Doc/tools/templates/layout.html:111 +msgid "Please donate." +msgstr "Les dons sont les bienvenus." + +#: ../Doc/tools/templates/layout.html:113 +msgid "Last updated on %(last_updated)s." +msgstr "Dernière mise-à-jour le %(last_updated)s." + +#: ../Doc/tools/templates/layout.html:114 +msgid "Found a bug?" +msgstr "Vous avez trouvé un bug ?" + +#: ../Doc/tools/templates/layout.html:116 +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "" +"Crée via Sphinx %(sphinx_version)s." #: ../Doc/tools/templates/indexcontent.html:8 msgid "Welcome! This is the documentation for Python %(release)s." @@ -239,42 +267,14 @@ msgstr "À propos de la documentation" msgid "History and License of Python" msgstr "Histoire et Licence de Python" -#: ../Doc/tools/templates/indexcontent.html:63 -#: ../Doc/tools/templates/layout.html:108 -msgid "Copyright" -msgstr "Copyright" +#: ../Doc/tools/templates/customsourcelink.html:3 +msgid "This Page" +msgstr "Cette Page" -#: ../Doc/tools/templates/layout.html:10 -msgid "Documentation " -msgstr "Documentation" +#: ../Doc/tools/templates/customsourcelink.html:5 +msgid "Report a Bug" +msgstr "Rapporter un bug" -#: ../Doc/tools/templates/layout.html:21 -msgid "Quick search" -msgstr "Recherche rapide" - -#: ../Doc/tools/templates/layout.html:22 -msgid "Go" -msgstr "Go" - -#: ../Doc/tools/templates/layout.html:110 -msgid "The Python Software Foundation is a non-profit corporation." -msgstr "La Python Software Foundation est une organisation à but non lucratif." - -#: ../Doc/tools/templates/layout.html:111 -msgid "Please donate." -msgstr "Les dons sont les bienvenus." - -#: ../Doc/tools/templates/layout.html:113 -msgid "Last updated on %(last_updated)s." -msgstr "Dernière mise-à-jour le %(last_updated)s." - -#: ../Doc/tools/templates/layout.html:114 -msgid "Found a bug?" -msgstr "Vous avez trouvé un bug ?" - -#: ../Doc/tools/templates/layout.html:116 -msgid "" -"Created using Sphinx " -"%(sphinx_version)s." -msgstr "" -"Crée via Sphinx %(sphinx_version)s." +#: ../Doc/tools/templates/customsourcelink.html:8 +msgid "Show Source" +msgstr "Voir la source" diff --git a/using/mac.po b/using/mac.po index 53311641..f0820743 100644 --- a/using/mac.po +++ b/using/mac.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "Using Python on a Macintosh" msgstr "Utilisation de Python sur un Macintosh" -#: ../Doc/using/mac.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/using/mac.rst:8 msgid "Bob Savage " msgstr "" diff --git a/whatsnew/2.0.po b/whatsnew/2.0.po index 25e4f2b4..de8b8184 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.0" msgstr "Nouveautés de Python 2.0" -#: ../Doc/whatsnew/2.0.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.0.rst:5 msgid "A.M. Kuchling and Moshe Zadka" msgstr "A.M. Kuchling et Moshe Zadka" diff --git a/whatsnew/2.1.po b/whatsnew/2.1.po index b7c27a2b..73d66636 100644 --- a/whatsnew/2.1.po +++ b/whatsnew/2.1.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.1" msgstr "Nouveautés de Python 2.1" -#: ../Doc/whatsnew/2.1.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.1.rst:5 msgid "A.M. Kuchling" msgstr "A.M. Kuchling" diff --git a/whatsnew/2.2.po b/whatsnew/2.2.po index 8b55ae53..de398ab2 100644 --- a/whatsnew/2.2.po +++ b/whatsnew/2.2.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.2" msgstr "Nouveautés de Python 2.2" -#: ../Doc/whatsnew/2.2.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.2.rst:5 msgid "A.M. Kuchling" msgstr "A.M. Kuchling" diff --git a/whatsnew/2.3.po b/whatsnew/2.3.po index 6aac378f..097bba73 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:54+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.3" msgstr "Nouveautés de Python 2.3" -#: ../Doc/whatsnew/2.3.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.3.rst:5 msgid "A.M. Kuchling" msgstr "A.M. Kuchling" diff --git a/whatsnew/2.4.po b/whatsnew/2.4.po index 84f12c32..b1b0bc24 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.4" msgstr "Nouveautés de Python 2.4" -#: ../Doc/whatsnew/2.4.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.4.rst:5 msgid "A.M. Kuchling" msgstr "A.M. Kuchling" diff --git a/whatsnew/2.5.po b/whatsnew/2.5.po index e0d2a19e..a7533067 100644 --- a/whatsnew/2.5.po +++ b/whatsnew/2.5.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:53+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.5" msgstr "Nouveautés de Python 2.5" -#: ../Doc/whatsnew/2.5.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.5.rst:5 msgid "A.M. Kuchling" msgstr "A.M. Kuchling" diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index 55c80e2a..5bff54c1 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:53+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.6" msgstr "Nouveautés de Python 2.6" -#: ../Doc/whatsnew/2.6.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.6.rst:9 msgid "A.M. Kuchling (amk at amk.ca)" msgstr "" diff --git a/whatsnew/2.7.po b/whatsnew/2.7.po index 6404036a..46622ab3 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:52+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New in Python 2.7" msgstr "Nouveautés de Python 2.7" -#: ../Doc/whatsnew/2.7.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/2.7.rst:5 msgid "A.M. Kuchling (amk at amk.ca)" msgstr "" diff --git a/whatsnew/3.0.po b/whatsnew/3.0.po index ac256afe..99cc076a 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New In Python 3.0" msgstr "Nouveautés de Python 3.0" -#: ../Doc/whatsnew/3.0.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/3.0.rst:7 msgid "Guido van Rossum" msgstr "Guido van Rossum" diff --git a/whatsnew/3.1.po b/whatsnew/3.1.po index 7eb93022..5014dbed 100644 --- a/whatsnew/3.1.po +++ b/whatsnew/3.1.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New In Python 3.1" msgstr "Nouveautés de Python 3.1" -#: ../Doc/whatsnew/3.1.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/3.1.rst:5 msgid "Raymond Hettinger" msgstr "" diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index d57f5cc2..79304fc4 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New In Python 3.2" msgstr "Nouveautés de Python 3.2" -#: ../Doc/whatsnew/3.2.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/3.2.rst:5 msgid "Raymond Hettinger" msgstr "" diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index 2fdf9b0e..1afbd4fa 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New In Python 3.4" msgstr "Nouveautés de Python 3.4" -#: ../Doc/whatsnew/3.4.rst:0 -msgid "Author" -msgstr "" - #: ../Doc/whatsnew/3.4.rst:5 msgid "R. David Murray (Editor)" msgstr "" diff --git a/whatsnew/3.5.po b/whatsnew/3.5.po index ce8659a8..3d45312b 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-10 00:52+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New In Python 3.5" msgstr "Nouveautés de Python 3.5" -#: ../Doc/whatsnew/3.5.rst:0 -msgid "Editors" -msgstr "" - #: ../Doc/whatsnew/3.5.rst:5 msgid "Elvis Pranskevichus , Yury Selivanov " msgstr "" diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index 65428afa..3562e017 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-05-27 14:24+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,10 +21,6 @@ msgstr "" msgid "What's New In Python 3.6" msgstr "" -#: ../Doc/whatsnew/3.6.rst:0 -msgid "Editors" -msgstr "" - #: ../Doc/whatsnew/3.6.rst:5 msgid "Elvis Pranskevichus , Yury Selivanov " msgstr "" diff --git a/whatsnew/changelog.po b/whatsnew/changelog.po index f0dc4c0e..5c9dfe22 100644 --- a/whatsnew/changelog.po +++ b/whatsnew/changelog.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-12 13:37+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: 2017-08-29 14:38+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,28707 +21,19336 @@ msgstr "" msgid "Changelog" msgstr "Changements" -#~ msgid "Python 3.6.3 release candidate 1" -#~ msgstr "Python 3.6.3 release candidate 1" - -#~ msgid "*Release date: XXXX-XX-XX*" -#~ msgstr "*Date de sortie : XXXX-XX-XX*" - -#~ msgid "Core and Builtins" -#~ msgstr "Noyeau et natifs" - -#~ msgid "" -#~ "`bpo-31161 `__: Make sure the " -#~ "'Missing parentheses' syntax error message is only applied to " -#~ "SyntaxError, not to subclasses. Patch by Martijn Pieters." -#~ msgstr "" -#~ "`bpo-31161 `__: Make sure the " -#~ "'Missing parentheses' syntax error message is only applied to " -#~ "SyntaxError, not to subclasses. Patch by Martijn Pieters." - -#~ msgid "" -#~ "`bpo-30814 `__: Fixed a race " -#~ "condition when import a submodule from a package." -#~ msgstr "" -#~ "`bpo-30814 `__: Fixed a race " -#~ "condition when import a submodule from a package." - -#~ msgid "" -#~ "`bpo-30597 `__: ``print`` now shows " -#~ "expected input in custom error message when used as a Python 2 statement. " -#~ "Patch by Sanyam Khurana." -#~ msgstr "" -#~ "`bpo-30597 `__: ``print`` now shows " -#~ "expected input in custom error message when used as a Python 2 statement. " -#~ "Patch by Sanyam Khurana." - -#~ msgid "Library" -#~ msgstr "Bibliothèque" - -#~ msgid "" -#~ "`bpo-30879 `__: os.listdir() and os." -#~ "scandir() now emit bytes names when called with bytes-like argument." -#~ msgstr "" -#~ "`bpo-30879 `__: os.listdir() and os." -#~ "scandir() now emit bytes names when called with bytes-like argument." - -#~ msgid "" -#~ "`bpo-30746 `__: Prohibited the '=' " -#~ "character in environment variable names in ``os.putenv()`` and ``os." -#~ "spawn*()``." -#~ msgstr "" -#~ "`bpo-30746 `__: Prohibited the '=' " -#~ "character in environment variable names in ``os.putenv()`` and ``os." -#~ "spawn*()``." - -#~ msgid "" -#~ "`bpo-29755 `__: Fixed the lgettext() " -#~ "family of functions in the gettext module. They now always return bytes." -#~ msgstr "" -#~ "`bpo-29755 `__: Fixed the lgettext() " -#~ "family of functions in the gettext module. They now always return bytes." - -#~ msgid "Python 3.6.2" -#~ msgstr "Python 3.6.2" - -#~ msgid "*Release date: 2017-07-17*" -#~ msgstr "*Date de sortie : 2017-07-17*" - -#~ msgid "No changes since release candidate 2" -#~ msgstr "Aucun changement depuis la seconde *release candidate*" - -#~ msgid "Python 3.6.2 release candidate 2" -#~ msgstr "Python 3.6.2 release candidate 2" - -#~ msgid "*Release date: 2017-07-07*" -#~ msgstr "*Date de sortie : 2017-07-07*" - -#~ msgid "" -#~ "[Security] `bpo-30730 `__: Prevent " -#~ "environment variables injection in subprocess on Windows. Prevent " -#~ "passing other environment variables and command arguments." -#~ msgstr "" -#~ "[Security] `bpo-30730 `__: Prevent " -#~ "environment variables injection in subprocess on Windows. Prevent " -#~ "passing other environment variables and command arguments." - -#~ msgid "" -#~ "[Security] `bpo-30694 `__: Upgrade " -#~ "expat copy from 2.2.0 to 2.2.1 to get fixes of multiple security " -#~ "vulnerabilities including: CVE-2017-9233 (External entity infinite loop " -#~ "DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix " -#~ "regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876 " -#~ "(Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use os-" -#~ "specific entropy sources like getrandom) doesn't impact Python, since " -#~ "Python already gets entropy from the OS to set the expat secret using " -#~ "``XML_SetHashSalt()``." -#~ msgstr "" -#~ "[Security] `bpo-30694 `__: Upgrade " -#~ "expat copy from 2.2.0 to 2.2.1 to get fixes of multiple security " -#~ "vulnerabilities including: CVE-2017-9233 (External entity infinite loop " -#~ "DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix " -#~ "regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876 " -#~ "(Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use os-" -#~ "specific entropy sources like getrandom) doesn't impact Python, since " -#~ "Python already gets entropy from the OS to set the expat secret using " -#~ "``XML_SetHashSalt()``." - -#~ msgid "" -#~ "[Security] `bpo-30500 `__: Fix urllib." -#~ "parse.splithost() to correctly parse fragments. For example, " -#~ "``splithost('//127.0.0.1#@evil.com/')`` now correctly returns the " -#~ "``127.0.0.1`` host, instead of treating ``@evil.com`` as the host in an " -#~ "authentification (``login@host``)." -#~ msgstr "" -#~ "[Security] `bpo-30500 `__: Fix urllib." -#~ "parse.splithost() to correctly parse fragments. For example, " -#~ "``splithost('//127.0.0.1#@evil.com/')`` now correctly returns the " -#~ "``127.0.0.1`` host, instead of treating ``@evil.com`` as the host in an " -#~ "authentification (``login@host``)." - -#~ msgid "Python 3.6.2 release candidate 1" -#~ msgstr "Python 3.6.2 release candidate 1" - -#~ msgid "*Release date: 2017-06-17*" -#~ msgstr "*Date de sortie : 2017-06-17*" - -#~ msgid "" -#~ "`bpo-30682 `__: Removed a too-strict " -#~ "assertion that failed for certain f-strings, such as eval(\"f'\\\\\\n'\") " -#~ "and eval(\"f'\\\\\\r'\")." -#~ msgstr "" -#~ "`bpo-30682 `__: Removed a too-strict " -#~ "assertion that failed for certain f-strings, such as eval(\"f'\\\\\\n'\") " -#~ "and eval(\"f'\\\\\\r'\")." - -#~ msgid "" -#~ "`bpo-30604 `__: Move " -#~ "co_extra_freefuncs to not be per-thread to avoid crashes" -#~ msgstr "" -#~ "`bpo-30604 `__: Move " -#~ "co_extra_freefuncs to not be per-thread to avoid crashes" - -#~ msgid "" -#~ "`bpo-29104 `__: Fixed parsing " -#~ "backslashes in f-strings." -#~ msgstr "" -#~ "`bpo-29104 `__: Fixed parsing " -#~ "backslashes in f-strings." - -#~ msgid "" -#~ "`bpo-27945 `__: Fixed various " -#~ "segfaults with dict when input collections are mutated during searching, " -#~ "inserting or comparing. Based on patches by Duane Griffin and Tim " -#~ "Mitchell." -#~ msgstr "" -#~ "`bpo-27945 `__: Fixed various " -#~ "segfaults with dict when input collections are mutated during searching, " -#~ "inserting or comparing. Based on patches by Duane Griffin and Tim " -#~ "Mitchell." - -#~ msgid "" -#~ "`bpo-25794 `__: Fixed type." -#~ "__setattr__() and type.__delattr__() for non-interned attribute names. " -#~ "Based on patch by Eryk Sun." -#~ msgstr "" -#~ "`bpo-25794 `__: Fixed type." -#~ "__setattr__() and type.__delattr__() for non-interned attribute names. " -#~ "Based on patch by Eryk Sun." - -#~ msgid "" -#~ "`bpo-30039 `__: If a " -#~ "KeyboardInterrupt happens when the interpreter is in the middle of " -#~ "resuming a chain of nested 'yield from' or 'await' calls, it's now " -#~ "correctly delivered to the innermost frame." -#~ msgstr "" -#~ "`bpo-30039 `__: If a " -#~ "KeyboardInterrupt happens when the interpreter is in the middle of " -#~ "resuming a chain of nested 'yield from' or 'await' calls, it's now " -#~ "correctly delivered to the innermost frame." - -#~ msgid "" -#~ "`bpo-12414 `__: sys.getsizeof() on a " -#~ "code object now returns the sizes which includes the code struct and " -#~ "sizes of objects which it references. Patch by Dong-hee Na." -#~ msgstr "" -#~ "`bpo-12414 `__: sys.getsizeof() on a " -#~ "code object now returns the sizes which includes the code struct and " -#~ "sizes of objects which it references. Patch by Dong-hee Na." - -#~ msgid "" -#~ "`bpo-29949 `__: Fix memory usage " -#~ "regression of set and frozenset object." -#~ msgstr "" -#~ "`bpo-29949 `__: Fix memory usage " -#~ "regression of set and frozenset object." - -#~ msgid "" -#~ "`bpo-29935 `__: Fixed error messages " -#~ "in the index() method of tuple, list and deque when pass indices of wrong " -#~ "type." -#~ msgstr "" -#~ "`bpo-29935 `__: Fixed error messages " -#~ "in the index() method of tuple, list and deque when pass indices of wrong " -#~ "type." - -#~ msgid "" -#~ "`bpo-29859 `__: Show correct error " -#~ "messages when any of the pthread_* calls in thread_pthread.h fails." -#~ msgstr "" -#~ "`bpo-29859 `__: Show correct error " -#~ "messages when any of the pthread_* calls in thread_pthread.h fails." - -#~ msgid "" -#~ "`bpo-28876 `__: ``bool(range)`` works " -#~ "even if ``len(range)`` raises :exc:`OverflowError`." -#~ msgstr "" -#~ "`bpo-28876 `__: ``bool(range)`` works " -#~ "even if ``len(range)`` raises :exc:`OverflowError`." - -#~ msgid "" -#~ "`bpo-29600 `__: Fix wrapping " -#~ "coroutine return values in StopIteration." -#~ msgstr "" -#~ "`bpo-29600 `__: Fix wrapping " -#~ "coroutine return values in StopIteration." - -#~ msgid "" -#~ "`bpo-28856 `__: Fix an oversight that " -#~ "%b format for bytes should support objects follow the buffer protocol." -#~ msgstr "" -#~ "`bpo-28856 `__: Fix an oversight that " -#~ "%b format for bytes should support objects follow the buffer protocol." - -#~ msgid "" -#~ "`bpo-29714 `__: Fix a regression that " -#~ "bytes format may fail when containing zero bytes inside." -#~ msgstr "" -#~ "`bpo-29714 `__: Fix a regression that " -#~ "bytes format may fail when containing zero bytes inside." - -#~ msgid "" -#~ "`bpo-29478 `__: If " -#~ "max_line_length=None is specified while using the Compat32 policy, it is " -#~ "no longer ignored. Patch by Mircea Cosbuc." -#~ msgstr "" -#~ "`bpo-29478 `__: If " -#~ "max_line_length=None is specified while using the Compat32 policy, it is " -#~ "no longer ignored. Patch by Mircea Cosbuc." - -#~ msgid "" -#~ "`bpo-30616 `__: Functional API of " -#~ "enum allows to create empty enums. Patched by Dong-hee Na" -#~ msgstr "" -#~ "`bpo-30616 `__: Functional API of " -#~ "enum allows to create empty enums. Patched by Dong-hee Na" - -#~ msgid "" -#~ "`bpo-30038 `__: Fix race condition " -#~ "between signal delivery and wakeup file descriptor. Patch by Nathaniel " -#~ "Smith." -#~ msgstr "" -#~ "`bpo-30038 `__: Fix race condition " -#~ "between signal delivery and wakeup file descriptor. Patch by Nathaniel " -#~ "Smith." - -#~ msgid "" -#~ "`bpo-23894 `__: lib2to3 now " -#~ "recognizes ``rb'...'`` and ``f'...'`` strings." -#~ msgstr "" -#~ "`bpo-23894 `__: lib2to3 now " -#~ "recognizes ``rb'...'`` and ``f'...'`` strings." - -#~ msgid "" -#~ "`bpo-23890 `__: unittest.TestCase." -#~ "assertRaises() now manually breaks a reference cycle to not keep objects " -#~ "alive longer than expected." -#~ msgstr "" -#~ "`bpo-23890 `__: unittest.TestCase." -#~ "assertRaises() now manually breaks a reference cycle to not keep objects " -#~ "alive longer than expected." - -#~ msgid "" -#~ "`bpo-30149 `__: inspect.signature() " -#~ "now supports callables with variable-argument parameters wrapped with " -#~ "partialmethod. Patch by Dong-hee Na." -#~ msgstr "" -#~ "`bpo-30149 `__: inspect.signature() " -#~ "now supports callables with variable-argument parameters wrapped with " -#~ "partialmethod. Patch by Dong-hee Na." - -#~ msgid "" -#~ "`bpo-30645 `__: Fix path calculation " -#~ "in imp.load_package(), fixing it for cases when a package is only shipped " -#~ "with bytecodes. Patch by Alexandru Ardelean." -#~ msgstr "" -#~ "`bpo-30645 `__: Fix path calculation " -#~ "in imp.load_package(), fixing it for cases when a package is only shipped " -#~ "with bytecodes. Patch by Alexandru Ardelean." - -#~ msgid "" -#~ "`bpo-29931 `__: Fixed comparison " -#~ "check for ipaddress.ip_interface objects. Patch by Sanjay Sundaresan." -#~ msgstr "" -#~ "`bpo-29931 `__: Fixed comparison " -#~ "check for ipaddress.ip_interface objects. Patch by Sanjay Sundaresan." - -#~ msgid "" -#~ "`bpo-30605 `__: re.compile() no " -#~ "longer raises a BytesWarning when compiling a bytes instance with " -#~ "misplaced inline modifier. Patch by Roy Williams." -#~ msgstr "" -#~ "`bpo-30605 `__: re.compile() no " -#~ "longer raises a BytesWarning when compiling a bytes instance with " -#~ "misplaced inline modifier. Patch by Roy Williams." - -#~ msgid "" -#~ "[Security] `bpo-29591 `__: Update " -#~ "expat copy from 2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and " -#~ "CVE-2016-4472. See https://sourceforge.net/p/expat/bugs/537/ for more " -#~ "information." -#~ msgstr "" -#~ "[Security] `bpo-29591 `__: Update " -#~ "expat copy from 2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and " -#~ "CVE-2016-4472. See https://sourceforge.net/p/expat/bugs/537/ for more " -#~ "information." - -#~ msgid "" -#~ "`bpo-24484 `__: Avoid race condition " -#~ "in multiprocessing cleanup (#2159)" -#~ msgstr "" -#~ "`bpo-24484 `__: Avoid race condition " -#~ "in multiprocessing cleanup (#2159)" - -#~ msgid "" -#~ "`bpo-28994 `__: The traceback no " -#~ "longer displayed for SystemExit raised in a callback registered by atexit." -#~ msgstr "" -#~ "`bpo-28994 `__: The traceback no " -#~ "longer displayed for SystemExit raised in a callback registered by atexit." - -#~ msgid "" -#~ "`bpo-30508 `__: Don't log exceptions " -#~ "if Task/Future \"cancel()\" method was called." -#~ msgstr "" -#~ "`bpo-30508 `__: Don't log exceptions " -#~ "if Task/Future \"cancel()\" method was called." - -#~ msgid "" -#~ "`bpo-28556 `__: Updates to typing " -#~ "module: Add generic AsyncContextManager, add support for ContextManager " -#~ "on all versions. Original PRs by Jelle Zijlstra and Ivan Levkivskyi" -#~ msgstr "" -#~ "`bpo-28556 `__: Updates to typing " -#~ "module: Add generic AsyncContextManager, add support for ContextManager " -#~ "on all versions. Original PRs by Jelle Zijlstra and Ivan Levkivskyi" - -#~ msgid "" -#~ "`bpo-29870 `__: Fix ssl sockets leaks " -#~ "when connection is aborted in asyncio/ssl implementation. Patch by " -#~ "Michaël Sghaïer." -#~ msgstr "" -#~ "`bpo-29870 `__: Fix ssl sockets leaks " -#~ "when connection is aborted in asyncio/ssl implementation. Patch by " -#~ "Michaël Sghaïer." - -#~ msgid "" -#~ "`bpo-29743 `__: Closing transport " -#~ "during handshake process leaks open socket. Patch by Nikolay Kim" -#~ msgstr "" -#~ "`bpo-29743 `__: Closing transport " -#~ "during handshake process leaks open socket. Patch by Nikolay Kim" - -#~ msgid "" -#~ "`bpo-27585 `__: Fix waiter " -#~ "cancellation in asyncio.Lock. Patch by Mathieu Sornay." -#~ msgstr "" -#~ "`bpo-27585 `__: Fix waiter " -#~ "cancellation in asyncio.Lock. Patch by Mathieu Sornay." - -#~ msgid "" -#~ "`bpo-30418 `__: On Windows, " -#~ "subprocess.Popen.communicate() now also ignore EINVAL on stdin.write() if " -#~ "the child process is still running but closed the pipe." -#~ msgstr "" -#~ "`bpo-30418 `__: On Windows, " -#~ "subprocess.Popen.communicate() now also ignore EINVAL on stdin.write() if " -#~ "the child process is still running but closed the pipe." - -#~ msgid "" -#~ "`bpo-29822 `__: inspect.isabstract() " -#~ "now works during __init_subclass__. Patch by Nate Soares." -#~ msgstr "" -#~ "`bpo-29822 `__: inspect.isabstract() " -#~ "now works during __init_subclass__. Patch by Nate Soares." - -#~ msgid "" -#~ "`bpo-29581 `__: ABCMeta.__new__ now " -#~ "accepts ``**kwargs``, allowing abstract base classes to use keyword " -#~ "parameters in __init_subclass__. Patch by Nate Soares." -#~ msgstr "" -#~ "`bpo-29581 `__: ABCMeta.__new__ now " -#~ "accepts ``**kwargs``, allowing abstract base classes to use keyword " -#~ "parameters in __init_subclass__. Patch by Nate Soares." - -#~ msgid "" -#~ "`bpo-30557 `__: faulthandler now " -#~ "correctly filters and displays exception codes on Windows" -#~ msgstr "" -#~ "`bpo-30557 `__: faulthandler now " -#~ "correctly filters and displays exception codes on Windows" - -#~ msgid "" -#~ "`bpo-30378 `__: Fix the problem that " -#~ "logging.handlers.SysLogHandler cannot handle IPv6 addresses." -#~ msgstr "" -#~ "`bpo-30378 `__: Fix the problem that " -#~ "logging.handlers.SysLogHandler cannot handle IPv6 addresses." - -#~ msgid "" -#~ "`bpo-29960 `__: Preserve generator " -#~ "state when _random.Random.setstate() raises an exception. Patch by Bryan " -#~ "Olson." -#~ msgstr "" -#~ "`bpo-29960 `__: Preserve generator " -#~ "state when _random.Random.setstate() raises an exception. Patch by Bryan " -#~ "Olson." - -#~ msgid "" -#~ "`bpo-30414 `__: multiprocessing.Queue." -#~ "_feed background running thread do not break from main loop on exception." -#~ msgstr "" -#~ "`bpo-30414 `__: multiprocessing.Queue." -#~ "_feed background running thread do not break from main loop on exception." - -#~ msgid "" -#~ "`bpo-30003 `__: Fix handling escape " -#~ "characters in HZ codec. Based on patch by Ma Lin." -#~ msgstr "" -#~ "`bpo-30003 `__: Fix handling escape " -#~ "characters in HZ codec. Based on patch by Ma Lin." - -#~ msgid "" -#~ "`bpo-30301 `__: Fix AttributeError " -#~ "when using SimpleQueue.empty() under *spawn* and *forkserver* start " -#~ "methods." -#~ msgstr "" -#~ "`bpo-30301 `__: Fix AttributeError " -#~ "when using SimpleQueue.empty() under *spawn* and *forkserver* start " -#~ "methods." - -#~ msgid "" -#~ "`bpo-30329 `__: imaplib and poplib " -#~ "now catch the Windows socket WSAEINVAL error (code 10022) on " -#~ "shutdown(SHUT_RDWR): An invalid operation was attempted. This error " -#~ "occurs sometimes on SSL connections." -#~ msgstr "" -#~ "`bpo-30329 `__: imaplib and poplib " -#~ "now catch the Windows socket WSAEINVAL error (code 10022) on " -#~ "shutdown(SHUT_RDWR): An invalid operation was attempted. This error " -#~ "occurs sometimes on SSL connections." - -#~ msgid "" -#~ "`bpo-30375 `__: Warnings emitted when " -#~ "compile a regular expression now always point to the line in the user " -#~ "code. Previously they could point into inners of the re module if " -#~ "emitted from inside of groups or conditionals." -#~ msgstr "" -#~ "`bpo-30375 `__: Warnings emitted when " -#~ "compile a regular expression now always point to the line in the user " -#~ "code. Previously they could point into inners of the re module if " -#~ "emitted from inside of groups or conditionals." - -#~ msgid "" -#~ "`bpo-30048 `__: Fixed ``Task." -#~ "cancel()`` can be ignored when the task is running coroutine and the " -#~ "coroutine returned without any more ``await``." -#~ msgstr "" -#~ "`bpo-30048 `__: Fixed ``Task." -#~ "cancel()`` can be ignored when the task is running coroutine and the " -#~ "coroutine returned without any more ``await``." - -#~ msgid "" -#~ "`bpo-30266 `__: contextlib." -#~ "AbstractContextManager now supports anti-registration by setting " -#~ "__enter__ = None or __exit__ = None, following the pattern introduced in " -#~ "`bpo-25958 `__. Patch by Jelle " -#~ "Zijlstra." -#~ msgstr "" -#~ "`bpo-30266 `__: contextlib." -#~ "AbstractContextManager now supports anti-registration by setting " -#~ "__enter__ = None or __exit__ = None, following the pattern introduced in " -#~ "`bpo-25958 `__. Patch by Jelle " -#~ "Zijlstra." - -#~ msgid "" -#~ "`bpo-30298 `__: Weaken the condition " -#~ "of deprecation warnings for inline modifiers. Now allowed several " -#~ "subsequential inline modifiers at the start of the pattern (e.g. ``'(?i)(?" -#~ "s)...'``). In verbose mode whitespaces and comments now are allowed " -#~ "before and between inline modifiers (e.g. ``'(?x) (?i) (?s)...'``)." -#~ msgstr "" -#~ "`bpo-30298 `__: Weaken the condition " -#~ "of deprecation warnings for inline modifiers. Now allowed several " -#~ "subsequential inline modifiers at the start of the pattern (e.g. ``'(?i)(?" -#~ "s)...'``). In verbose mode whitespaces and comments now are allowed " -#~ "before and between inline modifiers (e.g. ``'(?x) (?i) (?s)...'``)." - -#~ msgid "" -#~ "`bpo-29990 `__: Fix range checking in " -#~ "GB18030 decoder. Original patch by Ma Lin." -#~ msgstr "" -#~ "`bpo-29990 `__: Fix range checking in " -#~ "GB18030 decoder. Original patch by Ma Lin." - -#~ msgid "" -#~ "Revert `bpo-26293 `__ for zipfile " -#~ "breakage. See also `bpo-29094 `__." -#~ msgstr "" -#~ "Revert `bpo-26293 `__ for zipfile " -#~ "breakage. See also `bpo-29094 `__." - -#~ msgid "" -#~ "`bpo-30243 `__: Removed the __init__ " -#~ "methods of _json's scanner and encoder. Misusing them could cause memory " -#~ "leaks or crashes. Now scanner and encoder objects are completely " -#~ "initialized in the __new__ methods." -#~ msgstr "" -#~ "`bpo-30243 `__: Removed the __init__ " -#~ "methods of _json's scanner and encoder. Misusing them could cause memory " -#~ "leaks or crashes. Now scanner and encoder objects are completely " -#~ "initialized in the __new__ methods." - -#~ msgid "" -#~ "`bpo-30185 `__: Avoid " -#~ "KeyboardInterrupt tracebacks in forkserver helper process when Ctrl-C is " -#~ "received." -#~ msgstr "" -#~ "`bpo-30185 `__: Avoid " -#~ "KeyboardInterrupt tracebacks in forkserver helper process when Ctrl-C is " -#~ "received." - -#~ msgid "" -#~ "`bpo-28556 `__: Various updates to " -#~ "typing module: add typing.NoReturn type, use WrapperDescriptorType, minor " -#~ "bug-fixes. Original PRs by Jim Fasarakis-Hilliard and Ivan Levkivskyi." -#~ msgstr "" -#~ "`bpo-28556 `__: Various updates to " -#~ "typing module: add typing.NoReturn type, use WrapperDescriptorType, minor " -#~ "bug-fixes. Original PRs by Jim Fasarakis-Hilliard and Ivan Levkivskyi." - -#~ msgid "" -#~ "`bpo-30205 `__: Fix getsockname() for " -#~ "unbound AF_UNIX sockets on Linux." -#~ msgstr "" -#~ "`bpo-30205 `__: Fix getsockname() for " -#~ "unbound AF_UNIX sockets on Linux." - -#~ msgid "" -#~ "`bpo-30070 `__: Fixed leaks and " -#~ "crashes in errors handling in the parser module." -#~ msgstr "" -#~ "`bpo-30070 `__: Fixed leaks and " -#~ "crashes in errors handling in the parser module." - -#~ msgid "" -#~ "`bpo-30061 `__: Fixed crashes in " -#~ "IOBase methods __next__() and readlines() when readline() or __next__() " -#~ "respectively return non-sizeable object. Fixed possible other errors " -#~ "caused by not checking results of PyObject_Size(), PySequence_Size(), or " -#~ "PyMapping_Size()." -#~ msgstr "" -#~ "`bpo-30061 `__: Fixed crashes in " -#~ "IOBase methods __next__() and readlines() when readline() or __next__() " -#~ "respectively return non-sizeable object. Fixed possible other errors " -#~ "caused by not checking results of PyObject_Size(), PySequence_Size(), or " -#~ "PyMapping_Size()." - -#~ msgid "" -#~ "`bpo-30017 `__: Allowed calling the " -#~ "close() method of the zip entry writer object multiple times. Writing to " -#~ "a closed writer now always produces a ValueError." -#~ msgstr "" -#~ "`bpo-30017 `__: Allowed calling the " -#~ "close() method of the zip entry writer object multiple times. Writing to " -#~ "a closed writer now always produces a ValueError." - -#~ msgid "" -#~ "`bpo-30068 `__: _io._IOBase.readlines " -#~ "will check if it's closed first when hint is present." -#~ msgstr "" -#~ "`bpo-30068 `__: _io._IOBase.readlines " -#~ "will check if it's closed first when hint is present." - -#~ msgid "" -#~ "`bpo-29694 `__: Fixed race condition " -#~ "in pathlib mkdir with flags parents=True. Patch by Armin Rigo." -#~ msgstr "" -#~ "`bpo-29694 `__: Fixed race condition " -#~ "in pathlib mkdir with flags parents=True. Patch by Armin Rigo." - -#~ msgid "" -#~ "`bpo-29692 `__: Fixed arbitrary " -#~ "unchaining of RuntimeError exceptions in contextlib.contextmanager. " -#~ "Patch by Siddharth Velankar." -#~ msgstr "" -#~ "`bpo-29692 `__: Fixed arbitrary " -#~ "unchaining of RuntimeError exceptions in contextlib.contextmanager. " -#~ "Patch by Siddharth Velankar." - -#~ msgid "" -#~ "`bpo-29998 `__: Pickling and copying " -#~ "ImportError now preserves name and path attributes." -#~ msgstr "" -#~ "`bpo-29998 `__: Pickling and copying " -#~ "ImportError now preserves name and path attributes." - -#~ msgid "" -#~ "`bpo-29953 `__: Fixed memory leaks in " -#~ "the replace() method of datetime and time objects when pass out of bound " -#~ "fold argument." -#~ msgstr "" -#~ "`bpo-29953 `__: Fixed memory leaks in " -#~ "the replace() method of datetime and time objects when pass out of bound " -#~ "fold argument." - -#~ msgid "" -#~ "`bpo-29942 `__: Fix a crash in " -#~ "itertools.chain.from_iterable when encountering long runs of empty " -#~ "iterables." -#~ msgstr "" -#~ "`bpo-29942 `__: Fix a crash in " -#~ "itertools.chain.from_iterable when encountering long runs of empty " -#~ "iterables." - -#~ msgid "" -#~ "`bpo-27863 `__: Fixed multiple " -#~ "crashes in ElementTree caused by race conditions and wrong types." -#~ msgstr "" -#~ "`bpo-27863 `__: Fixed multiple " -#~ "crashes in ElementTree caused by race conditions and wrong types." - -#~ msgid "" -#~ "`bpo-28699 `__: Fixed a bug in pools " -#~ "in multiprocessing.pool that raising an exception at the very first of an " -#~ "iterable may swallow the exception or make the program hang. Patch by " -#~ "Davin Potts and Xiang Zhang." -#~ msgstr "" -#~ "`bpo-28699 `__: Fixed a bug in pools " -#~ "in multiprocessing.pool that raising an exception at the very first of an " -#~ "iterable may swallow the exception or make the program hang. Patch by " -#~ "Davin Potts and Xiang Zhang." - -#~ msgid "" -#~ "`bpo-25803 `__: Avoid incorrect " -#~ "errors raised by Path.mkdir(exist_ok=True) when the OS gives priority to " -#~ "errors such as EACCES over EEXIST." -#~ msgstr "" -#~ "`bpo-25803 `__: Avoid incorrect " -#~ "errors raised by Path.mkdir(exist_ok=True) when the OS gives priority to " -#~ "errors such as EACCES over EEXIST." - -#~ msgid "" -#~ "`bpo-29861 `__: Release references to " -#~ "tasks, their arguments and their results as soon as they are finished in " -#~ "multiprocessing.Pool." -#~ msgstr "" -#~ "`bpo-29861 `__: Release references to " -#~ "tasks, their arguments and their results as soon as they are finished in " -#~ "multiprocessing.Pool." - -#~ msgid "" -#~ "`bpo-29884 `__: faulthandler: Restore " -#~ "the old sigaltstack during teardown. Patch by Christophe Zeitouny." -#~ msgstr "" -#~ "`bpo-29884 `__: faulthandler: Restore " -#~ "the old sigaltstack during teardown. Patch by Christophe Zeitouny." - -#~ msgid "" -#~ "`bpo-25455 `__: Fixed crashes in repr " -#~ "of recursive buffered file-like objects." -#~ msgstr "" -#~ "`bpo-25455 `__: Fixed crashes in repr " -#~ "of recursive buffered file-like objects." - -#~ msgid "" -#~ "`bpo-29800 `__: Fix crashes in " -#~ "partial.__repr__ if the keys of partial.keywords are not strings. Patch " -#~ "by Michael Seifert." -#~ msgstr "" -#~ "`bpo-29800 `__: Fix crashes in " -#~ "partial.__repr__ if the keys of partial.keywords are not strings. Patch " -#~ "by Michael Seifert." - -#~ msgid "" -#~ "`bpo-29742 `__: get_extra_info() " -#~ "raises exception if get called on closed ssl transport. Patch by Nikolay " -#~ "Kim." -#~ msgstr "" -#~ "`bpo-29742 `__: get_extra_info() " -#~ "raises exception if get called on closed ssl transport. Patch by Nikolay " -#~ "Kim." - -#~ msgid "" -#~ "`bpo-8256 `__: Fixed possible failing " -#~ "or crashing input() if attributes \"encoding\" or \"errors\" of sys.stdin " -#~ "or sys.stdout are not set or are not strings." -#~ msgstr "" -#~ "`bpo-8256 `__: Fixed possible failing " -#~ "or crashing input() if attributes \"encoding\" or \"errors\" of sys.stdin " -#~ "or sys.stdout are not set or are not strings." - -#~ msgid "" -#~ "`bpo-28298 `__: Fix a bug that " -#~ "prevented array 'Q', 'L' and 'I' from accepting big intables (objects " -#~ "that have __int__) as elements. Patch by Oren Milman." -#~ msgstr "" -#~ "`bpo-28298 `__: Fix a bug that " -#~ "prevented array 'Q', 'L' and 'I' from accepting big intables (objects " -#~ "that have __int__) as elements. Patch by Oren Milman." - -#~ msgid "" -#~ "`bpo-28231 `__: The zipfile module " -#~ "now accepts path-like objects for external paths." -#~ msgstr "" -#~ "`bpo-28231 `__: The zipfile module " -#~ "now accepts path-like objects for external paths." - -#~ msgid "" -#~ "`bpo-26915 `__: index() and count() " -#~ "methods of collections.abc.Sequence now check identity before checking " -#~ "equality when do comparisons." -#~ msgstr "" -#~ "`bpo-26915 `__: index() and count() " -#~ "methods of collections.abc.Sequence now check identity before checking " -#~ "equality when do comparisons." - -#~ msgid "" -#~ "`bpo-29615 `__: " -#~ "SimpleXMLRPCDispatcher no longer chains KeyError (or any other exception) " -#~ "to exception(s) raised in the dispatched methods. Patch by Petr Motejlek." -#~ msgstr "" -#~ "`bpo-29615 `__: " -#~ "SimpleXMLRPCDispatcher no longer chains KeyError (or any other exception) " -#~ "to exception(s) raised in the dispatched methods. Patch by Petr Motejlek." - -#~ msgid "" -#~ "`bpo-30177 `__: path." -#~ "resolve(strict=False) no longer cuts the path after the first element not " -#~ "present in the filesystem. Patch by Antoine Pietri." -#~ msgstr "" -#~ "`bpo-30177 `__: path." -#~ "resolve(strict=False) no longer cuts the path after the first element not " -#~ "present in the filesystem. Patch by Antoine Pietri." - -#~ msgid "IDLE" -#~ msgstr "IDLE" - -#~ msgid "" -#~ "`bpo-15786 `__: Fix several problems " -#~ "with IDLE's autocompletion box. The following should now work: clicking " -#~ "on selection box items; using the scrollbar; selecting an item by hitting " -#~ "Return. Hangs on MacOSX should no longer happen. Patch by Louie Lu." -#~ msgstr "" -#~ "`bpo-15786 `__: Fix several problems " -#~ "with IDLE's autocompletion box. The following should now work: clicking " -#~ "on selection box items; using the scrollbar; selecting an item by hitting " -#~ "Return. Hangs on MacOSX should no longer happen. Patch by Louie Lu." - -#~ msgid "" -#~ "`bpo-25514 `__: Add doc subsubsection " -#~ "about IDLE failure to start. Popup no-connection message directs users to " -#~ "this section." -#~ msgstr "" -#~ "`bpo-25514 `__: Add doc subsubsection " -#~ "about IDLE failure to start. Popup no-connection message directs users to " -#~ "this section." - -#~ msgid "" -#~ "`bpo-30642 `__: Fix reference leaks " -#~ "in IDLE tests. Patches by Louie Lu and Terry Jan Reedy." -#~ msgstr "" -#~ "`bpo-30642 `__: Fix reference leaks " -#~ "in IDLE tests. Patches by Louie Lu and Terry Jan Reedy." - -#~ msgid "" -#~ "`bpo-30495 `__: Add docstrings for " -#~ "textview.py and use PEP8 names. Patches by Cheryl Sabella and Terry Jan " -#~ "Reedy." -#~ msgstr "" -#~ "`bpo-30495 `__: Add docstrings for " -#~ "textview.py and use PEP8 names. Patches by Cheryl Sabella and Terry Jan " -#~ "Reedy." - -#~ msgid "" -#~ "`bpo-30290 `__: Help-about: use pep8 " -#~ "names and add tests. Increase coverage to 100%. Patches by Louie Lu, " -#~ "Cheryl Sabella, and Terry Jan Reedy." -#~ msgstr "" -#~ "`bpo-30290 `__: Help-about: use pep8 " -#~ "names and add tests. Increase coverage to 100%. Patches by Louie Lu, " -#~ "Cheryl Sabella, and Terry Jan Reedy." - -#~ msgid "" -#~ "`bpo-30303 `__: Add _utest option to " -#~ "textview; add new tests. Increase coverage to 100%. Patches by Louie Lu " -#~ "and Terry Jan Reedy." -#~ msgstr "" -#~ "`bpo-30303 `__: Add _utest option to " -#~ "textview; add new tests. Increase coverage to 100%. Patches by Louie Lu " -#~ "and Terry Jan Reedy." - -#~ msgid "C API" -#~ msgstr "API C" - -#~ msgid "" -#~ "`bpo-27867 `__: Function " -#~ "PySlice_GetIndicesEx() no longer replaced with a macro if Py_LIMITED_API " -#~ "is not set." -#~ msgstr "" -#~ "`bpo-27867 `__: Function " -#~ "PySlice_GetIndicesEx() no longer replaced with a macro if Py_LIMITED_API " -#~ "is not set." - -#~ msgid "Build" -#~ msgstr "Build" - -#~ msgid "" -#~ "`bpo-29941 `__: Add ``--with-" -#~ "assertions`` configure flag to explicitly enable C ``assert()`` checks. " -#~ "Defaults to off. ``--with-pydebug`` implies ``--with-assertions``." -#~ msgstr "" -#~ "`bpo-29941 `__: Add ``--with-" -#~ "assertions`` configure flag to explicitly enable C ``assert()`` checks. " -#~ "Defaults to off. ``--with-pydebug`` implies ``--with-assertions``." - -#~ msgid "" -#~ "`bpo-28787 `__: Fix out-of-tree " -#~ "builds of Python when configured with ``--with--dtrace``." -#~ msgstr "" -#~ "`bpo-28787 `__: Fix out-of-tree " -#~ "builds of Python when configured with ``--with--dtrace``." - -#~ msgid "" -#~ "`bpo-29243 `__: Prevent unnecessary " -#~ "rebuilding of Python during ``make test``, ``make install`` and some " -#~ "other make targets when configured with ``--enable-optimizations``." -#~ msgstr "" -#~ "`bpo-29243 `__: Prevent unnecessary " -#~ "rebuilding of Python during ``make test``, ``make install`` and some " -#~ "other make targets when configured with ``--enable-optimizations``." - -#~ msgid "" -#~ "`bpo-23404 `__: Don't regenerate " -#~ "generated files based on file modification time anymore: the action is " -#~ "now explicit. Replace ``make touch`` with ``make regen-all``." -#~ msgstr "" -#~ "`bpo-23404 `__: Don't regenerate " -#~ "generated files based on file modification time anymore: the action is " -#~ "now explicit. Replace ``make touch`` with ``make regen-all``." - -#~ msgid "" -#~ "`bpo-29643 `__: Fix ``--enable-" -#~ "optimization`` didn't work." -#~ msgstr "" -#~ "`bpo-29643 `__: Fix ``--enable-" -#~ "optimization`` didn't work." - -#~ msgid "Documentation" -#~ msgstr "Documentation" - -#~ msgid "" -#~ "`bpo-30176 `__: Add missing attribute " -#~ "related constants in curses documentation." -#~ msgstr "" -#~ "`bpo-30176 `__: Add missing attribute " -#~ "related constants in curses documentation." - -#~ msgid "" -#~ "`bpo-30052 `__: the link targets for :" -#~ "func:`bytes` and :func:`bytearray` are now their respective type " -#~ "definitions, rather than the corresponding builtin function entries. Use :" -#~ "ref:`bytes ` and :ref:`bytearray ` to " -#~ "reference the latter." -#~ msgstr "" -#~ "`bpo-30052 `__: the link targets for :" -#~ "func:`bytes` and :func:`bytearray` are now their respective type " -#~ "definitions, rather than the corresponding builtin function entries. Use :" -#~ "ref:`bytes ` and :ref:`bytearray ` to " -#~ "reference the latter." - -#~ msgid "" -#~ "In order to ensure this and future cross-reference updates are applied " -#~ "automatically, the daily documentation builds now disable the default " -#~ "output caching features in Sphinx." -#~ msgstr "" -#~ "Pour s'assurer que les mises à jour des références croisées soient " -#~ "appliquées automatiquement, la génération de documentations désactive le " -#~ "cache par défaut de sphinx." - -#~ msgid "" -#~ "`bpo-26985 `__: Add missing info of " -#~ "code object in inspect documentation." -#~ msgstr "" -#~ "`bpo-26985 `__: Add missing info of " -#~ "code object in inspect documentation." - -#~ msgid "Tools/Demos" -#~ msgstr "Outils / Démos" - -#~ msgid "" -#~ "`bpo-29367 `__: python-gdb.py now " -#~ "supports also ``method-wrapper`` (``wrapperobject``) objects." -#~ msgstr "" -#~ "`bpo-29367 `__: python-gdb.py now " -#~ "supports also ``method-wrapper`` (``wrapperobject``) objects." - -#~ msgid "Tests" -#~ msgstr "Tests" - -#~ msgid "" -#~ "`bpo-30357 `__: test_thread: setUp() " -#~ "now uses support.threading_setup() and support.threading_cleanup() to " -#~ "wait until threads complete to avoid random side effects on following " -#~ "tests. Initial patch written by Grzegorz Grzywacz." -#~ msgstr "" -#~ "`bpo-30357 `__: test_thread: setUp() " -#~ "now uses support.threading_setup() and support.threading_cleanup() to " -#~ "wait until threads complete to avoid random side effects on following " -#~ "tests. Initial patch written by Grzegorz Grzywacz." - -#~ msgid "" -#~ "`bpo-30197 `__: Enhanced functions " -#~ "swap_attr() and swap_item() in the test.support module. They now work " -#~ "when delete replaced attribute or item inside the with statement. The " -#~ "old value of the attribute or item (or None if it doesn't exist) now will " -#~ "be assigned to the target of the \"as\" clause, if there is one." -#~ msgstr "" -#~ "`bpo-30197 `__: Enhanced functions " -#~ "swap_attr() and swap_item() in the test.support module. They now work " -#~ "when delete replaced attribute or item inside the with statement. The " -#~ "old value of the attribute or item (or None if it doesn't exist) now will " -#~ "be assigned to the target of the \"as\" clause, if there is one." - -#~ msgid "Windows" -#~ msgstr "Windows" - -#~ msgid "" -#~ "`bpo-30687 `__: Locate msbuild.exe on " -#~ "Windows when building rather than vcvarsall.bat" -#~ msgstr "" -#~ "`bpo-30687 `__: Locate msbuild.exe on " -#~ "Windows when building rather than vcvarsall.bat" - -#~ msgid "" -#~ "`bpo-30450 `__: The build process on " -#~ "Windows no longer depends on Subversion, instead pulling external code " -#~ "from GitHub via a Python script. If Python 3.6 is not found on the " -#~ "system (via ``py -3.6``), NuGet is used to download a copy of 32-bit " -#~ "Python." -#~ msgstr "" -#~ "`bpo-30450 `__: The build process on " -#~ "Windows no longer depends on Subversion, instead pulling external code " -#~ "from GitHub via a Python script. If Python 3.6 is not found on the " -#~ "system (via ``py -3.6``), NuGet is used to download a copy of 32-bit " -#~ "Python." - -#~ msgid "Python 3.6.1" -#~ msgstr "Python 3.6.1" - -#~ msgid "*Release date: 2017-03-21*" -#~ msgstr "*Release date: 2017-03-21*" - -#~ msgid "" -#~ "`bpo-29723 `__: The ``sys.path[0]`` " -#~ "initialization change for `bpo-29139 `__ caused a regression by revealing an inconsistency in how " -#~ "sys.path is initialized when executing ``__main__`` from a zipfile, " -#~ "directory, or other import location. The interpreter now consistently " -#~ "avoids ever adding the import location's parent directory to ``sys." -#~ "path``, and ensures no other ``sys.path`` entries are inadvertently " -#~ "modified when inserting the import location named on the command line." -#~ msgstr "" -#~ "`bpo-29723 `__: The ``sys.path[0]`` " -#~ "initialization change for `bpo-29139 `__ caused a regression by revealing an inconsistency in how " -#~ "sys.path is initialized when executing ``__main__`` from a zipfile, " -#~ "directory, or other import location. The interpreter now consistently " -#~ "avoids ever adding the import location's parent directory to ``sys." -#~ "path``, and ensures no other ``sys.path`` entries are inadvertently " -#~ "modified when inserting the import location named on the command line." - -#~ msgid "" -#~ "`bpo-27593 `__: fix format of git " -#~ "information used in sys.version" -#~ msgstr "" -#~ "`bpo-27593 `__: fix format of git " -#~ "information used in sys.version" - -#~ msgid "Python 3.6.1 release candidate 1" -#~ msgstr "Python 3.6.1 release candidate 1" - -#~ msgid "*Release date: 2017-03-04*" -#~ msgstr "*Date de sortie : 2017-03-04*" - -#~ msgid "" -#~ "`bpo-28893 `__: Set correct __cause__ " -#~ "for errors about invalid awaitables returned from __aiter__ and __anext__." -#~ msgstr "" -#~ "`bpo-28893 `__: Set correct __cause__ " -#~ "for errors about invalid awaitables returned from __aiter__ and __anext__." - -#~ msgid "" -#~ "`bpo-29683 `__: Fixes to memory " -#~ "allocation in _PyCode_SetExtra. Patch by Brian Coleman." -#~ msgstr "" -#~ "`bpo-29683 `__: Fixes to memory " -#~ "allocation in _PyCode_SetExtra. Patch by Brian Coleman." - -#~ msgid "" -#~ "`bpo-29684 `__: Fix minor regression " -#~ "of PyEval_CallObjectWithKeywords. It should raise TypeError when kwargs " -#~ "is not a dict. But it might cause segv when args=NULL and kwargs is not " -#~ "a dict." -#~ msgstr "" -#~ "`bpo-29684 `__: Fix minor regression " -#~ "of PyEval_CallObjectWithKeywords. It should raise TypeError when kwargs " -#~ "is not a dict. But it might cause segv when args=NULL and kwargs is not " -#~ "a dict." - -#~ msgid "" -#~ "`bpo-28598 `__: Support __rmod__ for " -#~ "subclasses of str being called before str.__mod__. Patch by Martijn " -#~ "Pieters." -#~ msgstr "" -#~ "`bpo-28598 `__: Support __rmod__ for " -#~ "subclasses of str being called before str.__mod__. Patch by Martijn " -#~ "Pieters." - -#~ msgid "" -#~ "`bpo-29607 `__: Fix stack_effect " -#~ "computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh." -#~ msgstr "" -#~ "`bpo-29607 `__: Fix stack_effect " -#~ "computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh." - -#~ msgid "" -#~ "`bpo-29602 `__: Fix incorrect " -#~ "handling of signed zeros in complex constructor for complex subclasses " -#~ "and for inputs having a __complex__ method. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-29602 `__: Fix incorrect " -#~ "handling of signed zeros in complex constructor for complex subclasses " -#~ "and for inputs having a __complex__ method. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-29347 `__: Fixed possibly " -#~ "dereferencing undefined pointers when creating weakref objects." -#~ msgstr "" -#~ "`bpo-29347 `__: Fixed possibly " -#~ "dereferencing undefined pointers when creating weakref objects." - -#~ msgid "" -#~ "`bpo-29438 `__: Fixed use-after-free " -#~ "problem in key sharing dict." -#~ msgstr "" -#~ "`bpo-29438 `__: Fixed use-after-free " -#~ "problem in key sharing dict." - -#~ msgid "" -#~ "`bpo-29319 `__: Prevent " -#~ "RunMainFromImporter overwriting sys.path[0]." -#~ msgstr "" -#~ "`bpo-29319 `__: Prevent " -#~ "RunMainFromImporter overwriting sys.path[0]." - -#~ msgid "" -#~ "`bpo-29337 `__: Fixed possible " -#~ "BytesWarning when compare the code objects. Warnings could be emitted at " -#~ "compile time." -#~ msgstr "" -#~ "`bpo-29337 `__: Fixed possible " -#~ "BytesWarning when compare the code objects. Warnings could be emitted at " -#~ "compile time." - -#~ msgid "" -#~ "`bpo-29327 `__: Fixed a crash when " -#~ "pass the iterable keyword argument to sorted()." -#~ msgstr "" -#~ "`bpo-29327 `__: Fixed a crash when " -#~ "pass the iterable keyword argument to sorted()." - -#~ msgid "" -#~ "`bpo-29034 `__: Fix memory leak and " -#~ "use-after-free in os module (path_converter)." -#~ msgstr "" -#~ "`bpo-29034 `__: Fix memory leak and " -#~ "use-after-free in os module (path_converter)." - -#~ msgid "" -#~ "`bpo-29159 `__: Fix regression in " -#~ "bytes(x) when x.__index__() raises Exception." -#~ msgstr "" -#~ "`bpo-29159 `__: Fix regression in " -#~ "bytes(x) when x.__index__() raises Exception." - -#~ msgid "" -#~ "`bpo-28932 `__: Do not include if it does not exist." -#~ msgstr "" -#~ "`bpo-28932 `__: Do not include if it does not exist." - -#~ msgid "" -#~ "`bpo-25677 `__: Correct the " -#~ "positioning of the syntax error caret for indented blocks. Based on " -#~ "patch by Michael Layzell." -#~ msgstr "" -#~ "`bpo-25677 `__: Correct the " -#~ "positioning of the syntax error caret for indented blocks. Based on " -#~ "patch by Michael Layzell." - -#~ msgid "" -#~ "`bpo-29000 `__: Fixed bytes " -#~ "formatting of octals with zero padding in alternate form." -#~ msgstr "" -#~ "`bpo-29000 `__: Fixed bytes " -#~ "formatting of octals with zero padding in alternate form." - -#~ msgid "" -#~ "`bpo-26919 `__: On Android, operating " -#~ "system data is now always encoded/decoded to/from UTF-8, instead of the " -#~ "locale encoding to avoid inconsistencies with os.fsencode() and os." -#~ "fsdecode() which are already using UTF-8." -#~ msgstr "" -#~ "`bpo-26919 `__: On Android, operating " -#~ "system data is now always encoded/decoded to/from UTF-8, instead of the " -#~ "locale encoding to avoid inconsistencies with os.fsencode() and os." -#~ "fsdecode() which are already using UTF-8." - -#~ msgid "" -#~ "`bpo-28991 `__: functools." -#~ "lru_cache() was susceptible to an obscure reentrancy bug triggerable by a " -#~ "monkey-patched len() function." -#~ msgstr "" -#~ "`bpo-28991 `__: functools." -#~ "lru_cache() was susceptible to an obscure reentrancy bug triggerable by a " -#~ "monkey-patched len() function." - -#~ msgid "" -#~ "`bpo-28739 `__: f-string expressions " -#~ "are no longer accepted as docstrings and by ast.literal_eval() even if " -#~ "they do not include expressions." -#~ msgstr "" -#~ "`bpo-28739 `__: f-string expressions " -#~ "are no longer accepted as docstrings and by ast.literal_eval() even if " -#~ "they do not include expressions." - -#~ msgid "" -#~ "`bpo-28512 `__: Fixed setting the " -#~ "offset attribute of SyntaxError by PyErr_SyntaxLocationEx() and " -#~ "PyErr_SyntaxLocationObject()." -#~ msgstr "" -#~ "`bpo-28512 `__: Fixed setting the " -#~ "offset attribute of SyntaxError by PyErr_SyntaxLocationEx() and " -#~ "PyErr_SyntaxLocationObject()." - -#~ msgid "" -#~ "`bpo-28918 `__: Fix the cross " -#~ "compilation of xxlimited when Python has been built with Py_DEBUG defined." -#~ msgstr "" -#~ "`bpo-28918 `__: Fix the cross " -#~ "compilation of xxlimited when Python has been built with Py_DEBUG defined." - -#~ msgid "" -#~ "`bpo-28731 `__: Optimize " -#~ "_PyDict_NewPresized() to create correct size dict. Improve speed of dict " -#~ "literal with constant keys up to 30%." -#~ msgstr "" -#~ "`bpo-28731 `__: Optimize " -#~ "_PyDict_NewPresized() to create correct size dict. Improve speed of dict " -#~ "literal with constant keys up to 30%." - -#~ msgid "" -#~ "`bpo-29169 `__: Update zlib to 1.2.11." -#~ msgstr "" -#~ "`bpo-29169 `__: Update zlib to 1.2.11." - -#~ msgid "" -#~ "`bpo-29623 `__: Allow use of path-" -#~ "like object as a single argument in ConfigParser.read(). Patch by David " -#~ "Ellis." -#~ msgstr "" -#~ "`bpo-29623 `__: Allow use of path-" -#~ "like object as a single argument in ConfigParser.read(). Patch by David " -#~ "Ellis." - -#~ msgid "" -#~ "`bpo-28963 `__: Fix out of bound " -#~ "iteration in asyncio.Future.remove_done_callback implemented in C." -#~ msgstr "" -#~ "`bpo-28963 `__: Fix out of bound " -#~ "iteration in asyncio.Future.remove_done_callback implemented in C." - -#~ msgid "" -#~ "`bpo-29704 `__: asyncio.subprocess." -#~ "SubprocessStreamProtocol no longer closes before all pipes are closed." -#~ msgstr "" -#~ "`bpo-29704 `__: asyncio.subprocess." -#~ "SubprocessStreamProtocol no longer closes before all pipes are closed." - -#~ msgid "" -#~ "`bpo-29271 `__: Fix Task.current_task " -#~ "and Task.all_tasks implemented in C to accept None argument as their pure " -#~ "Python implementation." -#~ msgstr "" -#~ "`bpo-29271 `__: Fix Task.current_task " -#~ "and Task.all_tasks implemented in C to accept None argument as their pure " -#~ "Python implementation." - -#~ msgid "" -#~ "`bpo-29703 `__: Fix asyncio to " -#~ "support instantiation of new event loops in child processes." -#~ msgstr "" -#~ "`bpo-29703 `__: Fix asyncio to " -#~ "support instantiation of new event loops in child processes." - -#~ msgid "" -#~ "`bpo-29376 `__: Fix assertion error " -#~ "in threading._DummyThread.is_alive()." -#~ msgstr "" -#~ "`bpo-29376 `__: Fix assertion error " -#~ "in threading._DummyThread.is_alive()." - -#~ msgid "" -#~ "`bpo-28624 `__: Add a test that " -#~ "checks that cwd parameter of Popen() accepts PathLike objects. Patch by " -#~ "Sayan Chowdhury." -#~ msgstr "" -#~ "`bpo-28624 `__: Add a test that " -#~ "checks that cwd parameter of Popen() accepts PathLike objects. Patch by " -#~ "Sayan Chowdhury." - -#~ msgid "" -#~ "`bpo-28518 `__: Start a transaction " -#~ "implicitly before a DML statement. Patch by Aviv Palivoda." -#~ msgstr "" -#~ "`bpo-28518 `__: Start a transaction " -#~ "implicitly before a DML statement. Patch by Aviv Palivoda." - -#~ msgid "" -#~ "`bpo-29532 `__: Altering a kwarg " -#~ "dictionary passed to functools.partial() no longer affects a partial " -#~ "object after creation." -#~ msgstr "" -#~ "`bpo-29532 `__: Altering a kwarg " -#~ "dictionary passed to functools.partial() no longer affects a partial " -#~ "object after creation." - -#~ msgid "" -#~ "`bpo-29110 `__: Fix file object leak " -#~ "in aifc.open() when file is given as a filesystem path and is not in " -#~ "valid AIFF format. Patch by Anthony Zhang." -#~ msgstr "" -#~ "`bpo-29110 `__: Fix file object leak " -#~ "in aifc.open() when file is given as a filesystem path and is not in " -#~ "valid AIFF format. Patch by Anthony Zhang." - -#~ msgid "" -#~ "`bpo-28556 `__: Various updates to " -#~ "typing module: typing.Counter, typing.ChainMap, improved ABC caching, " -#~ "etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi, Manuel Krebber, and " -#~ "Łukasz Langa." -#~ msgstr "" -#~ "`bpo-28556 `__: Various updates to " -#~ "typing module: typing.Counter, typing.ChainMap, improved ABC caching, " -#~ "etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi, Manuel Krebber, and " -#~ "Łukasz Langa." - -#~ msgid "" -#~ "`bpo-29100 `__: Fix datetime." -#~ "fromtimestamp() regression introduced in Python 3.6.0: check minimum and " -#~ "maximum years." -#~ msgstr "" -#~ "`bpo-29100 `__: Fix datetime." -#~ "fromtimestamp() regression introduced in Python 3.6.0: check minimum and " -#~ "maximum years." - -#~ msgid "" -#~ "`bpo-29519 `__: Fix weakref spewing " -#~ "exceptions during interpreter shutdown when used with a rare combination " -#~ "of multiprocessing and custom codecs." -#~ msgstr "" -#~ "`bpo-29519 `__: Fix weakref spewing " -#~ "exceptions during interpreter shutdown when used with a rare combination " -#~ "of multiprocessing and custom codecs." - -#~ msgid "" -#~ "`bpo-29416 `__: Prevent infinite loop " -#~ "in pathlib.Path.mkdir" -#~ msgstr "" -#~ "`bpo-29416 `__: Prevent infinite loop " -#~ "in pathlib.Path.mkdir" - -#~ msgid "" -#~ "`bpo-29444 `__: Fixed out-of-bounds " -#~ "buffer access in the group() method of the match object. Based on patch " -#~ "by WGH." -#~ msgstr "" -#~ "`bpo-29444 `__: Fixed out-of-bounds " -#~ "buffer access in the group() method of the match object. Based on patch " -#~ "by WGH." - -#~ msgid "" -#~ "`bpo-29335 `__: Fix subprocess.Popen." -#~ "wait() when the child process has exited to a stopped instead of " -#~ "terminated state (ex: when under ptrace)." -#~ msgstr "" -#~ "`bpo-29335 `__: Fix subprocess.Popen." -#~ "wait() when the child process has exited to a stopped instead of " -#~ "terminated state (ex: when under ptrace)." - -#~ msgid "" -#~ "`bpo-29290 `__: Fix a regression in " -#~ "argparse that help messages would wrap at non-breaking spaces." -#~ msgstr "" -#~ "`bpo-29290 `__: Fix a regression in " -#~ "argparse that help messages would wrap at non-breaking spaces." - -#~ msgid "" -#~ "`bpo-28735 `__: Fixed the comparison " -#~ "of mock.MagickMock with mock.ANY." -#~ msgstr "" -#~ "`bpo-28735 `__: Fixed the comparison " -#~ "of mock.MagickMock with mock.ANY." - -#~ msgid "" -#~ "`bpo-29316 `__: Restore the " -#~ "provisional status of typing module, add corresponding note to " -#~ "documentation. Patch by Ivan L." -#~ msgstr "" -#~ "`bpo-29316 `__: Restore the " -#~ "provisional status of typing module, add corresponding note to " -#~ "documentation. Patch by Ivan L." - -#~ msgid "" -#~ "`bpo-29219 `__: Fixed infinite " -#~ "recursion in the repr of uninitialized ctypes.CDLL instances." -#~ msgstr "" -#~ "`bpo-29219 `__: Fixed infinite " -#~ "recursion in the repr of uninitialized ctypes.CDLL instances." - -#~ msgid "" -#~ "`bpo-29011 `__: Fix an important " -#~ "omission by adding Deque to the typing module." -#~ msgstr "" -#~ "`bpo-29011 `__: Fix an important " -#~ "omission by adding Deque to the typing module." - -#~ msgid "" -#~ "`bpo-28969 `__: Fixed race condition " -#~ "in C implementation of functools.lru_cache. KeyError could be raised when " -#~ "cached function with full cache was simultaneously called from differen " -#~ "threads with the same uncached arguments." -#~ msgstr "" -#~ "`bpo-28969 `__: Fixed race condition " -#~ "in C implementation of functools.lru_cache. KeyError could be raised when " -#~ "cached function with full cache was simultaneously called from differen " -#~ "threads with the same uncached arguments." - -#~ msgid "" -#~ "`bpo-29142 `__: In urllib.request, " -#~ "suffixes in no_proxy environment variable with leading dots could match " -#~ "related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan " -#~ "Oberkirch." -#~ msgstr "" -#~ "`bpo-29142 `__: In urllib.request, " -#~ "suffixes in no_proxy environment variable with leading dots could match " -#~ "related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan " -#~ "Oberkirch." - -#~ msgid "" -#~ "`bpo-28961 `__: Fix unittest.mock." -#~ "_Call helper: don't ignore the name parameter anymore. Patch written by " -#~ "Jiajun Huang." -#~ msgstr "" -#~ "`bpo-28961 `__: Fix unittest.mock." -#~ "_Call helper: don't ignore the name parameter anymore. Patch written by " -#~ "Jiajun Huang." - -#~ msgid "" -#~ "`bpo-29203 `__: functools." -#~ "lru_cache() now respects PEP 468 and preserves the order of keyword " -#~ "arguments. f(a=1, b=2) is now cached separately from f(b=2, a=1) since " -#~ "both calls could potentially give different results." -#~ msgstr "" -#~ "`bpo-29203 `__: functools." -#~ "lru_cache() now respects PEP 468 and preserves the order of keyword " -#~ "arguments. f(a=1, b=2) is now cached separately from f(b=2, a=1) since " -#~ "both calls could potentially give different results." - -#~ msgid "" -#~ "`bpo-15812 `__: inspect." -#~ "getframeinfo() now correctly shows the first line of a context. Patch by " -#~ "Sam Breese." -#~ msgstr "" -#~ "`bpo-15812 `__: inspect." -#~ "getframeinfo() now correctly shows the first line of a context. Patch by " -#~ "Sam Breese." - -#~ msgid "" -#~ "`bpo-29094 `__: Offsets in a ZIP file " -#~ "created with extern file object and modes \"w\" and \"x\" now are " -#~ "relative to the start of the file." -#~ msgstr "" -#~ "`bpo-29094 `__: Offsets in a ZIP file " -#~ "created with extern file object and modes \"w\" and \"x\" now are " -#~ "relative to the start of the file." - -#~ msgid "" -#~ "`bpo-29085 `__: Allow random.Random." -#~ "seed() to use high quality OS randomness rather than the pid and time." -#~ msgstr "" -#~ "`bpo-29085 `__: Allow random.Random." -#~ "seed() to use high quality OS randomness rather than the pid and time." - -#~ msgid "" -#~ "`bpo-29061 `__: Fixed bug in secrets." -#~ "randbelow() which would hang when given a negative input. Patch by " -#~ "Brendan Donegan." -#~ msgstr "" -#~ "`bpo-29061 `__: Fixed bug in secrets." -#~ "randbelow() which would hang when given a negative input. Patch by " -#~ "Brendan Donegan." - -#~ msgid "" -#~ "`bpo-29079 `__: Prevent infinite loop " -#~ "in pathlib.resolve() on Windows" -#~ msgstr "" -#~ "`bpo-29079 `__: Prevent infinite loop " -#~ "in pathlib.resolve() on Windows" - -#~ msgid "" -#~ "`bpo-13051 `__: Fixed recursion " -#~ "errors in large or resized curses.textpad.Textbox. Based on patch by " -#~ "Tycho Andersen." -#~ msgstr "" -#~ "`bpo-13051 `__: Fixed recursion " -#~ "errors in large or resized curses.textpad.Textbox. Based on patch by " -#~ "Tycho Andersen." - -#~ msgid "" -#~ "`bpo-29119 `__: Fix weakrefs in the " -#~ "pure python version of collections.OrderedDict move_to_end() method. " -#~ "Contributed by Andra Bogildea." -#~ msgstr "" -#~ "`bpo-29119 `__: Fix weakrefs in the " -#~ "pure python version of collections.OrderedDict move_to_end() method. " -#~ "Contributed by Andra Bogildea." - -#~ msgid "" -#~ "`bpo-9770 `__: curses.ascii predicates " -#~ "now work correctly with negative integers." -#~ msgstr "" -#~ "`bpo-9770 `__: curses.ascii predicates " -#~ "now work correctly with negative integers." - -#~ msgid "" -#~ "`bpo-28427 `__: old keys should not " -#~ "remove new values from WeakValueDictionary when collecting from another " -#~ "thread." -#~ msgstr "" -#~ "`bpo-28427 `__: old keys should not " -#~ "remove new values from WeakValueDictionary when collecting from another " -#~ "thread." - -#~ msgid "" -#~ "`bpo-28923 `__: Remove editor " -#~ "artifacts from Tix.py." -#~ msgstr "" -#~ "`bpo-28923 `__: Remove editor " -#~ "artifacts from Tix.py." - -#~ msgid "" -#~ "`bpo-29055 `__: Neaten-up empty " -#~ "population error on random.choice() by suppressing the upstream exception." -#~ msgstr "" -#~ "`bpo-29055 `__: Neaten-up empty " -#~ "population error on random.choice() by suppressing the upstream exception." - -#~ msgid "" -#~ "`bpo-28871 `__: Fixed a crash when " -#~ "deallocate deep ElementTree." -#~ msgstr "" -#~ "`bpo-28871 `__: Fixed a crash when " -#~ "deallocate deep ElementTree." - -#~ msgid "" -#~ "`bpo-19542 `__: Fix bugs in " -#~ "WeakValueDictionary.setdefault() and WeakValueDictionary.pop() when a GC " -#~ "collection happens in another thread." -#~ msgstr "" -#~ "`bpo-19542 `__: Fix bugs in " -#~ "WeakValueDictionary.setdefault() and WeakValueDictionary.pop() when a GC " -#~ "collection happens in another thread." - -#~ msgid "" -#~ "`bpo-20191 `__: Fixed a crash in " -#~ "resource.prlimit() when passing a sequence that doesn't own its elements " -#~ "as limits." -#~ msgstr "" -#~ "`bpo-20191 `__: Fixed a crash in " -#~ "resource.prlimit() when passing a sequence that doesn't own its elements " -#~ "as limits." - -#~ msgid "" -#~ "`bpo-28779 `__: multiprocessing." -#~ "set_forkserver_preload() would crash the forkserver process if a " -#~ "preloaded module instantiated some multiprocessing objects such as locks." -#~ msgstr "" -#~ "`bpo-28779 `__: multiprocessing." -#~ "set_forkserver_preload() would crash the forkserver process if a " -#~ "preloaded module instantiated some multiprocessing objects such as locks." - -#~ msgid "" -#~ "`bpo-28847 `__: dbm.dumb now supports " -#~ "reading read-only files and no longer writes the index file when it is " -#~ "not changed." -#~ msgstr "" -#~ "`bpo-28847 `__: dbm.dumb now supports " -#~ "reading read-only files and no longer writes the index file when it is " -#~ "not changed." - -#~ msgid "" -#~ "`bpo-26937 `__: The chown() method of " -#~ "the tarfile.TarFile class does not fail now when the grp module cannot be " -#~ "imported, as for example on Android platforms." -#~ msgstr "" -#~ "`bpo-26937 `__: The chown() method of " -#~ "the tarfile.TarFile class does not fail now when the grp module cannot be " -#~ "imported, as for example on Android platforms." - -#~ msgid "" -#~ "`bpo-29071 `__: IDLE colors f-string " -#~ "prefixes (but not invalid ur prefixes)." -#~ msgstr "" -#~ "`bpo-29071 `__: IDLE colors f-string " -#~ "prefixes (but not invalid ur prefixes)." - -#~ msgid "" -#~ "`bpo-28572 `__: Add 10% to coverage " -#~ "of IDLE's test_configdialog. Update and augment description of the " -#~ "configuration system." -#~ msgstr "" -#~ "`bpo-28572 `__: Add 10% to coverage " -#~ "of IDLE's test_configdialog. Update and augment description of the " -#~ "configuration system." - -#~ msgid "" -#~ "`bpo-29579 `__: Removes readme.txt " -#~ "from the installer" -#~ msgstr "" -#~ "`bpo-29579 `__: Removes readme.txt " -#~ "from the installer" - -#~ msgid "" -#~ "`bpo-29326 `__: Ignores blank lines " -#~ "in ._pth files (Patch by Alexey Izbyshev)" -#~ msgstr "" -#~ "`bpo-29326 `__: Ignores blank lines " -#~ "in ._pth files (Patch by Alexey Izbyshev)" - -#~ msgid "" -#~ "`bpo-28164 `__: Correctly handle " -#~ "special console filenames (patch by Eryk Sun)" -#~ msgstr "" -#~ "`bpo-28164 `__: Correctly handle " -#~ "special console filenames (patch by Eryk Sun)" - -#~ msgid "" -#~ "`bpo-29409 `__: Implement PEP 529 for " -#~ "io.FileIO (Patch by Eryk Sun)" -#~ msgstr "" -#~ "`bpo-29409 `__: Implement PEP 529 for " -#~ "io.FileIO (Patch by Eryk Sun)" - -#~ msgid "" -#~ "`bpo-29392 `__: Prevent crash when " -#~ "passing invalid arguments into msvcrt module." -#~ msgstr "" -#~ "`bpo-29392 `__: Prevent crash when " -#~ "passing invalid arguments into msvcrt module." - -#~ msgid "" -#~ "`bpo-25778 `__: winreg does not " -#~ "truncate string correctly (Patch by Eryk Sun)" -#~ msgstr "" -#~ "`bpo-25778 `__: winreg does not " -#~ "truncate string correctly (Patch by Eryk Sun)" - -#~ msgid "" -#~ "`bpo-28896 `__: Deprecate " -#~ "WindowsRegistryFinder and disable it by default." -#~ msgstr "" -#~ "`bpo-28896 `__: Deprecate " -#~ "WindowsRegistryFinder and disable it by default." - -#~ msgid "" -#~ "`bpo-27867 `__: Function " -#~ "PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API is not " -#~ "set or set to the value between 0x03050400 and 0x03060000 (not including) " -#~ "or 0x03060100 or higher." -#~ msgstr "" -#~ "`bpo-27867 `__: Function " -#~ "PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API is not " -#~ "set or set to the value between 0x03050400 and 0x03060000 (not including) " -#~ "or 0x03060100 or higher." - -#~ msgid "" -#~ "`bpo-29083 `__: Fixed the declaration " -#~ "of some public API functions. PyArg_VaParse() and " -#~ "PyArg_VaParseTupleAndKeywords() were not available in limited API. " -#~ "PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() " -#~ "were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN " -#~ "is defined." -#~ msgstr "" -#~ "`bpo-29083 `__: Fixed the declaration " -#~ "of some public API functions. PyArg_VaParse() and " -#~ "PyArg_VaParseTupleAndKeywords() were not available in limited API. " -#~ "PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() " -#~ "were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN " -#~ "is defined." - -#~ msgid "" -#~ "`bpo-29058 `__: All stable API " -#~ "extensions added after Python 3.2 are now available only when " -#~ "Py_LIMITED_API is set to the PY_VERSION_HEX value of the minimum Python " -#~ "version supporting this API." -#~ msgstr "" -#~ "`bpo-29058 `__: All stable API " -#~ "extensions added after Python 3.2 are now available only when " -#~ "Py_LIMITED_API is set to the PY_VERSION_HEX value of the minimum Python " -#~ "version supporting this API." - -#~ msgid "" -#~ "`bpo-28929 `__: Link the " -#~ "documentation to its source file on GitHub." -#~ msgstr "" -#~ "`bpo-28929 `__: Link the " -#~ "documentation to its source file on GitHub." - -#~ msgid "" -#~ "`bpo-25008 `__: Document smtpd.py as " -#~ "effectively deprecated and add a pointer to aiosmtpd, a third-party " -#~ "asyncio-based replacement." -#~ msgstr "" -#~ "`bpo-25008 `__: Document smtpd.py as " -#~ "effectively deprecated and add a pointer to aiosmtpd, a third-party " -#~ "asyncio-based replacement." - -#~ msgid "" -#~ "`bpo-26355 `__: Add canonical header " -#~ "link on each page to corresponding major version of the documentation. " -#~ "Patch by Matthias Bussonnier." -#~ msgstr "" -#~ "`bpo-26355 `__: Add canonical header " -#~ "link on each page to corresponding major version of the documentation. " -#~ "Patch by Matthias Bussonnier." - -#~ msgid "" -#~ "`bpo-29349 `__: Fix Python 2 syntax " -#~ "in code for building the documentation." -#~ msgstr "" -#~ "`bpo-29349 `__: Fix Python 2 syntax " -#~ "in code for building the documentation." - -#~ msgid "" -#~ "`bpo-28087 `__: Skip test_asyncore " -#~ "and test_eintr poll failures on macOS. Skip some tests of select.poll " -#~ "when running on macOS due to unresolved issues with the underlying system " -#~ "poll function on some macOS versions." -#~ msgstr "" -#~ "`bpo-28087 `__: Skip test_asyncore " -#~ "and test_eintr poll failures on macOS. Skip some tests of select.poll " -#~ "when running on macOS due to unresolved issues with the underlying system " -#~ "poll function on some macOS versions." - -#~ msgid "" -#~ "`bpo-29571 `__: to match the " -#~ "behaviour of the ``re.LOCALE`` flag, test_re.test_locale_flag now uses " -#~ "``locale.getpreferredencoding(False)`` to determine the candidate " -#~ "encoding for the test regex (allowing it to correctly skip the test when " -#~ "the default locale encoding is a multi-byte encoding)" -#~ msgstr "" -#~ "`bpo-29571 `__: to match the " -#~ "behaviour of the ``re.LOCALE`` flag, test_re.test_locale_flag now uses " -#~ "``locale.getpreferredencoding(False)`` to determine the candidate " -#~ "encoding for the test regex (allowing it to correctly skip the test when " -#~ "the default locale encoding is a multi-byte encoding)" - -#~ msgid "" -#~ "`bpo-28950 `__: Disallow -j0 to be " -#~ "combined with -T/-l in regrtest command line arguments." -#~ msgstr "" -#~ "`bpo-28950 `__: Disallow -j0 to be " -#~ "combined with -T/-l in regrtest command line arguments." - -#~ msgid "" -#~ "`bpo-28683 `__: Fix the tests that " -#~ "bind() a unix socket and raise PermissionError on Android for a non-root " -#~ "user." -#~ msgstr "" -#~ "`bpo-28683 `__: Fix the tests that " -#~ "bind() a unix socket and raise PermissionError on Android for a non-root " -#~ "user." - -#~ msgid "" -#~ "`bpo-26939 `__: Add the support." -#~ "setswitchinterval() function to fix test_functools hanging on the Android " -#~ "armv7 qemu emulator." -#~ msgstr "" -#~ "`bpo-26939 `__: Add the support." -#~ "setswitchinterval() function to fix test_functools hanging on the Android " -#~ "armv7 qemu emulator." - -#~ msgid "" -#~ "`bpo-27593 `__: sys.version and the " -#~ "platform module python_build(), python_branch(), and python_revision() " -#~ "functions now use git information rather than hg when building from a " -#~ "repo." -#~ msgstr "" -#~ "`bpo-27593 `__: sys.version and the " -#~ "platform module python_build(), python_branch(), and python_revision() " -#~ "functions now use git information rather than hg when building from a " -#~ "repo." - -#~ msgid "" -#~ "`bpo-29572 `__: Update Windows build " -#~ "and OS X installers to use OpenSSL 1.0.2k." -#~ msgstr "" -#~ "`bpo-29572 `__: Update Windows build " -#~ "and OS X installers to use OpenSSL 1.0.2k." - -#~ msgid "" -#~ "`bpo-26851 `__: Set Android " -#~ "compilation and link flags." -#~ msgstr "" -#~ "`bpo-26851 `__: Set Android " -#~ "compilation and link flags." - -#~ msgid "" -#~ "`bpo-28768 `__: Fix implicit " -#~ "declaration of function _setmode. Patch by Masayuki Yamamoto" -#~ msgstr "" -#~ "`bpo-28768 `__: Fix implicit " -#~ "declaration of function _setmode. Patch by Masayuki Yamamoto" - -#~ msgid "" -#~ "`bpo-29080 `__: Removes hard " -#~ "dependency on hg.exe from PCBuild/build.bat" -#~ msgstr "" -#~ "`bpo-29080 `__: Removes hard " -#~ "dependency on hg.exe from PCBuild/build.bat" - -#~ msgid "" -#~ "`bpo-23903 `__: Added missed names to " -#~ "PC/python3.def." -#~ msgstr "" -#~ "`bpo-23903 `__: Added missed names to " -#~ "PC/python3.def." - -#~ msgid "" -#~ "`bpo-28762 `__: lockf() is available " -#~ "on Android API level 24, but the F_LOCK macro is not defined in android-" -#~ "ndk-r13." -#~ msgstr "" -#~ "`bpo-28762 `__: lockf() is available " -#~ "on Android API level 24, but the F_LOCK macro is not defined in android-" -#~ "ndk-r13." - -#~ msgid "" -#~ "`bpo-28538 `__: Fix the compilation " -#~ "error that occurs because if_nameindex() is available on Android API " -#~ "level 24, but the if_nameindex structure is not defined." -#~ msgstr "" -#~ "`bpo-28538 `__: Fix the compilation " -#~ "error that occurs because if_nameindex() is available on Android API " -#~ "level 24, but the if_nameindex structure is not defined." - -#~ msgid "" -#~ "`bpo-20211 `__: Do not add the " -#~ "directory for installing C header files and the directory for installing " -#~ "object code libraries to the cross compilation search paths. Original " -#~ "patch by Thomas Petazzoni." -#~ msgstr "" -#~ "`bpo-20211 `__: Do not add the " -#~ "directory for installing C header files and the directory for installing " -#~ "object code libraries to the cross compilation search paths. Original " -#~ "patch by Thomas Petazzoni." - -#~ msgid "" -#~ "`bpo-28849 `__: Do not define sys." -#~ "implementation._multiarch on Android." -#~ msgstr "" -#~ "`bpo-28849 `__: Do not define sys." -#~ "implementation._multiarch on Android." - -#~ msgid "Python 3.6.0" -#~ msgstr "Python 3.6.0" - -#~ msgid "*Release date: 2016-12-23*" -#~ msgstr "*Date de sortie : 2016-12-23*" - -#~ msgid "Python 3.6.0 release candidate 2" -#~ msgstr "Python 3.6.0 release candidate 2" - -#~ msgid "*Release date: 2016-12-16*" -#~ msgstr "*Date de sortie : 2016-12-16*" - -#~ msgid "" -#~ "`bpo-28147 `__: Fix a memory leak in " -#~ "split-table dictionaries: setattr() must not convert combined table into " -#~ "split table. Patch written by INADA Naoki." -#~ msgstr "" -#~ "`bpo-28147 `__: Fix a memory leak in " -#~ "split-table dictionaries: setattr() must not convert combined table into " -#~ "split table. Patch written by INADA Naoki." - -#~ msgid "" -#~ "`bpo-28990 `__: Fix asyncio SSL " -#~ "hanging if connection is closed before handshake is completed. (Patch by " -#~ "HoHo-Ho)" -#~ msgstr "" -#~ "`bpo-28990 `__: Fix asyncio SSL " -#~ "hanging if connection is closed before handshake is completed. (Patch by " -#~ "HoHo-Ho)" - -#~ msgid "" -#~ "`bpo-28770 `__: Fix python-gdb.py for " -#~ "fastcalls." -#~ msgstr "" -#~ "`bpo-28770 `__: Fix python-gdb.py for " -#~ "fastcalls." - -#~ msgid "" -#~ "`bpo-28896 `__: Deprecate " -#~ "WindowsRegistryFinder." -#~ msgstr "" -#~ "`bpo-28896 `__: Deprecate " -#~ "WindowsRegistryFinder." - -#~ msgid "" -#~ "`bpo-28898 `__: Prevent gdb build " -#~ "errors due to HAVE_LONG_LONG redefinition." -#~ msgstr "" -#~ "`bpo-28898 `__: Prevent gdb build " -#~ "errors due to HAVE_LONG_LONG redefinition." - -#~ msgid "Python 3.6.0 release candidate 1" -#~ msgstr "Python 3.6.0 release candidate 1" - -#~ msgid "*Release date: 2016-12-06*" -#~ msgstr "*Date de sortie : 2016-12-06*" - -#~ msgid "" -#~ "`bpo-23722 `__: Rather than silently " -#~ "producing a class that doesn't support zero-argument ``super()`` in " -#~ "methods, failing to pass the new ``__classcell__`` namespace entry up to " -#~ "``type.__new__`` now results in a ``DeprecationWarning`` and a class that " -#~ "supports zero-argument ``super()``." -#~ msgstr "" -#~ "`bpo-23722 `__: Rather than silently " -#~ "producing a class that doesn't support zero-argument ``super()`` in " -#~ "methods, failing to pass the new ``__classcell__`` namespace entry up to " -#~ "``type.__new__`` now results in a ``DeprecationWarning`` and a class that " -#~ "supports zero-argument ``super()``." - -#~ msgid "" -#~ "`bpo-28797 `__: Modifying the class " -#~ "__dict__ inside the __set_name__ method of a descriptor that is used " -#~ "inside that class no longer prevents calling the __set_name__ method of " -#~ "other descriptors." -#~ msgstr "" -#~ "`bpo-28797 `__: Modifying the class " -#~ "__dict__ inside the __set_name__ method of a descriptor that is used " -#~ "inside that class no longer prevents calling the __set_name__ method of " -#~ "other descriptors." - -#~ msgid "" -#~ "`bpo-28782 `__: Fix a bug in the " -#~ "implementation ``yield from`` when checking if the next instruction is " -#~ "YIELD_FROM. Regression introduced by WORDCODE (`bpo-26647 `__)." -#~ msgstr "" -#~ "`bpo-28782 `__: Fix a bug in the " -#~ "implementation ``yield from`` when checking if the next instruction is " -#~ "YIELD_FROM. Regression introduced by WORDCODE (`bpo-26647 `__)." - -#~ msgid "" -#~ "`bpo-27030 `__: Unknown escapes in re." -#~ "sub() replacement template are allowed again. But they still are " -#~ "deprecated and will be disabled in 3.7." -#~ msgstr "" -#~ "`bpo-27030 `__: Unknown escapes in re." -#~ "sub() replacement template are allowed again. But they still are " -#~ "deprecated and will be disabled in 3.7." - -#~ msgid "" -#~ "`bpo-28835 `__: Fix a regression " -#~ "introduced in warnings.catch_warnings(): call warnings.showwarning() if " -#~ "it was overriden inside the context manager." -#~ msgstr "" -#~ "`bpo-28835 `__: Fix a regression " -#~ "introduced in warnings.catch_warnings(): call warnings.showwarning() if " -#~ "it was overriden inside the context manager." - -#~ msgid "" -#~ "`bpo-27172 `__: To assist with " -#~ "upgrades from 2.7, the previously documented deprecation of ``inspect." -#~ "getfullargspec()`` has been reversed. This decision may be revisited " -#~ "again after the Python 2.7 branch is no longer officially supported." -#~ msgstr "" -#~ "`bpo-27172 `__: To assist with " -#~ "upgrades from 2.7, the previously documented deprecation of ``inspect." -#~ "getfullargspec()`` has been reversed. This decision may be revisited " -#~ "again after the Python 2.7 branch is no longer officially supported." - -#~ msgid "" -#~ "`bpo-26273 `__: Add new :data:`socket." -#~ "TCP_CONGESTION` (Linux 2.6.13) and :data:`socket.TCP_USER_TIMEOUT` (Linux " -#~ "2.6.37) constants. Patch written by Omar Sandoval." -#~ msgstr "" -#~ "`bpo-26273 `__: Add new :data:`socket." -#~ "TCP_CONGESTION` (Linux 2.6.13) and :data:`socket.TCP_USER_TIMEOUT` (Linux " -#~ "2.6.37) constants. Patch written by Omar Sandoval." - -#~ msgid "" -#~ "`bpo-24142 `__: Reading a corrupt " -#~ "config file left configparser in an invalid state. Original patch by " -#~ "Florian Höch." -#~ msgstr "" -#~ "`bpo-24142 `__: Reading a corrupt " -#~ "config file left configparser in an invalid state. Original patch by " -#~ "Florian Höch." - -#~ msgid "" -#~ "`bpo-28843 `__: Fix asyncio C Task to " -#~ "handle exceptions __traceback__." -#~ msgstr "" -#~ "`bpo-28843 `__: Fix asyncio C Task to " -#~ "handle exceptions __traceback__." - -#~ msgid "" -#~ "`bpo-28808 `__: " -#~ "PyUnicode_CompareWithASCIIString() now never raises exceptions." -#~ msgstr "" -#~ "`bpo-28808 `__: " -#~ "PyUnicode_CompareWithASCIIString() now never raises exceptions." - -#~ msgid "" -#~ "`bpo-23722 `__: The data model " -#~ "reference and the porting section in the What's New guide now cover the " -#~ "additional ``__classcell__`` handling needed for custom metaclasses to " -#~ "fully support PEP 487 and zero-argument ``super()``." -#~ msgstr "" -#~ "`bpo-23722 `__: The data model " -#~ "reference and the porting section in the What's New guide now cover the " -#~ "additional ``__classcell__`` handling needed for custom metaclasses to " -#~ "fully support PEP 487 and zero-argument ``super()``." - -#~ msgid "" -#~ "`bpo-28023 `__: Fix python-gdb.py " -#~ "didn't support new dict implementation." -#~ msgstr "" -#~ "`bpo-28023 `__: Fix python-gdb.py " -#~ "didn't support new dict implementation." - -#~ msgid "Python 3.6.0 beta 4" -#~ msgstr "Python 3.6.0 beta 4" - -#~ msgid "*Release date: 2016-11-21*" -#~ msgstr "*Date de sortie : 2016-11-21*" - -#~ msgid "" -#~ "`bpo-28532 `__: Show sys.version when " -#~ "-V option is supplied twice." -#~ msgstr "" -#~ "`bpo-28532 `__: Show sys.version when " -#~ "-V option is supplied twice." - -#~ msgid "" -#~ "`bpo-27100 `__: The with-statement " -#~ "now checks for __enter__ before it checks for __exit__. This gives less " -#~ "confusing error messages when both methods are missing. Patch by Jonathan " -#~ "Ellington." -#~ msgstr "" -#~ "`bpo-27100 `__: The with-statement " -#~ "now checks for __enter__ before it checks for __exit__. This gives less " -#~ "confusing error messages when both methods are missing. Patch by Jonathan " -#~ "Ellington." - -#~ msgid "" -#~ "`bpo-28746 `__: Fix the " -#~ "set_inheritable() file descriptor method on platforms that do not have " -#~ "the ioctl FIOCLEX and FIONCLEX commands." -#~ msgstr "" -#~ "`bpo-28746 `__: Fix the " -#~ "set_inheritable() file descriptor method on platforms that do not have " -#~ "the ioctl FIOCLEX and FIONCLEX commands." - -#~ msgid "" -#~ "`bpo-26920 `__: Fix not getting the " -#~ "locale's charset upon initializing the interpreter, on platforms that do " -#~ "not have langinfo." -#~ msgstr "" -#~ "`bpo-26920 `__: Fix not getting the " -#~ "locale's charset upon initializing the interpreter, on platforms that do " -#~ "not have langinfo." - -#~ msgid "" -#~ "`bpo-28648 `__: Fixed crash in " -#~ "Py_DecodeLocale() in debug build on Mac OS X when decode astral " -#~ "characters. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-28648 `__: Fixed crash in " -#~ "Py_DecodeLocale() in debug build on Mac OS X when decode astral " -#~ "characters. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-19398 `__: Extra slash no longer " -#~ "added to sys.path components in case of empty compile-time PYTHONPATH " -#~ "components." -#~ msgstr "" -#~ "`bpo-19398 `__: Extra slash no longer " -#~ "added to sys.path components in case of empty compile-time PYTHONPATH " -#~ "components." - -#~ msgid "" -#~ "`bpo-28665 `__: Improve speed of the " -#~ "STORE_DEREF opcode by 40%." -#~ msgstr "" -#~ "`bpo-28665 `__: Improve speed of the " -#~ "STORE_DEREF opcode by 40%." - -#~ msgid "" -#~ "`bpo-28583 `__: PyDict_SetDefault " -#~ "didn't combine split table when needed. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-28583 `__: PyDict_SetDefault " -#~ "didn't combine split table when needed. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-27243 `__: Change " -#~ "PendingDeprecationWarning -> DeprecationWarning. As it was agreed in the " -#~ "issue, __aiter__ returning an awaitable should result in " -#~ "PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6." -#~ msgstr "" -#~ "`bpo-27243 `__: Change " -#~ "PendingDeprecationWarning -> DeprecationWarning. As it was agreed in the " -#~ "issue, __aiter__ returning an awaitable should result in " -#~ "PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6." - -#~ msgid "" -#~ "`bpo-26182 `__: Fix a refleak in code " -#~ "that raises DeprecationWarning." -#~ msgstr "" -#~ "`bpo-26182 `__: Fix a refleak in code " -#~ "that raises DeprecationWarning." - -#~ msgid "" -#~ "`bpo-28721 `__: Fix asynchronous " -#~ "generators aclose() and athrow() to handle StopAsyncIteration propagation " -#~ "properly." -#~ msgstr "" -#~ "`bpo-28721 `__: Fix asynchronous " -#~ "generators aclose() and athrow() to handle StopAsyncIteration propagation " -#~ "properly." - -#~ msgid "" -#~ "`bpo-28752 `__: Restored the " -#~ "__reduce__() methods of datetime objects." -#~ msgstr "" -#~ "`bpo-28752 `__: Restored the " -#~ "__reduce__() methods of datetime objects." - -#~ msgid "" -#~ "`bpo-28727 `__: Regular expression " -#~ "patterns, _sre.SRE_Pattern objects created by re.compile(), become " -#~ "comparable (only x==y and x!=y operators). This change should fix the " -#~ "`bpo-18383 `__: don't duplicate " -#~ "warning filters when the warnings module is reloaded (thing usually only " -#~ "done in unit tests)." -#~ msgstr "" -#~ "`bpo-28727 `__: Regular expression " -#~ "patterns, _sre.SRE_Pattern objects created by re.compile(), become " -#~ "comparable (only x==y and x!=y operators). This change should fix the " -#~ "`bpo-18383 `__: don't duplicate " -#~ "warning filters when the warnings module is reloaded (thing usually only " -#~ "done in unit tests)." - -#~ msgid "" -#~ "`bpo-20572 `__: The subprocess.Popen." -#~ "wait method's undocumented endtime parameter now raises a " -#~ "DeprecationWarning." -#~ msgstr "" -#~ "`bpo-20572 `__: The subprocess.Popen." -#~ "wait method's undocumented endtime parameter now raises a " -#~ "DeprecationWarning." - -#~ msgid "" -#~ "`bpo-25659 `__: In ctypes, prevent a " -#~ "crash calling the from_buffer() and from_buffer_copy() methods on " -#~ "abstract classes like Array." -#~ msgstr "" -#~ "`bpo-25659 `__: In ctypes, prevent a " -#~ "crash calling the from_buffer() and from_buffer_copy() methods on " -#~ "abstract classes like Array." - -#~ msgid "" -#~ "`bpo-19717 `__: Makes Path.resolve() " -#~ "succeed on paths that do not exist. Patch by Vajrasky Kok" -#~ msgstr "" -#~ "`bpo-19717 `__: Makes Path.resolve() " -#~ "succeed on paths that do not exist. Patch by Vajrasky Kok" - -#~ msgid "" -#~ "`bpo-28563 `__: Fixed possible DoS " -#~ "and arbitrary code execution when handle plural form selections in the " -#~ "gettext module. The expression parser now supports exact syntax " -#~ "supported by GNU gettext." -#~ msgstr "" -#~ "`bpo-28563 `__: Fixed possible DoS " -#~ "and arbitrary code execution when handle plural form selections in the " -#~ "gettext module. The expression parser now supports exact syntax " -#~ "supported by GNU gettext." - -#~ msgid "" -#~ "`bpo-28387 `__: Fixed possible crash " -#~ "in _io.TextIOWrapper deallocator when the garbage collector is invoked in " -#~ "other thread. Based on patch by Sebastian Cufre." -#~ msgstr "" -#~ "`bpo-28387 `__: Fixed possible crash " -#~ "in _io.TextIOWrapper deallocator when the garbage collector is invoked in " -#~ "other thread. Based on patch by Sebastian Cufre." - -#~ msgid "" -#~ "`bpo-28600 `__: Optimize loop." -#~ "call_soon." -#~ msgstr "" -#~ "`bpo-28600 `__: Optimize loop." -#~ "call_soon." - -#~ msgid "" -#~ "`bpo-28613 `__: Fix get_event_loop() " -#~ "return the current loop if called from coroutines/callbacks." -#~ msgstr "" -#~ "`bpo-28613 `__: Fix get_event_loop() " -#~ "return the current loop if called from coroutines/callbacks." - -#~ msgid "" -#~ "`bpo-28634 `__: Fix asyncio." -#~ "isfuture() to support unittest.Mock." -#~ msgstr "" -#~ "`bpo-28634 `__: Fix asyncio." -#~ "isfuture() to support unittest.Mock." - -#~ msgid "" -#~ "`bpo-26081 `__: Fix refleak in " -#~ "_asyncio.Future.__iter__().throw." -#~ msgstr "" -#~ "`bpo-26081 `__: Fix refleak in " -#~ "_asyncio.Future.__iter__().throw." - -#~ msgid "" -#~ "`bpo-28639 `__: Fix inspect." -#~ "isawaitable to always return bool Patch by Justin Mayfield." -#~ msgstr "" -#~ "`bpo-28639 `__: Fix inspect." -#~ "isawaitable to always return bool Patch by Justin Mayfield." - -#~ msgid "" -#~ "`bpo-28652 `__: Make loop methods " -#~ "reject socket kinds they do not support." -#~ msgstr "" -#~ "`bpo-28652 `__: Make loop methods " -#~ "reject socket kinds they do not support." - -#~ msgid "" -#~ "`bpo-28653 `__: Fix a refleak in " -#~ "functools.lru_cache." -#~ msgstr "" -#~ "`bpo-28653 `__: Fix a refleak in " -#~ "functools.lru_cache." - -#~ msgid "" -#~ "`bpo-28703 `__: Fix asyncio." -#~ "iscoroutinefunction to handle Mock objects." -#~ msgstr "" -#~ "`bpo-28703 `__: Fix asyncio." -#~ "iscoroutinefunction to handle Mock objects." - -#~ msgid "" -#~ "`bpo-28704 `__: Fix " -#~ "create_unix_server to support Path-like objects (PEP 519)." -#~ msgstr "" -#~ "`bpo-28704 `__: Fix " -#~ "create_unix_server to support Path-like objects (PEP 519)." - -#~ msgid "" -#~ "`bpo-28720 `__: Add collections.abc." -#~ "AsyncGenerator." -#~ msgstr "" -#~ "`bpo-28720 `__: Add collections.abc." -#~ "AsyncGenerator." - -#~ msgid "" -#~ "`bpo-28513 `__: Documented command-" -#~ "line interface of zipfile." -#~ msgstr "" -#~ "`bpo-28513 `__: Documented command-" -#~ "line interface of zipfile." - -#~ msgid "" -#~ "`bpo-28666 `__: Now test.support." -#~ "rmtree is able to remove unwritable or unreadable directories." -#~ msgstr "" -#~ "`bpo-28666 `__: Now test.support." -#~ "rmtree is able to remove unwritable or unreadable directories." - -#~ msgid "" -#~ "`bpo-23839 `__: Various caches now " -#~ "are cleared before running every test file." -#~ msgstr "" -#~ "`bpo-23839 `__: Various caches now " -#~ "are cleared before running every test file." - -#~ msgid "" -#~ "`bpo-10656 `__: Fix out-of-tree " -#~ "building on AIX. Patch by Tristan Carel and Michael Haubenwallner." -#~ msgstr "" -#~ "`bpo-10656 `__: Fix out-of-tree " -#~ "building on AIX. Patch by Tristan Carel and Michael Haubenwallner." - -#~ msgid "" -#~ "`bpo-26359 `__: Rename --with-" -#~ "optimiations to --enable-optimizations." -#~ msgstr "" -#~ "`bpo-26359 `__: Rename --with-" -#~ "optimiations to --enable-optimizations." - -#~ msgid "" -#~ "`bpo-28676 `__: Prevent missing " -#~ "'getentropy' declaration warning on macOS. Patch by Gareth Rees." -#~ msgstr "" -#~ "`bpo-28676 `__: Prevent missing " -#~ "'getentropy' declaration warning on macOS. Patch by Gareth Rees." - -#~ msgid "Python 3.6.0 beta 3" -#~ msgstr "Python 3.6.0 beta 3" - -#~ msgid "*Release date: 2016-10-31*" -#~ msgstr "*Date de sortie : 2016-10-31*" - -#~ msgid "" -#~ "`bpo-28128 `__: Deprecation warning " -#~ "for invalid str and byte escape sequences now prints better information " -#~ "about where the error occurs. Patch by Serhiy Storchaka and Eric Smith." -#~ msgstr "" -#~ "`bpo-28128 `__: Deprecation warning " -#~ "for invalid str and byte escape sequences now prints better information " -#~ "about where the error occurs. Patch by Serhiy Storchaka and Eric Smith." - -#~ msgid "" -#~ "`bpo-28509 `__: dict.update() no " -#~ "longer allocate unnecessary large memory." -#~ msgstr "" -#~ "`bpo-28509 `__: dict.update() no " -#~ "longer allocate unnecessary large memory." - -#~ msgid "" -#~ "`bpo-28426 `__: Fixed potential crash " -#~ "in PyUnicode_AsDecodedObject() in debug build." -#~ msgstr "" -#~ "`bpo-28426 `__: Fixed potential crash " -#~ "in PyUnicode_AsDecodedObject() in debug build." - -#~ msgid "" -#~ "`bpo-28517 `__: Fixed of-by-one error " -#~ "in the peephole optimizer that caused keeping unreachable code." -#~ msgstr "" -#~ "`bpo-28517 `__: Fixed of-by-one error " -#~ "in the peephole optimizer that caused keeping unreachable code." - -#~ msgid "" -#~ "`bpo-28214 `__: Improved exception " -#~ "reporting for problematic __set_name__ attributes." -#~ msgstr "" -#~ "`bpo-28214 `__: Improved exception " -#~ "reporting for problematic __set_name__ attributes." - -#~ msgid "" -#~ "`bpo-23782 `__: Fixed possible memory " -#~ "leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here()." -#~ msgstr "" -#~ "`bpo-23782 `__: Fixed possible memory " -#~ "leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here()." - -#~ msgid "" -#~ "`bpo-28471 `__: Fix \"Python memory " -#~ "allocator called without holding the GIL\" crash in socket.setblocking." -#~ msgstr "" -#~ "`bpo-28471 `__: Fix \"Python memory " -#~ "allocator called without holding the GIL\" crash in socket.setblocking." - -#~ msgid "" -#~ "`bpo-27517 `__: LZMA compressor and " -#~ "decompressor no longer raise exceptions if given empty data twice. Patch " -#~ "by Benjamin Fogle." -#~ msgstr "" -#~ "`bpo-27517 `__: LZMA compressor and " -#~ "decompressor no longer raise exceptions if given empty data twice. Patch " -#~ "by Benjamin Fogle." - -#~ msgid "" -#~ "`bpo-28549 `__: Fixed segfault in " -#~ "curses's addch() with ncurses6." -#~ msgstr "" -#~ "`bpo-28549 `__: Fixed segfault in " -#~ "curses's addch() with ncurses6." - -#~ msgid "" -#~ "`bpo-28449 `__: tarfile.open() with " -#~ "mode \"r\" or \"r:\" now tries to open a tar file with compression before " -#~ "trying to open it without compression. Otherwise it had 50% chance " -#~ "failed with ignore_zeros=True." -#~ msgstr "" -#~ "`bpo-28449 `__: tarfile.open() with " -#~ "mode \"r\" or \"r:\" now tries to open a tar file with compression before " -#~ "trying to open it without compression. Otherwise it had 50% chance " -#~ "failed with ignore_zeros=True." - -#~ msgid "" -#~ "`bpo-23262 `__: The webbrowser module " -#~ "now supports Firefox 36+ and derived browsers. Based on patch by Oleg " -#~ "Broytman." -#~ msgstr "" -#~ "`bpo-23262 `__: The webbrowser module " -#~ "now supports Firefox 36+ and derived browsers. Based on patch by Oleg " -#~ "Broytman." - -#~ msgid "" -#~ "`bpo-27939 `__: Fixed bugs in tkinter." -#~ "ttk.LabeledScale and tkinter.Scale caused by representing the scale as " -#~ "float value internally in Tk. tkinter.IntVar now works if float value is " -#~ "set to underlying Tk variable." -#~ msgstr "" -#~ "`bpo-27939 `__: Fixed bugs in tkinter." -#~ "ttk.LabeledScale and tkinter.Scale caused by representing the scale as " -#~ "float value internally in Tk. tkinter.IntVar now works if float value is " -#~ "set to underlying Tk variable." - -#~ msgid "" -#~ "`bpo-18844 `__: The various ways of " -#~ "specifying weights for random.choices() now produce the same result " -#~ "sequences." -#~ msgstr "" -#~ "`bpo-18844 `__: The various ways of " -#~ "specifying weights for random.choices() now produce the same result " -#~ "sequences." - -#~ msgid "" -#~ "`bpo-28255 `__: calendar." -#~ "TextCalendar().prmonth() no longer prints a space at the start of new " -#~ "line after printing a month's calendar. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-28255 `__: calendar." -#~ "TextCalendar().prmonth() no longer prints a space at the start of new " -#~ "line after printing a month's calendar. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-20491 `__: The textwrap." -#~ "TextWrapper class now honors non-breaking spaces. Based on patch by " -#~ "Kaarle Ritvanen." -#~ msgstr "" -#~ "`bpo-20491 `__: The textwrap." -#~ "TextWrapper class now honors non-breaking spaces. Based on patch by " -#~ "Kaarle Ritvanen." - -#~ msgid "" -#~ "`bpo-28353 `__: os.fwalk() no longer " -#~ "fails on broken links." -#~ msgstr "" -#~ "`bpo-28353 `__: os.fwalk() no longer " -#~ "fails on broken links." - -#~ msgid "" -#~ "`bpo-28430 `__: Fix iterator of C " -#~ "implemented asyncio.Future doesn't accept non-None value is passed to it." -#~ "send(val)." -#~ msgstr "" -#~ "`bpo-28430 `__: Fix iterator of C " -#~ "implemented asyncio.Future doesn't accept non-None value is passed to it." -#~ "send(val)." - -#~ msgid "" -#~ "`bpo-27025 `__: Generated names for " -#~ "Tkinter widgets now start by the \"!\" prefix for readability." -#~ msgstr "" -#~ "`bpo-27025 `__: Generated names for " -#~ "Tkinter widgets now start by the \"!\" prefix for readability." - -#~ msgid "" -#~ "`bpo-25464 `__: Fixed HList." -#~ "header_exists() in tkinter.tix module by addin a workaround to Tix " -#~ "library bug." -#~ msgstr "" -#~ "`bpo-25464 `__: Fixed HList." -#~ "header_exists() in tkinter.tix module by addin a workaround to Tix " -#~ "library bug." - -#~ msgid "" -#~ "`bpo-28488 `__: shutil.make_archive() " -#~ "no longer adds entry \"./\" to ZIP archive." -#~ msgstr "" -#~ "`bpo-28488 `__: shutil.make_archive() " -#~ "no longer adds entry \"./\" to ZIP archive." - -#~ msgid "" -#~ "`bpo-25953 `__: re.sub() now raises " -#~ "an error for invalid numerical group reference in replacement template " -#~ "even if the pattern is not found in the string. Error message for " -#~ "invalid group reference now includes the group index and the position of " -#~ "the reference. Based on patch by SilentGhost." -#~ msgstr "" -#~ "`bpo-25953 `__: re.sub() now raises " -#~ "an error for invalid numerical group reference in replacement template " -#~ "even if the pattern is not found in the string. Error message for " -#~ "invalid group reference now includes the group index and the position of " -#~ "the reference. Based on patch by SilentGhost." - -#~ msgid "" -#~ "`bpo-18219 `__: Optimize csv." -#~ "DictWriter for large number of columns. Patch by Mariatta Wijaya." -#~ msgstr "" -#~ "`bpo-18219 `__: Optimize csv." -#~ "DictWriter for large number of columns. Patch by Mariatta Wijaya." - -#~ msgid "" -#~ "`bpo-28448 `__: Fix C implemented " -#~ "asyncio.Future didn't work on Windows." -#~ msgstr "" -#~ "`bpo-28448 `__: Fix C implemented " -#~ "asyncio.Future didn't work on Windows." - -#~ msgid "" -#~ "`bpo-28480 `__: Fix error building " -#~ "socket module when multithreading is disabled." -#~ msgstr "" -#~ "`bpo-28480 `__: Fix error building " -#~ "socket module when multithreading is disabled." - -#~ msgid "" -#~ "`bpo-24452 `__: Make webbrowser " -#~ "support Chrome on Mac OS X." -#~ msgstr "" -#~ "`bpo-24452 `__: Make webbrowser " -#~ "support Chrome on Mac OS X." - -#~ msgid "" -#~ "`bpo-20766 `__: Fix references leaked " -#~ "by pdb in the handling of SIGINT handlers." -#~ msgstr "" -#~ "`bpo-20766 `__: Fix references leaked " -#~ "by pdb in the handling of SIGINT handlers." - -#~ msgid "" -#~ "`bpo-28492 `__: Fix how StopIteration " -#~ "exception is raised in _asyncio.Future." -#~ msgstr "" -#~ "`bpo-28492 `__: Fix how StopIteration " -#~ "exception is raised in _asyncio.Future." - -#~ msgid "" -#~ "`bpo-28500 `__: Fix asyncio to handle " -#~ "async gens GC from another thread." -#~ msgstr "" -#~ "`bpo-28500 `__: Fix asyncio to handle " -#~ "async gens GC from another thread." - -#~ msgid "" -#~ "`bpo-26923 `__: Fix asyncio.Gather to " -#~ "refuse being cancelled once all children are done. Patch by Johannes Ebke." -#~ msgstr "" -#~ "`bpo-26923 `__: Fix asyncio.Gather to " -#~ "refuse being cancelled once all children are done. Patch by Johannes Ebke." - -#~ msgid "" -#~ "`bpo-26796 `__: Don't configure the " -#~ "number of workers for default threadpool executor. Initial patch by Hans " -#~ "Lawrenz." -#~ msgstr "" -#~ "`bpo-26796 `__: Don't configure the " -#~ "number of workers for default threadpool executor. Initial patch by Hans " -#~ "Lawrenz." - -#~ msgid "" -#~ "`bpo-28544 `__: Implement asyncio." -#~ "Task in C." -#~ msgstr "" -#~ "`bpo-28544 `__: Implement asyncio." -#~ "Task in C." - -#~ msgid "" -#~ "`bpo-28522 `__: Fixes mishandled " -#~ "buffer reallocation in getpathp.c" -#~ msgstr "" -#~ "`bpo-28522 `__: Fixes mishandled " -#~ "buffer reallocation in getpathp.c" - -#~ msgid "" -#~ "`bpo-28444 `__: Fix missing " -#~ "extensions modules when cross compiling." -#~ msgstr "" -#~ "`bpo-28444 `__: Fix missing " -#~ "extensions modules when cross compiling." - -#~ msgid "" -#~ "`bpo-28208 `__: Update Windows build " -#~ "and OS X installers to use SQLite 3.14.2." -#~ msgstr "" -#~ "`bpo-28208 `__: Update Windows build " -#~ "and OS X installers to use SQLite 3.14.2." - -#~ msgid "" -#~ "`bpo-28248 `__: Update Windows build " -#~ "and OS X installers to use OpenSSL 1.0.2j." -#~ msgstr "" -#~ "`bpo-28248 `__: Update Windows build " -#~ "and OS X installers to use OpenSSL 1.0.2j." - -#~ msgid "" -#~ "`bpo-26944 `__: Fix test_posix for " -#~ "Android where 'id -G' is entirely wrong or missing the effective gid." -#~ msgstr "" -#~ "`bpo-26944 `__: Fix test_posix for " -#~ "Android where 'id -G' is entirely wrong or missing the effective gid." - -#~ msgid "" -#~ "`bpo-28409 `__: regrtest: fix the " -#~ "parser of command line arguments." -#~ msgstr "" -#~ "`bpo-28409 `__: regrtest: fix the " -#~ "parser of command line arguments." - -#~ msgid "Python 3.6.0 beta 2" -#~ msgstr "Python 3.6.0 beta 2" - -#~ msgid "*Release date: 2016-10-10*" -#~ msgstr "*Date de sortie : 2016-10-10*" - -#~ msgid "" -#~ "`bpo-28183 `__: Optimize and cleanup " -#~ "dict iteration." -#~ msgstr "" -#~ "`bpo-28183 `__: Optimize and cleanup " -#~ "dict iteration." - -#~ msgid "" -#~ "`bpo-26081 `__: Added C " -#~ "implementation of asyncio.Future. Original patch by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-26081 `__: Added C " -#~ "implementation of asyncio.Future. Original patch by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-28379 `__: Added sanity checks " -#~ "and tests for PyUnicode_CopyCharacters(). Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-28379 `__: Added sanity checks " -#~ "and tests for PyUnicode_CopyCharacters(). Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-28376 `__: The type of long " -#~ "range iterator is now registered as Iterator. Patch by Oren Milman." -#~ msgstr "" -#~ "`bpo-28376 `__: The type of long " -#~ "range iterator is now registered as Iterator. Patch by Oren Milman." - -#~ msgid "" -#~ "`bpo-28376 `__: Creating instances of " -#~ "range_iterator by calling range_iterator type now is deprecated. Patch " -#~ "by Oren Milman." -#~ msgstr "" -#~ "`bpo-28376 `__: Creating instances of " -#~ "range_iterator by calling range_iterator type now is deprecated. Patch " -#~ "by Oren Milman." - -#~ msgid "" -#~ "`bpo-28376 `__: The constructor of " -#~ "range_iterator now checks that step is not 0. Patch by Oren Milman." -#~ msgstr "" -#~ "`bpo-28376 `__: The constructor of " -#~ "range_iterator now checks that step is not 0. Patch by Oren Milman." - -#~ msgid "" -#~ "`bpo-26906 `__: Resolving special " -#~ "methods of uninitialized type now causes implicit initialization of the " -#~ "type instead of a fail." -#~ msgstr "" -#~ "`bpo-26906 `__: Resolving special " -#~ "methods of uninitialized type now causes implicit initialization of the " -#~ "type instead of a fail." - -#~ msgid "" -#~ "`bpo-18287 `__: PyType_Ready() now " -#~ "checks that tp_name is not NULL. Original patch by Niklas Koep." -#~ msgstr "" -#~ "`bpo-18287 `__: PyType_Ready() now " -#~ "checks that tp_name is not NULL. Original patch by Niklas Koep." - -#~ msgid "" -#~ "`bpo-24098 `__: Fixed possible crash " -#~ "when AST is changed in process of compiling it." -#~ msgstr "" -#~ "`bpo-24098 `__: Fixed possible crash " -#~ "when AST is changed in process of compiling it." - -#~ msgid "" -#~ "`bpo-28201 `__: Dict reduces " -#~ "possibility of 2nd conflict in hash table when hashes have same lower " -#~ "bits." -#~ msgstr "" -#~ "`bpo-28201 `__: Dict reduces " -#~ "possibility of 2nd conflict in hash table when hashes have same lower " -#~ "bits." - -#~ msgid "" -#~ "`bpo-28350 `__: String constants with " -#~ "null character no longer interned." -#~ msgstr "" -#~ "`bpo-28350 `__: String constants with " -#~ "null character no longer interned." - -#~ msgid "" -#~ "`bpo-26617 `__: Fix crash when GC " -#~ "runs during weakref callbacks." -#~ msgstr "" -#~ "`bpo-26617 `__: Fix crash when GC " -#~ "runs during weakref callbacks." - -#~ msgid "" -#~ "`bpo-27942 `__: String constants now " -#~ "interned recursively in tuples and frozensets." -#~ msgstr "" -#~ "`bpo-27942 `__: String constants now " -#~ "interned recursively in tuples and frozensets." - -#~ msgid "" -#~ "`bpo-21578 `__: Fixed misleading " -#~ "error message when ImportError called with invalid keyword args." -#~ msgstr "" -#~ "`bpo-21578 `__: Fixed misleading " -#~ "error message when ImportError called with invalid keyword args." - -#~ msgid "" -#~ "`bpo-28203 `__: Fix incorrect type in " -#~ "complex(1.0, {2:3}) error message. Patch by Soumya Sharma." -#~ msgstr "" -#~ "`bpo-28203 `__: Fix incorrect type in " -#~ "complex(1.0, {2:3}) error message. Patch by Soumya Sharma." - -#~ msgid "" -#~ "`bpo-28086 `__: Single var-positional " -#~ "argument of tuple subtype was passed unscathed to the C-defined " -#~ "function. Now it is converted to exact tuple." -#~ msgstr "" -#~ "`bpo-28086 `__: Single var-positional " -#~ "argument of tuple subtype was passed unscathed to the C-defined " -#~ "function. Now it is converted to exact tuple." - -#~ msgid "" -#~ "`bpo-28214 `__: Now __set_name__ is " -#~ "looked up on the class instead of the instance." -#~ msgstr "" -#~ "`bpo-28214 `__: Now __set_name__ is " -#~ "looked up on the class instead of the instance." - -#~ msgid "" -#~ "`bpo-27955 `__: Fallback on reading /" -#~ "dev/urandom device when the getrandom() syscall fails with EPERM, for " -#~ "example when blocked by SECCOMP." -#~ msgstr "" -#~ "`bpo-27955 `__: Fallback on reading /" -#~ "dev/urandom device when the getrandom() syscall fails with EPERM, for " -#~ "example when blocked by SECCOMP." - -#~ msgid "" -#~ "`bpo-28192 `__: Don't import readline " -#~ "in isolated mode." -#~ msgstr "" -#~ "`bpo-28192 `__: Don't import readline " -#~ "in isolated mode." - -#~ msgid "" -#~ "`bpo-28131 `__: Fix a regression in " -#~ "zipimport's compile_source(). zipimport should use the same optimization " -#~ "level as the interpreter." -#~ msgstr "" -#~ "`bpo-28131 `__: Fix a regression in " -#~ "zipimport's compile_source(). zipimport should use the same optimization " -#~ "level as the interpreter." - -#~ msgid "" -#~ "`bpo-28126 `__: Replace Py_MEMCPY " -#~ "with memcpy(). Visual Studio can properly optimize memcpy()." -#~ msgstr "" -#~ "`bpo-28126 `__: Replace Py_MEMCPY " -#~ "with memcpy(). Visual Studio can properly optimize memcpy()." - -#~ msgid "" -#~ "`bpo-28120 `__: Fix dict.pop() for " -#~ "splitted dictionary when trying to remove a \"pending key\" (Not yet " -#~ "inserted in split-table). Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-28120 `__: Fix dict.pop() for " -#~ "splitted dictionary when trying to remove a \"pending key\" (Not yet " -#~ "inserted in split-table). Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26182 `__: Raise " -#~ "DeprecationWarning when async and await keywords are used as variable/" -#~ "attribute/class/function name." -#~ msgstr "" -#~ "`bpo-26182 `__: Raise " -#~ "DeprecationWarning when async and await keywords are used as variable/" -#~ "attribute/class/function name." - -#~ msgid "" -#~ "`bpo-27998 `__: Fixed bytes path " -#~ "support in os.scandir() on Windows. Patch by Eryk Sun." -#~ msgstr "" -#~ "`bpo-27998 `__: Fixed bytes path " -#~ "support in os.scandir() on Windows. Patch by Eryk Sun." - -#~ msgid "" -#~ "`bpo-28317 `__: The disassembler now " -#~ "decodes FORMAT_VALUE argument." -#~ msgstr "" -#~ "`bpo-28317 `__: The disassembler now " -#~ "decodes FORMAT_VALUE argument." - -#~ msgid "" -#~ "`bpo-26293 `__: Fixed writing ZIP " -#~ "files that starts not from the start of the file. Offsets in ZIP file " -#~ "now are relative to the start of the archive in conforming to the " -#~ "specification." -#~ msgstr "" -#~ "`bpo-26293 `__: Fixed writing ZIP " -#~ "files that starts not from the start of the file. Offsets in ZIP file " -#~ "now are relative to the start of the archive in conforming to the " -#~ "specification." - -#~ msgid "" -#~ "`bpo-28380 `__: unittest.mock Mock " -#~ "autospec functions now properly support assert_called, assert_not_called, " -#~ "and assert_called_once." -#~ msgstr "" -#~ "`bpo-28380 `__: unittest.mock Mock " -#~ "autospec functions now properly support assert_called, assert_not_called, " -#~ "and assert_called_once." - -#~ msgid "" -#~ "`bpo-27181 `__ remove statistics." -#~ "geometric_mean and defer until 3.7." -#~ msgstr "" -#~ "`bpo-27181 `__ remove statistics." -#~ "geometric_mean and defer until 3.7." - -#~ msgid "" -#~ "`bpo-28229 `__: lzma module now " -#~ "supports pathlib." -#~ msgstr "" -#~ "`bpo-28229 `__: lzma module now " -#~ "supports pathlib." - -#~ msgid "" -#~ "`bpo-28321 `__: Fixed writing non-BMP " -#~ "characters with binary format in plistlib." -#~ msgstr "" -#~ "`bpo-28321 `__: Fixed writing non-BMP " -#~ "characters with binary format in plistlib." - -#~ msgid "" -#~ "`bpo-28225 `__: bz2 module now " -#~ "supports pathlib. Initial patch by Ethan Furman." -#~ msgstr "" -#~ "`bpo-28225 `__: bz2 module now " -#~ "supports pathlib. Initial patch by Ethan Furman." - -#~ msgid "" -#~ "`bpo-28227 `__: gzip now supports " -#~ "pathlib. Patch by Ethan Furman." -#~ msgstr "" -#~ "`bpo-28227 `__: gzip now supports " -#~ "pathlib. Patch by Ethan Furman." - -#~ msgid "" -#~ "`bpo-27358 `__: Optimized merging var-" -#~ "keyword arguments and improved error message when passing a non-mapping " -#~ "as a var-keyword argument." -#~ msgstr "" -#~ "`bpo-27358 `__: Optimized merging var-" -#~ "keyword arguments and improved error message when passing a non-mapping " -#~ "as a var-keyword argument." - -#~ msgid "" -#~ "`bpo-28257 `__: Improved error " -#~ "message when passing a non-iterable as a var-positional argument. Added " -#~ "opcode BUILD_TUPLE_UNPACK_WITH_CALL." -#~ msgstr "" -#~ "`bpo-28257 `__: Improved error " -#~ "message when passing a non-iterable as a var-positional argument. Added " -#~ "opcode BUILD_TUPLE_UNPACK_WITH_CALL." - -#~ msgid "" -#~ "`bpo-28322 `__: Fixed possible " -#~ "crashes when unpickle itertools objects from incorrect pickle data. " -#~ "Based on patch by John Leitch." -#~ msgstr "" -#~ "`bpo-28322 `__: Fixed possible " -#~ "crashes when unpickle itertools objects from incorrect pickle data. " -#~ "Based on patch by John Leitch." - -#~ msgid "" -#~ "`bpo-28228 `__: imghdr now supports " -#~ "pathlib." -#~ msgstr "" -#~ "`bpo-28228 `__: imghdr now supports " -#~ "pathlib." - -#~ msgid "" -#~ "`bpo-28226 `__: compileall now " -#~ "supports pathlib." -#~ msgstr "" -#~ "`bpo-28226 `__: compileall now " -#~ "supports pathlib." - -#~ msgid "" -#~ "`bpo-28314 `__: Fix function " -#~ "declaration (C flags) for the getiterator() method of xml.etree." -#~ "ElementTree.Element." -#~ msgstr "" -#~ "`bpo-28314 `__: Fix function " -#~ "declaration (C flags) for the getiterator() method of xml.etree." -#~ "ElementTree.Element." - -#~ msgid "" -#~ "`bpo-28148 `__: Stop using " -#~ "localtime() and gmtime() in the time module." -#~ msgstr "" -#~ "`bpo-28148 `__: Stop using " -#~ "localtime() and gmtime() in the time module." - -#~ msgid "" -#~ "`bpo-28253 `__: Fixed calendar " -#~ "functions for extreme months: 0001-01 and 9999-12." -#~ msgstr "" -#~ "`bpo-28253 `__: Fixed calendar " -#~ "functions for extreme months: 0001-01 and 9999-12." - -#~ msgid "" -#~ "`bpo-28275 `__: Fixed possible use " -#~ "after free in the decompress() methods of the LZMADecompressor and " -#~ "BZ2Decompressor classes. Original patch by John Leitch." -#~ msgstr "" -#~ "`bpo-28275 `__: Fixed possible use " -#~ "after free in the decompress() methods of the LZMADecompressor and " -#~ "BZ2Decompressor classes. Original patch by John Leitch." - -#~ msgid "" -#~ "`bpo-27897 `__: Fixed possible crash " -#~ "in sqlite3.Connection.create_collation() if pass invalid string-like " -#~ "object as a name. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27897 `__: Fixed possible crash " -#~ "in sqlite3.Connection.create_collation() if pass invalid string-like " -#~ "object as a name. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-18844 `__: random.choices() now " -#~ "has k as a keyword-only argument to improve the readability of common " -#~ "cases and come into line with the signature used in other languages." -#~ msgstr "" -#~ "`bpo-18844 `__: random.choices() now " -#~ "has k as a keyword-only argument to improve the readability of common " -#~ "cases and come into line with the signature used in other languages." - -#~ msgid "" -#~ "`bpo-18893 `__: Fix invalid exception " -#~ "handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May." -#~ msgstr "" -#~ "`bpo-18893 `__: Fix invalid exception " -#~ "handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May." - -#~ msgid "" -#~ "`bpo-27611 `__: Fixed support of " -#~ "default root window in the tkinter.tix module. Added the master parameter " -#~ "in the DisplayStyle constructor." -#~ msgstr "" -#~ "`bpo-27611 `__: Fixed support of " -#~ "default root window in the tkinter.tix module. Added the master parameter " -#~ "in the DisplayStyle constructor." - -#~ msgid "" -#~ "`bpo-27348 `__: In the traceback " -#~ "module, restore the formatting of exception messages like \"Exception: " -#~ "None\". This fixes a regression introduced in 3.5a2." -#~ msgstr "" -#~ "`bpo-27348 `__: In the traceback " -#~ "module, restore the formatting of exception messages like \"Exception: " -#~ "None\". This fixes a regression introduced in 3.5a2." - -#~ msgid "" -#~ "`bpo-25651 `__: Allow falsy values to " -#~ "be used for msg parameter of subTest()." -#~ msgstr "" -#~ "`bpo-25651 `__: Allow falsy values to " -#~ "be used for msg parameter of subTest()." - -#~ msgid "" -#~ "`bpo-27778 `__: Fix a memory leak in " -#~ "os.getrandom() when the getrandom() is interrupted by a signal and a " -#~ "signal handler raises a Python exception." -#~ msgstr "" -#~ "`bpo-27778 `__: Fix a memory leak in " -#~ "os.getrandom() when the getrandom() is interrupted by a signal and a " -#~ "signal handler raises a Python exception." - -#~ msgid "" -#~ "`bpo-28200 `__: Fix memory leak on " -#~ "Windows in the os module (fix path_converter() function)." -#~ msgstr "" -#~ "`bpo-28200 `__: Fix memory leak on " -#~ "Windows in the os module (fix path_converter() function)." - -#~ msgid "" -#~ "`bpo-25400 `__: RobotFileParser now " -#~ "correctly returns default values for crawl_delay and request_rate. " -#~ "Initial patch by Peter Wirtz." -#~ msgstr "" -#~ "`bpo-25400 `__: RobotFileParser now " -#~ "correctly returns default values for crawl_delay and request_rate. " -#~ "Initial patch by Peter Wirtz." - -#~ msgid "" -#~ "`bpo-27932 `__: Prevent memory leak " -#~ "in win32_ver()." -#~ msgstr "" -#~ "`bpo-27932 `__: Prevent memory leak " -#~ "in win32_ver()." - -#~ msgid "" -#~ "`bpo-28075 `__: Check for " -#~ "ERROR_ACCESS_DENIED in Windows implementation of os.stat(). Patch by " -#~ "Eryk Sun." -#~ msgstr "" -#~ "`bpo-28075 `__: Check for " -#~ "ERROR_ACCESS_DENIED in Windows implementation of os.stat(). Patch by " -#~ "Eryk Sun." - -#~ msgid "" -#~ "`bpo-22493 `__: Warning message " -#~ "emitted by using inline flags in the middle of regular expression now " -#~ "contains a (truncated) regex pattern. Patch by Tim Graham." -#~ msgstr "" -#~ "`bpo-22493 `__: Warning message " -#~ "emitted by using inline flags in the middle of regular expression now " -#~ "contains a (truncated) regex pattern. Patch by Tim Graham." - -#~ msgid "" -#~ "`bpo-25270 `__: Prevent codecs." -#~ "escape_encode() from raising SystemError when an empty bytestring is " -#~ "passed." -#~ msgstr "" -#~ "`bpo-25270 `__: Prevent codecs." -#~ "escape_encode() from raising SystemError when an empty bytestring is " -#~ "passed." - -#~ msgid "" -#~ "`bpo-28181 `__: Get antigravity over " -#~ "HTTPS. Patch by Kaartic Sivaraam." -#~ msgstr "" -#~ "`bpo-28181 `__: Get antigravity over " -#~ "HTTPS. Patch by Kaartic Sivaraam." - -#~ msgid "" -#~ "`bpo-25895 `__: Enable WebSocket URL " -#~ "schemes in urllib.parse.urljoin. Patch by Gergely Imreh and Markus " -#~ "Holtermann." -#~ msgstr "" -#~ "`bpo-25895 `__: Enable WebSocket URL " -#~ "schemes in urllib.parse.urljoin. Patch by Gergely Imreh and Markus " -#~ "Holtermann." - -#~ msgid "" -#~ "`bpo-28114 `__: Fix a crash in " -#~ "parse_envlist() when env contains byte strings. Patch by Eryk Sun." -#~ msgstr "" -#~ "`bpo-28114 `__: Fix a crash in " -#~ "parse_envlist() when env contains byte strings. Patch by Eryk Sun." - -#~ msgid "" -#~ "`bpo-27599 `__: Fixed buffer overrun " -#~ "in binascii.b2a_qp() and binascii.a2b_qp()." -#~ msgstr "" -#~ "`bpo-27599 `__: Fixed buffer overrun " -#~ "in binascii.b2a_qp() and binascii.a2b_qp()." - -#~ msgid "" -#~ "`bpo-27906 `__: Fix socket accept " -#~ "exhaustion during high TCP traffic. Patch by Kevin Conway." -#~ msgstr "" -#~ "`bpo-27906 `__: Fix socket accept " -#~ "exhaustion during high TCP traffic. Patch by Kevin Conway." - -#~ msgid "" -#~ "`bpo-28174 `__: Handle when " -#~ "SO_REUSEPORT isn't properly supported. Patch by Seth Michael Larson." -#~ msgstr "" -#~ "`bpo-28174 `__: Handle when " -#~ "SO_REUSEPORT isn't properly supported. Patch by Seth Michael Larson." - -#~ msgid "" -#~ "`bpo-26654 `__: Inspect functools." -#~ "partial in asyncio.Handle.__repr__. Patch by iceboy." -#~ msgstr "" -#~ "`bpo-26654 `__: Inspect functools." -#~ "partial in asyncio.Handle.__repr__. Patch by iceboy." - -#~ msgid "" -#~ "`bpo-26909 `__: Fix slow pipes IO in " -#~ "asyncio. Patch by INADA Naoki." -#~ msgstr "" -#~ "`bpo-26909 `__: Fix slow pipes IO in " -#~ "asyncio. Patch by INADA Naoki." - -#~ msgid "" -#~ "`bpo-28176 `__: Fix callbacks race in " -#~ "asyncio.SelectorLoop.sock_connect." -#~ msgstr "" -#~ "`bpo-28176 `__: Fix callbacks race in " -#~ "asyncio.SelectorLoop.sock_connect." - -#~ msgid "" -#~ "`bpo-27759 `__: Fix selectors " -#~ "incorrectly retain invalid file descriptors. Patch by Mark Williams." -#~ msgstr "" -#~ "`bpo-27759 `__: Fix selectors " -#~ "incorrectly retain invalid file descriptors. Patch by Mark Williams." - -#~ msgid "" -#~ "`bpo-28368 `__: Refuse monitoring " -#~ "processes if the child watcher has no loop attached. Patch by Vincent " -#~ "Michel." -#~ msgstr "" -#~ "`bpo-28368 `__: Refuse monitoring " -#~ "processes if the child watcher has no loop attached. Patch by Vincent " -#~ "Michel." - -#~ msgid "" -#~ "`bpo-28369 `__: Raise RuntimeError " -#~ "when transport's FD is used with add_reader, add_writer, etc." -#~ msgstr "" -#~ "`bpo-28369 `__: Raise RuntimeError " -#~ "when transport's FD is used with add_reader, add_writer, etc." - -#~ msgid "" -#~ "`bpo-28370 `__: Speedup asyncio." -#~ "StreamReader.readexactly. Patch by Коренберг Марк." -#~ msgstr "" -#~ "`bpo-28370 `__: Speedup asyncio." -#~ "StreamReader.readexactly. Patch by Коренберг Марк." - -#~ msgid "" -#~ "`bpo-28371 `__: Deprecate passing " -#~ "asyncio.Handles to run_in_executor." -#~ msgstr "" -#~ "`bpo-28371 `__: Deprecate passing " -#~ "asyncio.Handles to run_in_executor." - -#~ msgid "" -#~ "`bpo-28372 `__: Fix asyncio to " -#~ "support formatting of non-python coroutines." -#~ msgstr "" -#~ "`bpo-28372 `__: Fix asyncio to " -#~ "support formatting of non-python coroutines." - -#~ msgid "" -#~ "`bpo-28399 `__: Remove UNIX socket " -#~ "from FS before binding. Patch by Коренберг Марк." -#~ msgstr "" -#~ "`bpo-28399 `__: Remove UNIX socket " -#~ "from FS before binding. Patch by Коренберг Марк." - -#~ msgid "" -#~ "`bpo-27972 `__: Prohibit Tasks to " -#~ "await on themselves." -#~ msgstr "" -#~ "`bpo-27972 `__: Prohibit Tasks to " -#~ "await on themselves." - -#~ msgid "" -#~ "`bpo-28402 `__: Adds signed catalog " -#~ "files for stdlib on Windows." -#~ msgstr "" -#~ "`bpo-28402 `__: Adds signed catalog " -#~ "files for stdlib on Windows." - -#~ msgid "" -#~ "`bpo-28333 `__: Enables Unicode for " -#~ "ps1/ps2 and input() prompts. (Patch by Eryk Sun)" -#~ msgstr "" -#~ "`bpo-28333 `__: Enables Unicode for " -#~ "ps1/ps2 and input() prompts. (Patch by Eryk Sun)" - -#~ msgid "" -#~ "`bpo-28251 `__: Improvements to help " -#~ "manuals on Windows." -#~ msgstr "" -#~ "`bpo-28251 `__: Improvements to help " -#~ "manuals on Windows." - -#~ msgid "" -#~ "`bpo-28110 `__: launcher.msi has " -#~ "different product codes between 32-bit and 64-bit" -#~ msgstr "" -#~ "`bpo-28110 `__: launcher.msi has " -#~ "different product codes between 32-bit and 64-bit" - -#~ msgid "" -#~ "`bpo-28161 `__: Opening CON for write " -#~ "access fails" -#~ msgstr "" -#~ "`bpo-28161 `__: Opening CON for write " -#~ "access fails" - -#~ msgid "" -#~ "`bpo-28162 `__: WindowsConsoleIO " -#~ "readall() fails if first line starts with Ctrl+Z" -#~ msgstr "" -#~ "`bpo-28162 `__: WindowsConsoleIO " -#~ "readall() fails if first line starts with Ctrl+Z" - -#~ msgid "" -#~ "`bpo-28163 `__: WindowsConsoleIO " -#~ "fileno() passes wrong flags to _open_osfhandle" -#~ msgstr "" -#~ "`bpo-28163 `__: WindowsConsoleIO " -#~ "fileno() passes wrong flags to _open_osfhandle" - -#~ msgid "" -#~ "`bpo-28164 `__: " -#~ "_PyIO_get_console_type fails for various paths" -#~ msgstr "" -#~ "`bpo-28164 `__: " -#~ "_PyIO_get_console_type fails for various paths" - -#~ msgid "" -#~ "`bpo-28137 `__: Renames Windows path " -#~ "file to ._pth" -#~ msgstr "" -#~ "`bpo-28137 `__: Renames Windows path " -#~ "file to ._pth" - -#~ msgid "" -#~ "`bpo-28138 `__: Windows ._pth file " -#~ "should allow import site" -#~ msgstr "" -#~ "`bpo-28138 `__: Windows ._pth file " -#~ "should allow import site" - -#~ msgid "" -#~ "`bpo-28426 `__: Deprecated " -#~ "undocumented functions PyUnicode_AsEncodedObject(), " -#~ "PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and " -#~ "PyUnicode_AsEncodedUnicode()." -#~ msgstr "" -#~ "`bpo-28426 `__: Deprecated " -#~ "undocumented functions PyUnicode_AsEncodedObject(), " -#~ "PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and " -#~ "PyUnicode_AsEncodedUnicode()." - -#~ msgid "" -#~ "`bpo-28258 `__: Fixed build with " -#~ "Estonian locale (python-config and distclean targets in Makefile). Patch " -#~ "by Arfrever Frehtes Taifersar Arahesis." -#~ msgstr "" -#~ "`bpo-28258 `__: Fixed build with " -#~ "Estonian locale (python-config and distclean targets in Makefile). Patch " -#~ "by Arfrever Frehtes Taifersar Arahesis." - -#~ msgid "" -#~ "`bpo-26661 `__: setup.py now detects " -#~ "system libffi with multiarch wrapper." -#~ msgstr "" -#~ "`bpo-26661 `__: setup.py now detects " -#~ "system libffi with multiarch wrapper." - -#~ msgid "" -#~ "`bpo-15819 `__: Remove redundant " -#~ "include search directory option for building outside the source tree." -#~ msgstr "" -#~ "`bpo-15819 `__: Remove redundant " -#~ "include search directory option for building outside the source tree." - -#~ msgid "" -#~ "`bpo-28217 `__: Adds _testconsole " -#~ "module to test console input." -#~ msgstr "" -#~ "`bpo-28217 `__: Adds _testconsole " -#~ "module to test console input." - -#~ msgid "Python 3.6.0 beta 1" -#~ msgstr "Python 3.6.0 beta 1" - -#~ msgid "*Release date: 2016-09-12*" -#~ msgstr "*Date de sortie : 2016-09-12*" - -#~ msgid "" -#~ "`bpo-23722 `__: The __class__ cell " -#~ "used by zero-argument super() is now initialized from type.__new__ rather " -#~ "than __build_class__, so class methods relying on that will now work " -#~ "correctly when called from metaclass methods during class creation. Patch " -#~ "by Martin Teichmann." -#~ msgstr "" -#~ "`bpo-23722 `__: The __class__ cell " -#~ "used by zero-argument super() is now initialized from type.__new__ rather " -#~ "than __build_class__, so class methods relying on that will now work " -#~ "correctly when called from metaclass methods during class creation. Patch " -#~ "by Martin Teichmann." - -#~ msgid "" -#~ "`bpo-25221 `__: Fix corrupted result " -#~ "from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0." -#~ msgstr "" -#~ "`bpo-25221 `__: Fix corrupted result " -#~ "from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0." - -#~ msgid "" -#~ "`bpo-27080 `__: Implement formatting " -#~ "support for PEP 515. Initial patch by Chris Angelico." -#~ msgstr "" -#~ "`bpo-27080 `__: Implement formatting " -#~ "support for PEP 515. Initial patch by Chris Angelico." - -#~ msgid "" -#~ "`bpo-27199 `__: In tarfile, expose " -#~ "copyfileobj bufsize to improve throughput. Patch by Jason Fried." -#~ msgstr "" -#~ "`bpo-27199 `__: In tarfile, expose " -#~ "copyfileobj bufsize to improve throughput. Patch by Jason Fried." - -#~ msgid "" -#~ "`bpo-27948 `__: In f-strings, only " -#~ "allow backslashes inside the braces (where the expressions are). This is " -#~ "a breaking change from the 3.6 alpha releases, where backslashes are " -#~ "allowed anywhere in an f-string. Also, require that expressions inside f-" -#~ "strings be enclosed within literal braces, and not escapes like ``f'\\x7b" -#~ "\"hi\"\\x7d'``." -#~ msgstr "" -#~ "`bpo-27948 `__: In f-strings, only " -#~ "allow backslashes inside the braces (where the expressions are). This is " -#~ "a breaking change from the 3.6 alpha releases, where backslashes are " -#~ "allowed anywhere in an f-string. Also, require that expressions inside f-" -#~ "strings be enclosed within literal braces, and not escapes like ``f'\\x7b" -#~ "\"hi\"\\x7d'``." - -#~ msgid "" -#~ "`bpo-28046 `__: Remove platform-" -#~ "specific directories from sys.path." -#~ msgstr "" -#~ "`bpo-28046 `__: Remove platform-" -#~ "specific directories from sys.path." - -#~ msgid "" -#~ "`bpo-28071 `__: Add early-out for " -#~ "differencing from an empty set." -#~ msgstr "" -#~ "`bpo-28071 `__: Add early-out for " -#~ "differencing from an empty set." - -#~ msgid "" -#~ "`bpo-25758 `__: Prevents zipimport " -#~ "from unnecessarily encoding a filename (patch by Eryk Sun)" -#~ msgstr "" -#~ "`bpo-25758 `__: Prevents zipimport " -#~ "from unnecessarily encoding a filename (patch by Eryk Sun)" - -#~ msgid "" -#~ "`bpo-25856 `__: The __module__ " -#~ "attribute of extension classes and functions now is interned. This leads " -#~ "to more compact pickle data with protocol 4." -#~ msgstr "" -#~ "`bpo-25856 `__: The __module__ " -#~ "attribute of extension classes and functions now is interned. This leads " -#~ "to more compact pickle data with protocol 4." - -#~ msgid "" -#~ "`bpo-27213 `__: Rework CALL_FUNCTION* " -#~ "opcodes to produce shorter and more efficient bytecode. Patch by Demur " -#~ "Rumed, design by Serhiy Storchaka, reviewed by Serhiy Storchaka and " -#~ "Victor Stinner." -#~ msgstr "" -#~ "`bpo-27213 `__: Rework CALL_FUNCTION* " -#~ "opcodes to produce shorter and more efficient bytecode. Patch by Demur " -#~ "Rumed, design by Serhiy Storchaka, reviewed by Serhiy Storchaka and " -#~ "Victor Stinner." - -#~ msgid "" -#~ "`bpo-26331 `__: Implement tokenizing " -#~ "support for PEP 515. Patch by Georg Brandl." -#~ msgstr "" -#~ "`bpo-26331 `__: Implement tokenizing " -#~ "support for PEP 515. Patch by Georg Brandl." - -#~ msgid "" -#~ "`bpo-27999 `__: Make \"global after " -#~ "use\" a SyntaxError, and ditto for nonlocal. Patch by Ivan Levkivskyi." -#~ msgstr "" -#~ "`bpo-27999 `__: Make \"global after " -#~ "use\" a SyntaxError, and ditto for nonlocal. Patch by Ivan Levkivskyi." - -#~ msgid "" -#~ "`bpo-28003 `__: Implement PEP 525 -- " -#~ "Asynchronous Generators." -#~ msgstr "" -#~ "`bpo-28003 `__: Implement PEP 525 -- " -#~ "Asynchronous Generators." - -#~ msgid "" -#~ "`bpo-27985 `__: Implement PEP 526 -- " -#~ "Syntax for Variable Annotations. Patch by Ivan Levkivskyi." -#~ msgstr "" -#~ "`bpo-27985 `__: Implement PEP 526 -- " -#~ "Syntax for Variable Annotations. Patch by Ivan Levkivskyi." - -#~ msgid "" -#~ "`bpo-26058 `__: Add a new private " -#~ "version to the builtin dict type, incremented at each dictionary creation " -#~ "and at each dictionary change. Implementation of the PEP 509." -#~ msgstr "" -#~ "`bpo-26058 `__: Add a new private " -#~ "version to the builtin dict type, incremented at each dictionary creation " -#~ "and at each dictionary change. Implementation of the PEP 509." - -#~ msgid "" -#~ "`bpo-27364 `__: A backslash-character " -#~ "pair that is not a valid escape sequence now generates a " -#~ "DeprecationWarning. Patch by Emanuel Barry." -#~ msgstr "" -#~ "`bpo-27364 `__: A backslash-character " -#~ "pair that is not a valid escape sequence now generates a " -#~ "DeprecationWarning. Patch by Emanuel Barry." - -#~ msgid "" -#~ "`bpo-27350 `__: `dict` implementation " -#~ "is changed like PyPy. It is more compact and preserves insertion order. " -#~ "(Concept developed by Raymond Hettinger and patch by Inada Naoki.)" -#~ msgstr "" -#~ "`bpo-27350 `__: `dict` implementation " -#~ "is changed like PyPy. It is more compact and preserves insertion order. " -#~ "(Concept developed by Raymond Hettinger and patch by Inada Naoki.)" - -#~ msgid "" -#~ "`bpo-27911 `__: Remove unnecessary " -#~ "error checks in ``exec_builtin_or_dynamic()``." -#~ msgstr "" -#~ "`bpo-27911 `__: Remove unnecessary " -#~ "error checks in ``exec_builtin_or_dynamic()``." - -#~ msgid "" -#~ "`bpo-27078 `__: Added BUILD_STRING " -#~ "opcode. Optimized f-strings evaluation." -#~ msgstr "" -#~ "`bpo-27078 `__: Added BUILD_STRING " -#~ "opcode. Optimized f-strings evaluation." - -#~ msgid "" -#~ "`bpo-17884 `__: Python now requires " -#~ "systems with inttypes.h and stdint.h" -#~ msgstr "" -#~ "`bpo-17884 `__: Python now requires " -#~ "systems with inttypes.h and stdint.h" - -#~ msgid "" -#~ "`bpo-27961 `__: Require platforms to " -#~ "support ``long long``. Python hasn't compiled without ``long long`` for " -#~ "years, so this is basically a formality." -#~ msgstr "" -#~ "`bpo-27961 `__: Require platforms to " -#~ "support ``long long``. Python hasn't compiled without ``long long`` for " -#~ "years, so this is basically a formality." - -#~ msgid "" -#~ "`bpo-27355 `__: Removed support for " -#~ "Windows CE. It was never finished, and Windows CE is no longer a " -#~ "relevant platform for Python." -#~ msgstr "" -#~ "`bpo-27355 `__: Removed support for " -#~ "Windows CE. It was never finished, and Windows CE is no longer a " -#~ "relevant platform for Python." - -#~ msgid "" -#~ "`bpo-27870 `__: A left shift of zero " -#~ "by a large integer no longer attempts to allocate large amounts of memory." -#~ msgstr "" -#~ "`bpo-27870 `__: A left shift of zero " -#~ "by a large integer no longer attempts to allocate large amounts of memory." - -#~ msgid "" -#~ "`bpo-25402 `__: In int-to-decimal-" -#~ "string conversion, improve the estimate of the intermediate memory " -#~ "required, and remove an unnecessarily strict overflow check. Patch by " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-25402 `__: In int-to-decimal-" -#~ "string conversion, improve the estimate of the intermediate memory " -#~ "required, and remove an unnecessarily strict overflow check. Patch by " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-27214 `__: In long_invert, be " -#~ "more careful about modifying object returned by long_add, and remove an " -#~ "unnecessary check for small longs. Thanks Oren Milman for analysis and " -#~ "patch." -#~ msgstr "" -#~ "`bpo-27214 `__: In long_invert, be " -#~ "more careful about modifying object returned by long_add, and remove an " -#~ "unnecessary check for small longs. Thanks Oren Milman for analysis and " -#~ "patch." - -#~ msgid "" -#~ "`bpo-27506 `__: Support passing the " -#~ "bytes/bytearray.translate() \"delete\" argument by keyword." -#~ msgstr "" -#~ "`bpo-27506 `__: Support passing the " -#~ "bytes/bytearray.translate() \"delete\" argument by keyword." - -#~ msgid "" -#~ "`bpo-27812 `__: Properly clear out a " -#~ "generator's frame's backreference to the generator to prevent crashes in " -#~ "frame.clear()." -#~ msgstr "" -#~ "`bpo-27812 `__: Properly clear out a " -#~ "generator's frame's backreference to the generator to prevent crashes in " -#~ "frame.clear()." - -#~ msgid "" -#~ "`bpo-27811 `__: Fix a crash when a " -#~ "coroutine that has not been awaited is finalized with warnings-as-errors " -#~ "enabled." -#~ msgstr "" -#~ "`bpo-27811 `__: Fix a crash when a " -#~ "coroutine that has not been awaited is finalized with warnings-as-errors " -#~ "enabled." - -#~ msgid "" -#~ "`bpo-27587 `__: Fix another issue " -#~ "found by PVS-Studio: Null pointer check after use of 'def' in " -#~ "_PyState_AddModule(). Initial patch by Christian Heimes." -#~ msgstr "" -#~ "`bpo-27587 `__: Fix another issue " -#~ "found by PVS-Studio: Null pointer check after use of 'def' in " -#~ "_PyState_AddModule(). Initial patch by Christian Heimes." - -#~ msgid "" -#~ "`bpo-27792 `__: The modulo operation " -#~ "applied to ``bool`` and other ``int`` subclasses now always returns an " -#~ "``int``. Previously the return type depended on the input values. Patch " -#~ "by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27792 `__: The modulo operation " -#~ "applied to ``bool`` and other ``int`` subclasses now always returns an " -#~ "``int``. Previously the return type depended on the input values. Patch " -#~ "by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26984 `__: int() now always " -#~ "returns an instance of exact int." -#~ msgstr "" -#~ "`bpo-26984 `__: int() now always " -#~ "returns an instance of exact int." - -#~ msgid "" -#~ "`bpo-25604 `__: Fix a minor bug in " -#~ "integer true division; this bug could potentially have caused off-by-one-" -#~ "ulp results on platforms with unreliable ldexp implementations." -#~ msgstr "" -#~ "`bpo-25604 `__: Fix a minor bug in " -#~ "integer true division; this bug could potentially have caused off-by-one-" -#~ "ulp results on platforms with unreliable ldexp implementations." - -#~ msgid "" -#~ "`bpo-24254 `__: Make class definition " -#~ "namespace ordered by default." -#~ msgstr "" -#~ "`bpo-24254 `__: Make class definition " -#~ "namespace ordered by default." - -#~ msgid "" -#~ "`bpo-27662 `__: Fix an overflow check " -#~ "in ``List_New``: the original code was checking against ``Py_SIZE_MAX`` " -#~ "instead of the correct upper bound of ``Py_SSIZE_T_MAX``. Patch by Xiang " -#~ "Zhang." -#~ msgstr "" -#~ "`bpo-27662 `__: Fix an overflow check " -#~ "in ``List_New``: the original code was checking against ``Py_SIZE_MAX`` " -#~ "instead of the correct upper bound of ``Py_SSIZE_T_MAX``. Patch by Xiang " -#~ "Zhang." - -#~ msgid "" -#~ "`bpo-27782 `__: Multi-phase extension " -#~ "module import now correctly allows the ``m_methods`` field to be used to " -#~ "add module level functions to instances of non-module types returned from " -#~ "``Py_create_mod``. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27782 `__: Multi-phase extension " -#~ "module import now correctly allows the ``m_methods`` field to be used to " -#~ "add module level functions to instances of non-module types returned from " -#~ "``Py_create_mod``. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-27936 `__: The round() function " -#~ "accepted a second None argument for some types but not for others. Fixed " -#~ "the inconsistency by accepting None for all numeric types." -#~ msgstr "" -#~ "`bpo-27936 `__: The round() function " -#~ "accepted a second None argument for some types but not for others. Fixed " -#~ "the inconsistency by accepting None for all numeric types." - -#~ msgid "" -#~ "`bpo-27487 `__: Warn if a submodule " -#~ "argument to \"python -m\" or runpy.run_module() is found in sys.modules " -#~ "after parent packages are imported, but before the submodule is executed." -#~ msgstr "" -#~ "`bpo-27487 `__: Warn if a submodule " -#~ "argument to \"python -m\" or runpy.run_module() is found in sys.modules " -#~ "after parent packages are imported, but before the submodule is executed." - -#~ msgid "" -#~ "`bpo-27157 `__: Make only type() " -#~ "itself accept the one-argument form. Patch by Eryk Sun and Emanuel Barry." -#~ msgstr "" -#~ "`bpo-27157 `__: Make only type() " -#~ "itself accept the one-argument form. Patch by Eryk Sun and Emanuel Barry." - -#~ msgid "" -#~ "`bpo-27558 `__: Fix a SystemError in " -#~ "the implementation of \"raise\" statement. In a brand new thread, raise a " -#~ "RuntimeError since there is no active exception to reraise. Patch written " -#~ "by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27558 `__: Fix a SystemError in " -#~ "the implementation of \"raise\" statement. In a brand new thread, raise a " -#~ "RuntimeError since there is no active exception to reraise. Patch written " -#~ "by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-28008 `__: Implement PEP 530 -- " -#~ "asynchronous comprehensions." -#~ msgstr "" -#~ "`bpo-28008 `__: Implement PEP 530 -- " -#~ "asynchronous comprehensions." - -#~ msgid "" -#~ "`bpo-27942 `__: Fix memory leak in " -#~ "codeobject.c" -#~ msgstr "" -#~ "`bpo-27942 `__: Fix memory leak in " -#~ "codeobject.c" - -#~ msgid "" -#~ "`bpo-28732 `__: Fix crash in os." -#~ "spawnv() with no elements in args" -#~ msgstr "" -#~ "`bpo-28732 `__: Fix crash in os." -#~ "spawnv() with no elements in args" - -#~ msgid "" -#~ "`bpo-28485 `__: Always raise " -#~ "ValueError for negative compileall.compile_dir(workers=...) parameter, " -#~ "even when multithreading is unavailable." -#~ msgstr "" -#~ "`bpo-28485 `__: Always raise " -#~ "ValueError for negative compileall.compile_dir(workers=...) parameter, " -#~ "even when multithreading is unavailable." - -#~ msgid "" -#~ "`bpo-28037 `__: Use " -#~ "sqlite3_get_autocommit() instead of setting Connection->inTransaction " -#~ "manually." -#~ msgstr "" -#~ "`bpo-28037 `__: Use " -#~ "sqlite3_get_autocommit() instead of setting Connection->inTransaction " -#~ "manually." - -#~ msgid "" -#~ "`bpo-25283 `__: Attributes tm_gmtoff " -#~ "and tm_zone are now available on all platforms in the return values of " -#~ "time.localtime() and time.gmtime()." -#~ msgstr "" -#~ "`bpo-25283 `__: Attributes tm_gmtoff " -#~ "and tm_zone are now available on all platforms in the return values of " -#~ "time.localtime() and time.gmtime()." - -#~ msgid "" -#~ "`bpo-24454 `__: Regular expression " -#~ "match object groups are now accessible using __getitem__. \"mo[x]\" is " -#~ "equivalent to \"mo.group(x)\"." -#~ msgstr "" -#~ "`bpo-24454 `__: Regular expression " -#~ "match object groups are now accessible using __getitem__. \"mo[x]\" is " -#~ "equivalent to \"mo.group(x)\"." - -#~ msgid "" -#~ "`bpo-10740 `__: sqlite3 no longer " -#~ "implicitly commit an open transaction before DDL statements." -#~ msgstr "" -#~ "`bpo-10740 `__: sqlite3 no longer " -#~ "implicitly commit an open transaction before DDL statements." - -#~ msgid "" -#~ "`bpo-17941 `__: Add a *module* " -#~ "parameter to collections.namedtuple()." -#~ msgstr "" -#~ "`bpo-17941 `__: Add a *module* " -#~ "parameter to collections.namedtuple()." - -#~ msgid "" -#~ "`bpo-22493 `__: Inline flags now " -#~ "should be used only at the start of the regular expression. Deprecation " -#~ "warning is emitted if uses them in the middle of the regular expression." -#~ msgstr "" -#~ "`bpo-22493 `__: Inline flags now " -#~ "should be used only at the start of the regular expression. Deprecation " -#~ "warning is emitted if uses them in the middle of the regular expression." - -#~ msgid "" -#~ "`bpo-26885 `__: xmlrpc now supports " -#~ "unmarshalling additional data types used by Apache XML-RPC implementation " -#~ "for numerics and None." -#~ msgstr "" -#~ "`bpo-26885 `__: xmlrpc now supports " -#~ "unmarshalling additional data types used by Apache XML-RPC implementation " -#~ "for numerics and None." - -#~ msgid "" -#~ "`bpo-28070 `__: Fixed parsing inline " -#~ "verbose flag in regular expressions." -#~ msgstr "" -#~ "`bpo-28070 `__: Fixed parsing inline " -#~ "verbose flag in regular expressions." - -#~ msgid "" -#~ "`bpo-19500 `__: Add client-side SSL " -#~ "session resumption to the ssl module." -#~ msgstr "" -#~ "`bpo-19500 `__: Add client-side SSL " -#~ "session resumption to the ssl module." - -#~ msgid "" -#~ "`bpo-28022 `__: Deprecate ssl-related " -#~ "arguments in favor of SSLContext. The deprecation include manual creation " -#~ "of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, " -#~ "imaplib, smtplib, poplib and urllib." -#~ msgstr "" -#~ "`bpo-28022 `__: Deprecate ssl-related " -#~ "arguments in favor of SSLContext. The deprecation include manual creation " -#~ "of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, " -#~ "imaplib, smtplib, poplib and urllib." - -#~ msgid "" -#~ "`bpo-28043 `__: SSLContext has " -#~ "improved default settings: OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, " -#~ "OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE and " -#~ "HIGH ciphers without MD5." -#~ msgstr "" -#~ "`bpo-28043 `__: SSLContext has " -#~ "improved default settings: OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, " -#~ "OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE and " -#~ "HIGH ciphers without MD5." - -#~ msgid "" -#~ "`bpo-24693 `__: Changed some " -#~ "RuntimeError's in the zipfile module to more appropriate types. Improved " -#~ "some error messages and debugging output." -#~ msgstr "" -#~ "`bpo-24693 `__: Changed some " -#~ "RuntimeError's in the zipfile module to more appropriate types. Improved " -#~ "some error messages and debugging output." - -#~ msgid "" -#~ "`bpo-17909 `__: ``json.load`` and " -#~ "``json.loads`` now support binary input encoded as UTF-8, UTF-16 or " -#~ "UTF-32. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-17909 `__: ``json.load`` and " -#~ "``json.loads`` now support binary input encoded as UTF-8, UTF-16 or " -#~ "UTF-32. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-27137 `__: the pure Python " -#~ "fallback implementation of ``functools.partial`` now matches the " -#~ "behaviour of its accelerated C counterpart for subclassing, pickling and " -#~ "text representation purposes. Patch by Emanuel Barry and Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-27137 `__: the pure Python " -#~ "fallback implementation of ``functools.partial`` now matches the " -#~ "behaviour of its accelerated C counterpart for subclassing, pickling and " -#~ "text representation purposes. Patch by Emanuel Barry and Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-1703178 `__: Fix the ability " -#~ "to pass the --link-objects option to the distutils build_ext command." -#~ msgstr "" -#~ "`bpo-1703178 `__: Fix the ability " -#~ "to pass the --link-objects option to the distutils build_ext command." - -#~ msgid "" -#~ "`bpo-28019 `__: itertools.count() no " -#~ "longer rounds non-integer step in range between 1.0 and 2.0 to 1." -#~ msgstr "" -#~ "`bpo-28019 `__: itertools.count() no " -#~ "longer rounds non-integer step in range between 1.0 and 2.0 to 1." - -#~ msgid "" -#~ "`bpo-18401 `__: Pdb now supports the " -#~ "'readrc' keyword argument to control whether .pdbrc files should be " -#~ "read. Patch by Martin Matusiak and Sam Kimbrel." -#~ msgstr "" -#~ "`bpo-18401 `__: Pdb now supports the " -#~ "'readrc' keyword argument to control whether .pdbrc files should be " -#~ "read. Patch by Martin Matusiak and Sam Kimbrel." - -#~ msgid "" -#~ "`bpo-25969 `__: Update the lib2to3 " -#~ "grammar to handle the unpacking generalizations added in 3.5." -#~ msgstr "" -#~ "`bpo-25969 `__: Update the lib2to3 " -#~ "grammar to handle the unpacking generalizations added in 3.5." - -#~ msgid "" -#~ "`bpo-14977 `__: mailcap now respects " -#~ "the order of the lines in the mailcap files (\"first match\"), as " -#~ "required by RFC 1542. Patch by Michael Lazar." -#~ msgstr "" -#~ "`bpo-14977 `__: mailcap now respects " -#~ "the order of the lines in the mailcap files (\"first match\"), as " -#~ "required by RFC 1542. Patch by Michael Lazar." - -#~ msgid "" -#~ "`bpo-28082 `__: Convert re flag " -#~ "constants to IntFlag." -#~ msgstr "" -#~ "`bpo-28082 `__: Convert re flag " -#~ "constants to IntFlag." - -#~ msgid "" -#~ "`bpo-28025 `__: Convert all ssl " -#~ "module constants to IntEnum and IntFlags. SSLContext properties now " -#~ "return flags and enums." -#~ msgstr "" -#~ "`bpo-28025 `__: Convert all ssl " -#~ "module constants to IntEnum and IntFlags. SSLContext properties now " -#~ "return flags and enums." - -#~ msgid "" -#~ "`bpo-23591 `__: Add Flag, IntFlag, " -#~ "and auto() to enum module." -#~ msgstr "" -#~ "`bpo-23591 `__: Add Flag, IntFlag, " -#~ "and auto() to enum module." - -#~ msgid "" -#~ "`bpo-433028 `__: Added support of " -#~ "modifier spans in regular expressions." -#~ msgstr "" -#~ "`bpo-433028 `__: Added support of " -#~ "modifier spans in regular expressions." - -#~ msgid "" -#~ "`bpo-24594 `__: Validates persist " -#~ "parameter when opening MSI database" -#~ msgstr "" -#~ "`bpo-24594 `__: Validates persist " -#~ "parameter when opening MSI database" - -#~ msgid "" -#~ "`bpo-17582 `__: xml.etree.ElementTree " -#~ "nows preserves whitespaces in attributes (Patch by Duane Griffin. " -#~ "Reviewed and approved by Stefan Behnel.)" -#~ msgstr "" -#~ "`bpo-17582 `__: xml.etree.ElementTree " -#~ "nows preserves whitespaces in attributes (Patch by Duane Griffin. " -#~ "Reviewed and approved by Stefan Behnel.)" - -#~ msgid "" -#~ "`bpo-28047 `__: Fixed calculation of " -#~ "line length used for the base64 CTE in the new email policies." -#~ msgstr "" -#~ "`bpo-28047 `__: Fixed calculation of " -#~ "line length used for the base64 CTE in the new email policies." - -#~ msgid "" -#~ "`bpo-27576 `__: Fix call order in " -#~ "OrderedDict.__init__()." -#~ msgstr "" -#~ "`bpo-27576 `__: Fix call order in " -#~ "OrderedDict.__init__()." - -#~ msgid "" -#~ "`bpo-28027 `__: Remove undocumented " -#~ "modules from ``Lib/plat-*``: IN, CDROM, DLFCN, TYPES, CDIO, and STROPTS." -#~ msgstr "" -#~ "`bpo-28027 `__: Remove undocumented " -#~ "modules from ``Lib/plat-*``: IN, CDROM, DLFCN, TYPES, CDIO, and STROPTS." - -#~ msgid "" -#~ "`bpo-27445 `__: Don't pass " -#~ "str(_charset) to MIMEText.set_payload(). Patch by Claude Paroz." -#~ msgstr "" -#~ "`bpo-27445 `__: Don't pass " -#~ "str(_charset) to MIMEText.set_payload(). Patch by Claude Paroz." - -#~ msgid "" -#~ "`bpo-24277 `__: The new email API is " -#~ "no longer provisional, and the docs have been reorganized and rewritten " -#~ "to emphasize the new API." -#~ msgstr "" -#~ "`bpo-24277 `__: The new email API is " -#~ "no longer provisional, and the docs have been reorganized and rewritten " -#~ "to emphasize the new API." - -#~ msgid "" -#~ "`bpo-22450 `__: urllib now includes " -#~ "an ``Accept: */*`` header among the default headers. This makes the " -#~ "results of REST API requests more consistent and predictable especially " -#~ "when proxy servers are involved." -#~ msgstr "" -#~ "`bpo-22450 `__: urllib now includes " -#~ "an ``Accept: */*`` header among the default headers. This makes the " -#~ "results of REST API requests more consistent and predictable especially " -#~ "when proxy servers are involved." - -#~ msgid "" -#~ "`bpo-28005 `__: Allow ImportErrors in " -#~ "encoding implementation to propagate." -#~ msgstr "" -#~ "`bpo-28005 `__: Allow ImportErrors in " -#~ "encoding implementation to propagate." - -#~ msgid "" -#~ "`bpo-26667 `__: Support path-like " -#~ "objects in importlib.util." -#~ msgstr "" -#~ "`bpo-26667 `__: Support path-like " -#~ "objects in importlib.util." - -#~ msgid "" -#~ "`bpo-27570 `__: Avoid zero-length " -#~ "memcpy() etc calls with null source pointers in the \"ctypes\" and \"array" -#~ "\" modules." -#~ msgstr "" -#~ "`bpo-27570 `__: Avoid zero-length " -#~ "memcpy() etc calls with null source pointers in the \"ctypes\" and \"array" -#~ "\" modules." - -#~ msgid "" -#~ "`bpo-22233 `__: Break email header " -#~ "lines *only* on the RFC specified CR and LF characters, not on arbitrary " -#~ "unicode line breaks. This also fixes a bug in HTTP header parsing." -#~ msgstr "" -#~ "`bpo-22233 `__: Break email header " -#~ "lines *only* on the RFC specified CR and LF characters, not on arbitrary " -#~ "unicode line breaks. This also fixes a bug in HTTP header parsing." - -#~ msgid "" -#~ "`bpo-27331 `__: The email.mime " -#~ "classes now all accept an optional policy keyword." -#~ msgstr "" -#~ "`bpo-27331 `__: The email.mime " -#~ "classes now all accept an optional policy keyword." - -#~ msgid "" -#~ "`bpo-27988 `__: Fix email " -#~ "iter_attachments incorrect mutation of payload list." -#~ msgstr "" -#~ "`bpo-27988 `__: Fix email " -#~ "iter_attachments incorrect mutation of payload list." - -#~ msgid "" -#~ "`bpo-16113 `__: Add SHA-3 and SHAKE " -#~ "support to hashlib module." -#~ msgstr "" -#~ "`bpo-16113 `__: Add SHA-3 and SHAKE " -#~ "support to hashlib module." - -#~ msgid "" -#~ "`bpo-27776 `__: The :func:`os." -#~ "urandom` function does now block on Linux 3.17 and newer until the system " -#~ "urandom entropy pool is initialized to increase the security. This change " -#~ "is part of the :pep:`524`." -#~ msgstr "" -#~ "`bpo-27776 `__: The :func:`os." -#~ "urandom` function does now block on Linux 3.17 and newer until the system " -#~ "urandom entropy pool is initialized to increase the security. This change " -#~ "is part of the :pep:`524`." - -#~ msgid "" -#~ "`bpo-27778 `__: Expose the Linux " -#~ "``getrandom()`` syscall as a new :func:`os.getrandom` function. This " -#~ "change is part of the :pep:`524`." -#~ msgstr "" -#~ "`bpo-27778 `__: Expose the Linux " -#~ "``getrandom()`` syscall as a new :func:`os.getrandom` function. This " -#~ "change is part of the :pep:`524`." - -#~ msgid "" -#~ "`bpo-27691 `__: Fix ssl module's " -#~ "parsing of GEN_RID subject alternative name fields in X.509 certs." -#~ msgstr "" -#~ "`bpo-27691 `__: Fix ssl module's " -#~ "parsing of GEN_RID subject alternative name fields in X.509 certs." - -#~ msgid "" -#~ "`bpo-18844 `__: Add random.choices()." -#~ msgstr "" -#~ "`bpo-18844 `__: Add random.choices()." - -#~ msgid "" -#~ "`bpo-25761 `__: Improved error " -#~ "reporting about truncated pickle data in C implementation of unpickler. " -#~ "UnpicklingError is now raised instead of AttributeError and ValueError in " -#~ "some cases." -#~ msgstr "" -#~ "`bpo-25761 `__: Improved error " -#~ "reporting about truncated pickle data in C implementation of unpickler. " -#~ "UnpicklingError is now raised instead of AttributeError and ValueError in " -#~ "some cases." - -#~ msgid "" -#~ "`bpo-26798 `__: Add BLAKE2 (blake2b " -#~ "and blake2s) to hashlib." -#~ msgstr "" -#~ "`bpo-26798 `__: Add BLAKE2 (blake2b " -#~ "and blake2s) to hashlib." - -#~ msgid "" -#~ "`bpo-26032 `__: Optimized globbing in " -#~ "pathlib by using os.scandir(); it is now about 1.5--4 times faster." -#~ msgstr "" -#~ "`bpo-26032 `__: Optimized globbing in " -#~ "pathlib by using os.scandir(); it is now about 1.5--4 times faster." - -#~ msgid "" -#~ "`bpo-25596 `__: Optimized glob() and " -#~ "iglob() functions in the glob module; they are now about 3--6 times " -#~ "faster." -#~ msgstr "" -#~ "`bpo-25596 `__: Optimized glob() and " -#~ "iglob() functions in the glob module; they are now about 3--6 times " -#~ "faster." - -#~ msgid "" -#~ "`bpo-27928 `__: Add scrypt (password-" -#~ "based key derivation function) to hashlib module (requires OpenSSL 1.1.0)." -#~ msgstr "" -#~ "`bpo-27928 `__: Add scrypt (password-" -#~ "based key derivation function) to hashlib module (requires OpenSSL 1.1.0)." - -#~ msgid "" -#~ "`bpo-27850 `__: Remove 3DES from ssl " -#~ "module's default cipher list to counter measure sweet32 attack " -#~ "(CVE-2016-2183)." -#~ msgstr "" -#~ "`bpo-27850 `__: Remove 3DES from ssl " -#~ "module's default cipher list to counter measure sweet32 attack " -#~ "(CVE-2016-2183)." - -#~ msgid "" -#~ "`bpo-27766 `__: Add ChaCha20 Poly1305 " -#~ "to ssl module's default ciper list. (Required OpenSSL 1.1.0 or LibreSSL)." -#~ msgstr "" -#~ "`bpo-27766 `__: Add ChaCha20 Poly1305 " -#~ "to ssl module's default ciper list. (Required OpenSSL 1.1.0 or LibreSSL)." - -#~ msgid "" -#~ "`bpo-25387 `__: Check return value of " -#~ "winsound.MessageBeep." -#~ msgstr "" -#~ "`bpo-25387 `__: Check return value of " -#~ "winsound.MessageBeep." - -#~ msgid "" -#~ "`bpo-27866 `__: Add SSLContext." -#~ "get_ciphers() method to get a list of all enabled ciphers." -#~ msgstr "" -#~ "`bpo-27866 `__: Add SSLContext." -#~ "get_ciphers() method to get a list of all enabled ciphers." - -#~ msgid "" -#~ "`bpo-27744 `__: Add AF_ALG (Linux " -#~ "Kernel crypto) to socket module." -#~ msgstr "" -#~ "`bpo-27744 `__: Add AF_ALG (Linux " -#~ "Kernel crypto) to socket module." - -#~ msgid "" -#~ "`bpo-26470 `__: Port ssl and hashlib " -#~ "module to OpenSSL 1.1.0." -#~ msgstr "" -#~ "`bpo-26470 `__: Port ssl and hashlib " -#~ "module to OpenSSL 1.1.0." - -#~ msgid "" -#~ "`bpo-11620 `__: Fix support for " -#~ "SND_MEMORY in winsound.PlaySound. Based on a patch by Tim Lesher." -#~ msgstr "" -#~ "`bpo-11620 `__: Fix support for " -#~ "SND_MEMORY in winsound.PlaySound. Based on a patch by Tim Lesher." - -#~ msgid "" -#~ "`bpo-11734 `__: Add support for IEEE " -#~ "754 half-precision floats to the struct module. Based on a patch by Eli " -#~ "Stevens." -#~ msgstr "" -#~ "`bpo-11734 `__: Add support for IEEE " -#~ "754 half-precision floats to the struct module. Based on a patch by Eli " -#~ "Stevens." - -#~ msgid "" -#~ "`bpo-27919 `__: Deprecated " -#~ "``extra_path`` distribution option in distutils packaging." -#~ msgstr "" -#~ "`bpo-27919 `__: Deprecated " -#~ "``extra_path`` distribution option in distutils packaging." - -#~ msgid "" -#~ "`bpo-23229 `__: Add new ``cmath`` " -#~ "constants: ``cmath.inf`` and ``cmath.nan`` to match ``math.inf`` and " -#~ "``math.nan``, and also ``cmath.infj`` and ``cmath.nanj`` to match the " -#~ "format used by complex repr." -#~ msgstr "" -#~ "`bpo-23229 `__: Add new ``cmath`` " -#~ "constants: ``cmath.inf`` and ``cmath.nan`` to match ``math.inf`` and " -#~ "``math.nan``, and also ``cmath.infj`` and ``cmath.nanj`` to match the " -#~ "format used by complex repr." - -#~ msgid "" -#~ "`bpo-27842 `__: The csv.DictReader " -#~ "now returns rows of type OrderedDict. (Contributed by Steve Holden.)" -#~ msgstr "" -#~ "`bpo-27842 `__: The csv.DictReader " -#~ "now returns rows of type OrderedDict. (Contributed by Steve Holden.)" - -#~ msgid "" -#~ "`bpo-12885 `__: Fix error when " -#~ "distutils encounters symlink." -#~ msgstr "" -#~ "`bpo-12885 `__: Fix error when " -#~ "distutils encounters symlink." - -#~ msgid "" -#~ "`bpo-27881 `__: Fixed possible bugs " -#~ "when setting sqlite3.Connection.isolation_level. Based on patch by Xiang " -#~ "Zhang." -#~ msgstr "" -#~ "`bpo-27881 `__: Fixed possible bugs " -#~ "when setting sqlite3.Connection.isolation_level. Based on patch by Xiang " -#~ "Zhang." - -#~ msgid "" -#~ "`bpo-27861 `__: Fixed a crash in " -#~ "sqlite3.Connection.cursor() when a factory creates not a cursor. Patch " -#~ "by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27861 `__: Fixed a crash in " -#~ "sqlite3.Connection.cursor() when a factory creates not a cursor. Patch " -#~ "by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-19884 `__: Avoid spurious output " -#~ "on OS X with Gnu Readline." -#~ msgstr "" -#~ "`bpo-19884 `__: Avoid spurious output " -#~ "on OS X with Gnu Readline." - -#~ msgid "" -#~ "`bpo-27706 `__: Restore deterministic " -#~ "behavior of random.Random().seed() for string seeds using seeding version " -#~ "1. Allows sequences of calls to random() to exactly match those obtained " -#~ "in Python 2. Patch by Nofar Schnider." -#~ msgstr "" -#~ "`bpo-27706 `__: Restore deterministic " -#~ "behavior of random.Random().seed() for string seeds using seeding version " -#~ "1. Allows sequences of calls to random() to exactly match those obtained " -#~ "in Python 2. Patch by Nofar Schnider." - -#~ msgid "" -#~ "`bpo-10513 `__: Fix a regression in " -#~ "Connection.commit(). Statements should not be reset after a commit." -#~ msgstr "" -#~ "`bpo-10513 `__: Fix a regression in " -#~ "Connection.commit(). Statements should not be reset after a commit." - -#~ msgid "" -#~ "`bpo-12319 `__: Chunked transfer " -#~ "encoding support added to http.client.HTTPConnection requests. The " -#~ "urllib.request.AbstractHTTPHandler class does not enforce a Content-" -#~ "Length header any more. If a HTTP request has a file or iterable body, " -#~ "but no Content-Length header, the library now falls back to use chunked " -#~ "transfer- encoding." -#~ msgstr "" -#~ "`bpo-12319 `__: Chunked transfer " -#~ "encoding support added to http.client.HTTPConnection requests. The " -#~ "urllib.request.AbstractHTTPHandler class does not enforce a Content-" -#~ "Length header any more. If a HTTP request has a file or iterable body, " -#~ "but no Content-Length header, the library now falls back to use chunked " -#~ "transfer- encoding." - -#~ msgid "" -#~ "A new version of typing.py from https://github.com/python/typing: - " -#~ "Collection (only for 3.6) (`bpo-27598 `__) - Add FrozenSet to __all__ (upstream #261) - fix crash in " -#~ "_get_type_vars() (upstream #259) - Remove the dict constraint in " -#~ "ForwardRef._eval_type (upstream #252)" -#~ msgstr "" -#~ "A new version of typing.py from https://github.com/python/typing: - " -#~ "Collection (only for 3.6) (`bpo-27598 `__) - Add FrozenSet to __all__ (upstream #261) - fix crash in " -#~ "_get_type_vars() (upstream #259) - Remove the dict constraint in " -#~ "ForwardRef._eval_type (upstream #252)" - -#~ msgid "" -#~ "`bpo-27832 `__: Make ``_normalize`` " -#~ "parameter to ``Fraction`` constuctor keyword-only, so that ``Fraction(2, " -#~ "3, 4)`` now raises ``TypeError``." -#~ msgstr "" -#~ "`bpo-27832 `__: Make ``_normalize`` " -#~ "parameter to ``Fraction`` constuctor keyword-only, so that ``Fraction(2, " -#~ "3, 4)`` now raises ``TypeError``." - -#~ msgid "" -#~ "`bpo-27539 `__: Fix unnormalised " -#~ "``Fraction.__pow__`` result in the case of negative exponent and negative " -#~ "base." -#~ msgstr "" -#~ "`bpo-27539 `__: Fix unnormalised " -#~ "``Fraction.__pow__`` result in the case of negative exponent and negative " -#~ "base." - -#~ msgid "" -#~ "`bpo-21718 `__: cursor.description is " -#~ "now available for queries using CTEs." -#~ msgstr "" -#~ "`bpo-21718 `__: cursor.description is " -#~ "now available for queries using CTEs." - -#~ msgid "" -#~ "`bpo-27819 `__: In distutils sdists, " -#~ "simply produce the \"gztar\" (gzipped tar format) distributions on all " -#~ "platforms unless \"formats\" is supplied." -#~ msgstr "" -#~ "`bpo-27819 `__: In distutils sdists, " -#~ "simply produce the \"gztar\" (gzipped tar format) distributions on all " -#~ "platforms unless \"formats\" is supplied." - -#~ msgid "" -#~ "`bpo-2466 `__: posixpath.ismount now " -#~ "correctly recognizes mount points which the user does not have permission " -#~ "to access." -#~ msgstr "" -#~ "`bpo-2466 `__: posixpath.ismount now " -#~ "correctly recognizes mount points which the user does not have permission " -#~ "to access." - -#~ msgid "" -#~ "`bpo-9998 `__: On Linux, ctypes.util." -#~ "find_library now looks in LD_LIBRARY_PATH for shared libraries." -#~ msgstr "" -#~ "`bpo-9998 `__: On Linux, ctypes.util." -#~ "find_library now looks in LD_LIBRARY_PATH for shared libraries." - -#~ msgid "" -#~ "`bpo-27573 `__: exit message for code." -#~ "interact is now configurable." -#~ msgstr "" -#~ "`bpo-27573 `__: exit message for code." -#~ "interact is now configurable." - -#~ msgid "" -#~ "`bpo-27930 `__: Improved behaviour of " -#~ "logging.handlers.QueueListener. Thanks to Paulo Andrade and Petr Viktorin " -#~ "for the analysis and patch." -#~ msgstr "" -#~ "`bpo-27930 `__: Improved behaviour of " -#~ "logging.handlers.QueueListener. Thanks to Paulo Andrade and Petr Viktorin " -#~ "for the analysis and patch." - -#~ msgid "" -#~ "`bpo-6766 `__: Distributed reference " -#~ "counting added to multiprocessing to support nesting of shared values / " -#~ "proxy objects." -#~ msgstr "" -#~ "`bpo-6766 `__: Distributed reference " -#~ "counting added to multiprocessing to support nesting of shared values / " -#~ "proxy objects." - -#~ msgid "" -#~ "`bpo-21201 `__: Improves readability " -#~ "of multiprocessing error message. Thanks to Wojciech Walczak for patch." -#~ msgstr "" -#~ "`bpo-21201 `__: Improves readability " -#~ "of multiprocessing error message. Thanks to Wojciech Walczak for patch." - -#~ msgid "" -#~ "`bpo-27456 `__: asyncio: Set " -#~ "TCP_NODELAY by default." -#~ msgstr "" -#~ "`bpo-27456 `__: asyncio: Set " -#~ "TCP_NODELAY by default." - -#~ msgid "" -#~ "`bpo-15308 `__: Add 'interrupt " -#~ "execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard " -#~ "Randel." -#~ msgstr "" -#~ "`bpo-15308 `__: Add 'interrupt " -#~ "execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard " -#~ "Randel." - -#~ msgid "" -#~ "`bpo-27922 `__: Stop IDLE tests from " -#~ "'flashing' gui widgets on the screen." -#~ msgstr "" -#~ "`bpo-27922 `__: Stop IDLE tests from " -#~ "'flashing' gui widgets on the screen." - -#~ msgid "" -#~ "`bpo-27891 `__: Consistently group " -#~ "and sort imports within idlelib modules." -#~ msgstr "" -#~ "`bpo-27891 `__: Consistently group " -#~ "and sort imports within idlelib modules." - -#~ msgid "" -#~ "`bpo-17642 `__: add larger font sizes " -#~ "for classroom projection." -#~ msgstr "" -#~ "`bpo-17642 `__: add larger font sizes " -#~ "for classroom projection." - -#~ msgid "" -#~ "`bpo-25564 `__: In section on IDLE -- " -#~ "console differences, mention that using exec means that __builtins__ is " -#~ "defined for each statement." -#~ msgstr "" -#~ "`bpo-25564 `__: In section on IDLE -- " -#~ "console differences, mention that using exec means that __builtins__ is " -#~ "defined for each statement." - -#~ msgid "" -#~ "`bpo-27821 `__: Fix 3.6.0a3 " -#~ "regression that prevented custom key sets from being selected when no " -#~ "custom theme was defined." -#~ msgstr "" -#~ "`bpo-27821 `__: Fix 3.6.0a3 " -#~ "regression that prevented custom key sets from being selected when no " -#~ "custom theme was defined." - -#~ msgid "" -#~ "`bpo-26900 `__: Excluded underscored " -#~ "names and other private API from limited API." -#~ msgstr "" -#~ "`bpo-26900 `__: Excluded underscored " -#~ "names and other private API from limited API." - -#~ msgid "" -#~ "`bpo-26027 `__: Add support for path-" -#~ "like objects in PyUnicode_FSConverter() & PyUnicode_FSDecoder()." -#~ msgstr "" -#~ "`bpo-26027 `__: Add support for path-" -#~ "like objects in PyUnicode_FSConverter() & PyUnicode_FSDecoder()." - -#~ msgid "" -#~ "`bpo-27427 `__: Additional tests for " -#~ "the math module. Patch by Francisco Couzo." -#~ msgstr "" -#~ "`bpo-27427 `__: Additional tests for " -#~ "the math module. Patch by Francisco Couzo." - -#~ msgid "" -#~ "`bpo-27953 `__: Skip math and cmath " -#~ "tests that fail on OS X 10.4 due to a poor libm implementation of tan." -#~ msgstr "" -#~ "`bpo-27953 `__: Skip math and cmath " -#~ "tests that fail on OS X 10.4 due to a poor libm implementation of tan." - -#~ msgid "" -#~ "`bpo-26040 `__: Improve test_math and " -#~ "test_cmath coverage and rigour. Patch by Jeff Allen." -#~ msgstr "" -#~ "`bpo-26040 `__: Improve test_math and " -#~ "test_cmath coverage and rigour. Patch by Jeff Allen." - -#~ msgid "" -#~ "`bpo-27787 `__: Call gc.collect() " -#~ "before checking each test for \"dangling threads\", since the dangling " -#~ "threads are weak references." -#~ msgstr "" -#~ "`bpo-27787 `__: Call gc.collect() " -#~ "before checking each test for \"dangling threads\", since the dangling " -#~ "threads are weak references." - -#~ msgid "" -#~ "`bpo-27566 `__: Fix clean target in " -#~ "freeze makefile (patch by Lisa Roach)" -#~ msgstr "" -#~ "`bpo-27566 `__: Fix clean target in " -#~ "freeze makefile (patch by Lisa Roach)" - -#~ msgid "" -#~ "`bpo-27705 `__: Update message in " -#~ "validate_ucrtbase.py" -#~ msgstr "" -#~ "`bpo-27705 `__: Update message in " -#~ "validate_ucrtbase.py" - -#~ msgid "" -#~ "`bpo-27976 `__: Deprecate building " -#~ "_ctypes with the bundled copy of libffi on non-OSX UNIX platforms." -#~ msgstr "" -#~ "`bpo-27976 `__: Deprecate building " -#~ "_ctypes with the bundled copy of libffi on non-OSX UNIX platforms." - -#~ msgid "" -#~ "`bpo-27983 `__: Cause lack of llvm-" -#~ "profdata tool when using clang as required for PGO linking to be a " -#~ "configure time error rather than make time when --with-optimizations is " -#~ "enabled. Also improve our ability to find the llvm-profdata tool on " -#~ "MacOS and some Linuxes." -#~ msgstr "" -#~ "`bpo-27983 `__: Cause lack of llvm-" -#~ "profdata tool when using clang as required for PGO linking to be a " -#~ "configure time error rather than make time when --with-optimizations is " -#~ "enabled. Also improve our ability to find the llvm-profdata tool on " -#~ "MacOS and some Linuxes." - -#~ msgid "" -#~ "`bpo-21590 `__: Support for DTrace " -#~ "and SystemTap probes." -#~ msgstr "" -#~ "`bpo-21590 `__: Support for DTrace " -#~ "and SystemTap probes." - -#~ msgid "" -#~ "`bpo-26307 `__: The profile-opt build " -#~ "now applies PGO to the built-in modules." -#~ msgstr "" -#~ "`bpo-26307 `__: The profile-opt build " -#~ "now applies PGO to the built-in modules." - -#~ msgid "" -#~ "`bpo-26359 `__: Add the --with-" -#~ "optimizations flag to turn on LTO and PGO build support when available." -#~ msgstr "" -#~ "`bpo-26359 `__: Add the --with-" -#~ "optimizations flag to turn on LTO and PGO build support when available." - -#~ msgid "" -#~ "`bpo-27917 `__: Set platform triplets " -#~ "for Android builds." -#~ msgstr "" -#~ "`bpo-27917 `__: Set platform triplets " -#~ "for Android builds." - -#~ msgid "" -#~ "`bpo-25825 `__: Update references to " -#~ "the $(LIBPL) installation path on AIX. This path was changed in 3.2a4." -#~ msgstr "" -#~ "`bpo-25825 `__: Update references to " -#~ "the $(LIBPL) installation path on AIX. This path was changed in 3.2a4." - -#~ msgid "" -#~ "`bpo-21122 `__: Fix LTO builds on OS " -#~ "X." -#~ msgstr "" -#~ "`bpo-21122 `__: Fix LTO builds on OS " -#~ "X." - -#~ msgid "" -#~ "`bpo-17128 `__: Build OS X installer " -#~ "with a private copy of OpenSSL. Also provide a sample Install " -#~ "Certificates command script to install a set of root certificates from " -#~ "the third-party certifi module." -#~ msgstr "" -#~ "`bpo-17128 `__: Build OS X installer " -#~ "with a private copy of OpenSSL. Also provide a sample Install " -#~ "Certificates command script to install a set of root certificates from " -#~ "the third-party certifi module." - -#~ msgid "" -#~ "`bpo-27952 `__: Get Tools/scripts/" -#~ "fixcid.py working with Python 3 and the current \"re\" module, avoid " -#~ "invalid Python backslash escapes, and fix a bug parsing escaped C quote " -#~ "signs." -#~ msgstr "" -#~ "`bpo-27952 `__: Get Tools/scripts/" -#~ "fixcid.py working with Python 3 and the current \"re\" module, avoid " -#~ "invalid Python backslash escapes, and fix a bug parsing escaped C quote " -#~ "signs." - -#~ msgid "" -#~ "`bpo-28065 `__: Update xz dependency " -#~ "to 5.2.2 and build it from source." -#~ msgstr "" -#~ "`bpo-28065 `__: Update xz dependency " -#~ "to 5.2.2 and build it from source." - -#~ msgid "" -#~ "`bpo-25144 `__: Ensures TargetDir is " -#~ "set before continuing with custom install." -#~ msgstr "" -#~ "`bpo-25144 `__: Ensures TargetDir is " -#~ "set before continuing with custom install." - -#~ msgid "" -#~ "`bpo-1602 `__: Windows console doesn't " -#~ "input or print Unicode (PEP 528)" -#~ msgstr "" -#~ "`bpo-1602 `__: Windows console doesn't " -#~ "input or print Unicode (PEP 528)" - -#~ msgid "" -#~ "`bpo-27781 `__: Change file system " -#~ "encoding on Windows to UTF-8 (PEP 529)" -#~ msgstr "" -#~ "`bpo-27781 `__: Change file system " -#~ "encoding on Windows to UTF-8 (PEP 529)" - -#~ msgid "" -#~ "`bpo-27731 `__: Opt-out of MAX_PATH " -#~ "on Windows 10" -#~ msgstr "" -#~ "`bpo-27731 `__: Opt-out of MAX_PATH " -#~ "on Windows 10" - -#~ msgid "" -#~ "`bpo-6135 `__: Adds encoding and " -#~ "errors parameters to subprocess." -#~ msgstr "" -#~ "`bpo-6135 `__: Adds encoding and " -#~ "errors parameters to subprocess." - -#~ msgid "" -#~ "`bpo-27959 `__: Adds oem encoding, " -#~ "alias ansi to mbcs, move aliasmbcs to codec lookup." -#~ msgstr "" -#~ "`bpo-27959 `__: Adds oem encoding, " -#~ "alias ansi to mbcs, move aliasmbcs to codec lookup." - -#~ msgid "" -#~ "`bpo-27982 `__: The functions of the " -#~ "winsound module now accept keyword arguments." -#~ msgstr "" -#~ "`bpo-27982 `__: The functions of the " -#~ "winsound module now accept keyword arguments." - -#~ msgid "" -#~ "`bpo-20366 `__: Build full text " -#~ "search support into SQLite on Windows." -#~ msgstr "" -#~ "`bpo-20366 `__: Build full text " -#~ "search support into SQLite on Windows." - -#~ msgid "" -#~ "`bpo-27756 `__: Adds new icons for " -#~ "Python files and processes on Windows. Designs by Cherry Wang." -#~ msgstr "" -#~ "`bpo-27756 `__: Adds new icons for " -#~ "Python files and processes on Windows. Designs by Cherry Wang." - -#~ msgid "" -#~ "`bpo-27883 `__: Update sqlite to " -#~ "3.14.1.0 on Windows." -#~ msgstr "" -#~ "`bpo-27883 `__: Update sqlite to " -#~ "3.14.1.0 on Windows." - -#~ msgid "Python 3.6.0 alpha 4" -#~ msgstr "Python 3.6.0 alpha 4" - -#~ msgid "" -#~ "`bpo-27704 `__: Optimized creating " -#~ "bytes and bytearray from byte-like objects and iterables. Speed up to 3 " -#~ "times for short objects. Original patch by Naoki Inada." -#~ msgstr "" -#~ "`bpo-27704 `__: Optimized creating " -#~ "bytes and bytearray from byte-like objects and iterables. Speed up to 3 " -#~ "times for short objects. Original patch by Naoki Inada." - -#~ msgid "" -#~ "`bpo-26823 `__: Large sections of " -#~ "repeated lines in tracebacks are now abbreviated as \"[Previous line " -#~ "repeated {count} more times]\" by the builtin traceback rendering. Patch " -#~ "by Emanuel Barry." -#~ msgstr "" -#~ "`bpo-26823 `__: Large sections of " -#~ "repeated lines in tracebacks are now abbreviated as \"[Previous line " -#~ "repeated {count} more times]\" by the builtin traceback rendering. Patch " -#~ "by Emanuel Barry." - -#~ msgid "" -#~ "`bpo-27574 `__: Decreased an overhead " -#~ "of parsing keyword arguments in functions implemented with using Argument " -#~ "Clinic." -#~ msgstr "" -#~ "`bpo-27574 `__: Decreased an overhead " -#~ "of parsing keyword arguments in functions implemented with using Argument " -#~ "Clinic." - -#~ msgid "" -#~ "`bpo-22557 `__: Now importing already " -#~ "imported modules is up to 2.5 times faster." -#~ msgstr "" -#~ "`bpo-22557 `__: Now importing already " -#~ "imported modules is up to 2.5 times faster." - -#~ msgid "" -#~ "`bpo-17596 `__: Include " -#~ "to help with Min GW building." -#~ msgstr "" -#~ "`bpo-17596 `__: Include " -#~ "to help with Min GW building." - -#~ msgid "" -#~ "`bpo-17599 `__: On Windows, rename " -#~ "the privately defined REPARSE_DATA_BUFFER structure to avoid conflicting " -#~ "with the definition from Min GW." -#~ msgstr "" -#~ "`bpo-17599 `__: On Windows, rename " -#~ "the privately defined REPARSE_DATA_BUFFER structure to avoid conflicting " -#~ "with the definition from Min GW." - -#~ msgid "" -#~ "`bpo-27507 `__: Add integer overflow " -#~ "check in bytearray.extend(). Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27507 `__: Add integer overflow " -#~ "check in bytearray.extend(). Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-27581 `__: Don't rely on " -#~ "wrapping for overflow check in PySequence_Tuple(). Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27581 `__: Don't rely on " -#~ "wrapping for overflow check in PySequence_Tuple(). Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-1621 `__: Avoid signed integer " -#~ "overflow in list and tuple operations. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-1621 `__: Avoid signed integer " -#~ "overflow in list and tuple operations. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-27419 `__: Standard __import__() " -#~ "no longer look up \"__import__\" in globals or builtins for importing " -#~ "submodules or \"from import\". Fixed a crash if raise a warning about " -#~ "unabling to resolve package from __spec__ or __package__." -#~ msgstr "" -#~ "`bpo-27419 `__: Standard __import__() " -#~ "no longer look up \"__import__\" in globals or builtins for importing " -#~ "submodules or \"from import\". Fixed a crash if raise a warning about " -#~ "unabling to resolve package from __spec__ or __package__." - -#~ msgid "" -#~ "`bpo-27083 `__: Respect the " -#~ "PYTHONCASEOK environment variable under Windows." -#~ msgstr "" -#~ "`bpo-27083 `__: Respect the " -#~ "PYTHONCASEOK environment variable under Windows." - -#~ msgid "" -#~ "`bpo-27514 `__: Make having too many " -#~ "statically nested blocks a SyntaxError instead of SystemError." -#~ msgstr "" -#~ "`bpo-27514 `__: Make having too many " -#~ "statically nested blocks a SyntaxError instead of SystemError." - -#~ msgid "" -#~ "`bpo-27366 `__: Implemented PEP 487 " -#~ "(Simpler customization of class creation). Upon subclassing, the " -#~ "__init_subclass__ classmethod is called on the base class. Descriptors " -#~ "are initialized with __set_name__ after class creation." -#~ msgstr "" -#~ "`bpo-27366 `__: Implemented PEP 487 " -#~ "(Simpler customization of class creation). Upon subclassing, the " -#~ "__init_subclass__ classmethod is called on the base class. Descriptors " -#~ "are initialized with __set_name__ after class creation." - -#~ msgid "" -#~ "`bpo-26027 `__, #27524: Add PEP 519/" -#~ "__fspath__() support to the os and os.path modules. Includes code from " -#~ "Jelle Zijlstra." -#~ msgstr "" -#~ "`bpo-26027 `__, #27524: Add PEP 519/" -#~ "__fspath__() support to the os and os.path modules. Includes code from " -#~ "Jelle Zijlstra." - -#~ msgid "" -#~ "`bpo-27598 `__: Add Collections to " -#~ "collections.abc. Patch by Ivan Levkivskyi, docs by Neil Girdhar." -#~ msgstr "" -#~ "`bpo-27598 `__: Add Collections to " -#~ "collections.abc. Patch by Ivan Levkivskyi, docs by Neil Girdhar." - -#~ msgid "" -#~ "`bpo-25958 `__: Support \"anti-" -#~ "registration\" of special methods from various ABCs, like __hash__, " -#~ "__iter__ or __len__. All these (and several more) can be set to None in " -#~ "an implementation class and the behavior will be as if the method is not " -#~ "defined at all. (Previously, this mechanism existed only for __hash__, to " -#~ "make mutable classes unhashable.) Code contributed by Andrew Barnert and " -#~ "Ivan Levkivskyi." -#~ msgstr "" -#~ "`bpo-25958 `__: Support \"anti-" -#~ "registration\" of special methods from various ABCs, like __hash__, " -#~ "__iter__ or __len__. All these (and several more) can be set to None in " -#~ "an implementation class and the behavior will be as if the method is not " -#~ "defined at all. (Previously, this mechanism existed only for __hash__, to " -#~ "make mutable classes unhashable.) Code contributed by Andrew Barnert and " -#~ "Ivan Levkivskyi." - -#~ msgid "" -#~ "`bpo-16764 `__: Support keyword " -#~ "arguments to zlib.decompress(). Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-16764 `__: Support keyword " -#~ "arguments to zlib.decompress(). Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-27736 `__: Prevent segfault " -#~ "after interpreter re-initialization due to ref count problem introduced " -#~ "in code for `bpo-27038 `__ in " -#~ "3.6.0a3. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27736 `__: Prevent segfault " -#~ "after interpreter re-initialization due to ref count problem introduced " -#~ "in code for `bpo-27038 `__ in " -#~ "3.6.0a3. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-25628 `__: The *verbose* and " -#~ "*rename* parameters for collections.namedtuple are now keyword-only." -#~ msgstr "" -#~ "`bpo-25628 `__: The *verbose* and " -#~ "*rename* parameters for collections.namedtuple are now keyword-only." - -#~ msgid "" -#~ "`bpo-12345 `__: Add mathematical " -#~ "constant tau to math and cmath. See also PEP 628." -#~ msgstr "" -#~ "`bpo-12345 `__: Add mathematical " -#~ "constant tau to math and cmath. See also PEP 628." - -#~ msgid "" -#~ "`bpo-26823 `__: traceback." -#~ "StackSummary.format now abbreviates large sections of repeated lines as " -#~ "\"[Previous line repeated {count} more times]\" (this change then further " -#~ "affects other traceback display operations in the module). Patch by " -#~ "Emanuel Barry." -#~ msgstr "" -#~ "`bpo-26823 `__: traceback." -#~ "StackSummary.format now abbreviates large sections of repeated lines as " -#~ "\"[Previous line repeated {count} more times]\" (this change then further " -#~ "affects other traceback display operations in the module). Patch by " -#~ "Emanuel Barry." - -#~ msgid "" -#~ "`bpo-27664 `__: Add to concurrent." -#~ "futures.thread.ThreadPoolExecutor() the ability to specify a thread name " -#~ "prefix." -#~ msgstr "" -#~ "`bpo-27664 `__: Add to concurrent." -#~ "futures.thread.ThreadPoolExecutor() the ability to specify a thread name " -#~ "prefix." - -#~ msgid "" -#~ "`bpo-27181 `__: Add geometric_mean " -#~ "and harmonic_mean to statistics module." -#~ msgstr "" -#~ "`bpo-27181 `__: Add geometric_mean " -#~ "and harmonic_mean to statistics module." - -#~ msgid "" -#~ "`bpo-27573 `__: code.interact now " -#~ "prints an message when exiting." -#~ msgstr "" -#~ "`bpo-27573 `__: code.interact now " -#~ "prints an message when exiting." - -#~ msgid "" -#~ "`bpo-6422 `__: Add autorange method to " -#~ "timeit.Timer objects." -#~ msgstr "" -#~ "`bpo-6422 `__: Add autorange method to " -#~ "timeit.Timer objects." - -#~ msgid "" -#~ "`bpo-27773 `__: Correct some memory " -#~ "management errors server_hostname in _ssl.wrap_socket()." -#~ msgstr "" -#~ "`bpo-27773 `__: Correct some memory " -#~ "management errors server_hostname in _ssl.wrap_socket()." - -#~ msgid "" -#~ "`bpo-26750 `__: unittest.mock." -#~ "create_autospec() now works properly for subclasses of property() and " -#~ "other data descriptors. Removes the never publicly used, never " -#~ "documented unittest.mock.DescriptorTypes tuple." -#~ msgstr "" -#~ "`bpo-26750 `__: unittest.mock." -#~ "create_autospec() now works properly for subclasses of property() and " -#~ "other data descriptors. Removes the never publicly used, never " -#~ "documented unittest.mock.DescriptorTypes tuple." - -#~ msgid "" -#~ "`bpo-26754 `__: Undocumented support " -#~ "of general bytes-like objects as path in compile() and similar functions " -#~ "is now deprecated." -#~ msgstr "" -#~ "`bpo-26754 `__: Undocumented support " -#~ "of general bytes-like objects as path in compile() and similar functions " -#~ "is now deprecated." - -#~ msgid "" -#~ "`bpo-26800 `__: Undocumented support " -#~ "of general bytes-like objects as paths in os functions is now deprecated." -#~ msgstr "" -#~ "`bpo-26800 `__: Undocumented support " -#~ "of general bytes-like objects as paths in os functions is now deprecated." - -#~ msgid "" -#~ "`bpo-26981 `__: Add _order_ " -#~ "compatibility shim to enum.Enum for Python 2/3 code bases." -#~ msgstr "" -#~ "`bpo-26981 `__: Add _order_ " -#~ "compatibility shim to enum.Enum for Python 2/3 code bases." - -#~ msgid "" -#~ "`bpo-27661 `__: Added tzinfo keyword " -#~ "argument to datetime.combine." -#~ msgstr "" -#~ "`bpo-27661 `__: Added tzinfo keyword " -#~ "argument to datetime.combine." - -#~ msgid "" -#~ "`bpo-27783 `__: Fix possible usage of " -#~ "uninitialized memory in operator.methodcaller." -#~ msgstr "" -#~ "`bpo-27783 `__: Fix possible usage of " -#~ "uninitialized memory in operator.methodcaller." - -#~ msgid "" -#~ "`bpo-27774 `__: Fix possible " -#~ "Py_DECREF on unowned object in _sre." -#~ msgstr "" -#~ "`bpo-27774 `__: Fix possible " -#~ "Py_DECREF on unowned object in _sre." - -#~ msgid "" -#~ "`bpo-27760 `__: Fix possible integer " -#~ "overflow in binascii.b2a_qp." -#~ msgstr "" -#~ "`bpo-27760 `__: Fix possible integer " -#~ "overflow in binascii.b2a_qp." - -#~ msgid "" -#~ "`bpo-27758 `__: Fix possible integer " -#~ "overflow in the _csv module for large record lengths." -#~ msgstr "" -#~ "`bpo-27758 `__: Fix possible integer " -#~ "overflow in the _csv module for large record lengths." - -#~ msgid "" -#~ "`bpo-27568 `__: Prevent HTTPoxy " -#~ "attack (CVE-2016-1000110). Ignore the HTTP_PROXY variable when " -#~ "REQUEST_METHOD environment is set, which indicates that the script is in " -#~ "CGI mode." -#~ msgstr "" -#~ "`bpo-27568 `__: Prevent HTTPoxy " -#~ "attack (CVE-2016-1000110). Ignore the HTTP_PROXY variable when " -#~ "REQUEST_METHOD environment is set, which indicates that the script is in " -#~ "CGI mode." - -#~ msgid "" -#~ "`bpo-7063 `__: Remove dead code from " -#~ "the \"array\" module's slice handling. Patch by Chuck." -#~ msgstr "" -#~ "`bpo-7063 `__: Remove dead code from " -#~ "the \"array\" module's slice handling. Patch by Chuck." - -#~ msgid "" -#~ "`bpo-27656 `__: Do not assume sched.h " -#~ "defines any SCHED_* constants." -#~ msgstr "" -#~ "`bpo-27656 `__: Do not assume sched.h " -#~ "defines any SCHED_* constants." - -#~ msgid "" -#~ "`bpo-27130 `__: In the \"zlib\" " -#~ "module, fix handling of large buffers (typically 4 GiB) when compressing " -#~ "and decompressing. Previously, inputs were limited to 4 GiB, and " -#~ "compression and decompression operations did not properly handle results " -#~ "of 4 GiB." -#~ msgstr "" -#~ "`bpo-27130 `__: In the \"zlib\" " -#~ "module, fix handling of large buffers (typically 4 GiB) when compressing " -#~ "and decompressing. Previously, inputs were limited to 4 GiB, and " -#~ "compression and decompression operations did not properly handle results " -#~ "of 4 GiB." - -#~ msgid "" -#~ "`bpo-24773 `__: Implemented PEP 495 " -#~ "(Local Time Disambiguation)." -#~ msgstr "" -#~ "`bpo-24773 `__: Implemented PEP 495 " -#~ "(Local Time Disambiguation)." - -#~ msgid "" -#~ "`bpo-27567 `__: Expose the EPOLLRDHUP " -#~ "and POLLRDHUP constants in the select module." -#~ msgstr "" -#~ "`bpo-27567 `__: Expose the EPOLLRDHUP " -#~ "and POLLRDHUP constants in the select module." - -#~ msgid "" -#~ "`bpo-1621 `__: Avoid signed int " -#~ "negation overflow in the \"audioop\" module." -#~ msgstr "" -#~ "`bpo-1621 `__: Avoid signed int " -#~ "negation overflow in the \"audioop\" module." - -#~ msgid "" -#~ "`bpo-27533 `__: Release GIL in nt." -#~ "_isdir" -#~ msgstr "" -#~ "`bpo-27533 `__: Release GIL in nt." -#~ "_isdir" - -#~ msgid "" -#~ "`bpo-17711 `__: Fixed unpickling by " -#~ "the persistent ID with protocol 0. Original patch by Alexandre Vassalotti." -#~ msgstr "" -#~ "`bpo-17711 `__: Fixed unpickling by " -#~ "the persistent ID with protocol 0. Original patch by Alexandre Vassalotti." - -#~ msgid "" -#~ "`bpo-27522 `__: Avoid an " -#~ "unintentional reference cycle in email.feedparser." -#~ msgstr "" -#~ "`bpo-27522 `__: Avoid an " -#~ "unintentional reference cycle in email.feedparser." - -#~ msgid "" -#~ "`bpo-27512 `__: Fix a segfault when " -#~ "os.fspath() called an __fspath__() method that raised an exception. Patch " -#~ "by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27512 `__: Fix a segfault when " -#~ "os.fspath() called an __fspath__() method that raised an exception. Patch " -#~ "by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-27714 `__: text_textview and " -#~ "test_autocomplete now pass when re-run in the same process. This occurs " -#~ "when test_idle fails when run with the -w option but without -jn. Fix " -#~ "warning from test_config." -#~ msgstr "" -#~ "`bpo-27714 `__: text_textview and " -#~ "test_autocomplete now pass when re-run in the same process. This occurs " -#~ "when test_idle fails when run with the -w option but without -jn. Fix " -#~ "warning from test_config." - -#~ msgid "" -#~ "`bpo-27621 `__: Put query response " -#~ "validation error messages in the query box itself instead of in a " -#~ "separate massagebox. Redo tests to match. Add Mac OSX refinements. " -#~ "Original patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-27621 `__: Put query response " -#~ "validation error messages in the query box itself instead of in a " -#~ "separate massagebox. Redo tests to match. Add Mac OSX refinements. " -#~ "Original patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-27620 `__: Escape key now closes " -#~ "Query box as cancelled." -#~ msgstr "" -#~ "`bpo-27620 `__: Escape key now closes " -#~ "Query box as cancelled." - -#~ msgid "" -#~ "`bpo-27609 `__: IDLE: tab after " -#~ "initial whitespace should tab, not autocomplete. This fixes problem with " -#~ "writing docstrings at least twice indented." -#~ msgstr "" -#~ "`bpo-27609 `__: IDLE: tab after " -#~ "initial whitespace should tab, not autocomplete. This fixes problem with " -#~ "writing docstrings at least twice indented." - -#~ msgid "" -#~ "`bpo-27609 `__: Explicitly return " -#~ "None when there are also non-None returns. In a few cases, reverse a " -#~ "condition and eliminate a return." -#~ msgstr "" -#~ "`bpo-27609 `__: Explicitly return " -#~ "None when there are also non-None returns. In a few cases, reverse a " -#~ "condition and eliminate a return." - -#~ msgid "" -#~ "`bpo-25507 `__: IDLE no longer runs " -#~ "buggy code because of its tkinter imports. Users must include the same " -#~ "imports required to run directly in Python." -#~ msgstr "" -#~ "`bpo-25507 `__: IDLE no longer runs " -#~ "buggy code because of its tkinter imports. Users must include the same " -#~ "imports required to run directly in Python." - -#~ msgid "" -#~ "`bpo-27173 `__: Add 'IDLE Modern " -#~ "Unix' to the built-in key sets. Make the default key set depend on the " -#~ "platform. Add tests for the changes to the config module." -#~ msgstr "" -#~ "`bpo-27173 `__: Add 'IDLE Modern " -#~ "Unix' to the built-in key sets. Make the default key set depend on the " -#~ "platform. Add tests for the changes to the config module." - -#~ msgid "" -#~ "`bpo-27452 `__: add line counter and " -#~ "crc to IDLE configHandler test dump." -#~ msgstr "" -#~ "`bpo-27452 `__: add line counter and " -#~ "crc to IDLE configHandler test dump." - -#~ msgid "" -#~ "`bpo-25805 `__: Skip a test in " -#~ "test_pkgutil as needed that doesn't work when ``__name__ == __main__``. " -#~ "Patch by SilentGhost." -#~ msgstr "" -#~ "`bpo-25805 `__: Skip a test in " -#~ "test_pkgutil as needed that doesn't work when ``__name__ == __main__``. " -#~ "Patch by SilentGhost." - -#~ msgid "" -#~ "`bpo-27472 `__: Add test.support." -#~ "unix_shell as the path to the default shell." -#~ msgstr "" -#~ "`bpo-27472 `__: Add test.support." -#~ "unix_shell as the path to the default shell." - -#~ msgid "" -#~ "`bpo-27369 `__: In test_pyexpat, " -#~ "avoid testing an error message detail that changed in Expat 2.2.0." -#~ msgstr "" -#~ "`bpo-27369 `__: In test_pyexpat, " -#~ "avoid testing an error message detail that changed in Expat 2.2.0." - -#~ msgid "" -#~ "`bpo-27594 `__: Prevent assertion " -#~ "error when running test_ast with coverage enabled: ensure code object has " -#~ "a valid first line number. Patch suggested by Ivan Levkivskyi." -#~ msgstr "" -#~ "`bpo-27594 `__: Prevent assertion " -#~ "error when running test_ast with coverage enabled: ensure code object has " -#~ "a valid first line number. Patch suggested by Ivan Levkivskyi." - -#~ msgid "" -#~ "`bpo-27647 `__: Update bundled Tcl/Tk " -#~ "to 8.6.6." -#~ msgstr "" -#~ "`bpo-27647 `__: Update bundled Tcl/Tk " -#~ "to 8.6.6." - -#~ msgid "" -#~ "`bpo-27610 `__: Adds PEP 514 metadata " -#~ "to Windows installer" -#~ msgstr "" -#~ "`bpo-27610 `__: Adds PEP 514 metadata " -#~ "to Windows installer" - -#~ msgid "" -#~ "`bpo-27469 `__: Adds a shell " -#~ "extension to the launcher so that drag and drop works correctly." -#~ msgstr "" -#~ "`bpo-27469 `__: Adds a shell " -#~ "extension to the launcher so that drag and drop works correctly." - -#~ msgid "" -#~ "`bpo-27309 `__: Enables proper " -#~ "Windows styles in python[w].exe manifest." -#~ msgstr "" -#~ "`bpo-27309 `__: Enables proper " -#~ "Windows styles in python[w].exe manifest." - -#~ msgid "" -#~ "`bpo-27713 `__: Suppress spurious " -#~ "build warnings when updating importlib's bootstrap files. Patch by Xiang " -#~ "Zhang" -#~ msgstr "" -#~ "`bpo-27713 `__: Suppress spurious " -#~ "build warnings when updating importlib's bootstrap files. Patch by Xiang " -#~ "Zhang" - -#~ msgid "" -#~ "`bpo-25825 `__: Correct the " -#~ "references to Modules/python.exp, which is required on AIX. The " -#~ "references were accidentally changed in 3.5.0a1." -#~ msgstr "" -#~ "`bpo-25825 `__: Correct the " -#~ "references to Modules/python.exp, which is required on AIX. The " -#~ "references were accidentally changed in 3.5.0a1." - -#~ msgid "" -#~ "`bpo-27453 `__: CPP invocation in " -#~ "configure must use CPPFLAGS. Patch by Chi Hsuan Yen." -#~ msgstr "" -#~ "`bpo-27453 `__: CPP invocation in " -#~ "configure must use CPPFLAGS. Patch by Chi Hsuan Yen." - -#~ msgid "" -#~ "`bpo-27641 `__: The configure script " -#~ "now inserts comments into the makefile to prevent the pgen and " -#~ "_freeze_importlib executables from being cross- compiled." -#~ msgstr "" -#~ "`bpo-27641 `__: The configure script " -#~ "now inserts comments into the makefile to prevent the pgen and " -#~ "_freeze_importlib executables from being cross- compiled." - -#~ msgid "" -#~ "`bpo-26662 `__: Set PYTHON_FOR_GEN in " -#~ "configure as the Python program to be used for file generation during the " -#~ "build." -#~ msgstr "" -#~ "`bpo-26662 `__: Set PYTHON_FOR_GEN in " -#~ "configure as the Python program to be used for file generation during the " -#~ "build." - -#~ msgid "" -#~ "`bpo-10910 `__: Avoid C++ compilation " -#~ "errors on FreeBSD and OS X. Also update FreedBSD version checks for the " -#~ "original ctype UTF-8 workaround." -#~ msgstr "" -#~ "`bpo-10910 `__: Avoid C++ compilation " -#~ "errors on FreeBSD and OS X. Also update FreedBSD version checks for the " -#~ "original ctype UTF-8 workaround." - -#~ msgid "Python 3.6.0 alpha 3" -#~ msgstr "Python 3.6.0 alpha 3" - -#~ msgid "" -#~ "`bpo-27473 `__: Fixed possible " -#~ "integer overflow in bytes and bytearray concatenations. Patch by Xiang " -#~ "Zhang." -#~ msgstr "" -#~ "`bpo-27473 `__: Fixed possible " -#~ "integer overflow in bytes and bytearray concatenations. Patch by Xiang " -#~ "Zhang." - -#~ msgid "" -#~ "`bpo-23034 `__: The output of a " -#~ "special Python build with defined COUNT_ALLOCS, SHOW_ALLOC_COUNT or " -#~ "SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled " -#~ "using the \"-X showalloccount\" option. It now outputs to stderr instead " -#~ "of stdout." -#~ msgstr "" -#~ "`bpo-23034 `__: The output of a " -#~ "special Python build with defined COUNT_ALLOCS, SHOW_ALLOC_COUNT or " -#~ "SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled " -#~ "using the \"-X showalloccount\" option. It now outputs to stderr instead " -#~ "of stdout." - -#~ msgid "" -#~ "`bpo-27443 `__: __length_hint__() of " -#~ "bytearray iterators no longer return a negative integer for a resized " -#~ "bytearray." -#~ msgstr "" -#~ "`bpo-27443 `__: __length_hint__() of " -#~ "bytearray iterators no longer return a negative integer for a resized " -#~ "bytearray." - -#~ msgid "" -#~ "`bpo-27007 `__: The fromhex() class " -#~ "methods of bytes and bytearray subclasses now return an instance of " -#~ "corresponding subclass." -#~ msgstr "" -#~ "`bpo-27007 `__: The fromhex() class " -#~ "methods of bytes and bytearray subclasses now return an instance of " -#~ "corresponding subclass." - -#~ msgid "" -#~ "`bpo-26844 `__: Fix error message for " -#~ "imp.find_module() to refer to 'path' instead of 'name'. Patch by Lev " -#~ "Maximov." -#~ msgstr "" -#~ "`bpo-26844 `__: Fix error message for " -#~ "imp.find_module() to refer to 'path' instead of 'name'. Patch by Lev " -#~ "Maximov." - -#~ msgid "" -#~ "`bpo-23804 `__: Fix SSL zero-length " -#~ "recv() calls to not block and not raise an error about unclean EOF." -#~ msgstr "" -#~ "`bpo-23804 `__: Fix SSL zero-length " -#~ "recv() calls to not block and not raise an error about unclean EOF." - -#~ msgid "" -#~ "`bpo-27466 `__: Change time format " -#~ "returned by http.cookie.time2netscape, confirming the netscape cookie " -#~ "format and making it consistent with documentation." -#~ msgstr "" -#~ "`bpo-27466 `__: Change time format " -#~ "returned by http.cookie.time2netscape, confirming the netscape cookie " -#~ "format and making it consistent with documentation." - -#~ msgid "" -#~ "`bpo-21708 `__: Deprecated dbm.dumb " -#~ "behavior that differs from common dbm behavior: creating a database in " -#~ "'r' and 'w' modes and modifying a database in 'r' mode." -#~ msgstr "" -#~ "`bpo-21708 `__: Deprecated dbm.dumb " -#~ "behavior that differs from common dbm behavior: creating a database in " -#~ "'r' and 'w' modes and modifying a database in 'r' mode." - -#~ msgid "" -#~ "`bpo-26721 `__: Change the " -#~ "socketserver.StreamRequestHandler.wfile attribute to implement " -#~ "BufferedIOBase. In particular, the write() method no longer does partial " -#~ "writes." -#~ msgstr "" -#~ "`bpo-26721 `__: Change the " -#~ "socketserver.StreamRequestHandler.wfile attribute to implement " -#~ "BufferedIOBase. In particular, the write() method no longer does partial " -#~ "writes." - -#~ msgid "" -#~ "`bpo-22115 `__: Added methods " -#~ "trace_add, trace_remove and trace_info in the tkinter.Variable class. " -#~ "They replace old methods trace_variable, trace, trace_vdelete and " -#~ "trace_vinfo that use obsolete Tcl commands and might not work in future " -#~ "versions of Tcl. Fixed old tracing methods: trace_vdelete() with wrong " -#~ "mode no longer break tracing, trace_vinfo() now always returns a list of " -#~ "pairs of strings, tracing in the \"u\" mode now works." -#~ msgstr "" -#~ "`bpo-22115 `__: Added methods " -#~ "trace_add, trace_remove and trace_info in the tkinter.Variable class. " -#~ "They replace old methods trace_variable, trace, trace_vdelete and " -#~ "trace_vinfo that use obsolete Tcl commands and might not work in future " -#~ "versions of Tcl. Fixed old tracing methods: trace_vdelete() with wrong " -#~ "mode no longer break tracing, trace_vinfo() now always returns a list of " -#~ "pairs of strings, tracing in the \"u\" mode now works." - -#~ msgid "" -#~ "`bpo-26243 `__: Only the level " -#~ "argument to zlib.compress() is keyword argument now. The first argument " -#~ "is positional-only." -#~ msgstr "" -#~ "`bpo-26243 `__: Only the level " -#~ "argument to zlib.compress() is keyword argument now. The first argument " -#~ "is positional-only." - -#~ msgid "" -#~ "`bpo-27038 `__: Expose the DirEntry " -#~ "type as os.DirEntry. Code patch by Jelle Zijlstra." -#~ msgstr "" -#~ "`bpo-27038 `__: Expose the DirEntry " -#~ "type as os.DirEntry. Code patch by Jelle Zijlstra." - -#~ msgid "" -#~ "`bpo-27186 `__: Update os.fspath()/" -#~ "PyOS_FSPath() to check the return value of __fspath__() to be either str " -#~ "or bytes." -#~ msgstr "" -#~ "`bpo-27186 `__: Update os.fspath()/" -#~ "PyOS_FSPath() to check the return value of __fspath__() to be either str " -#~ "or bytes." - -#~ msgid "" -#~ "`bpo-18726 `__: All optional " -#~ "parameters of the dump(), dumps(), load() and loads() functions and " -#~ "JSONEncoder and JSONDecoder class constructors in the json module are now " -#~ "keyword-only." -#~ msgstr "" -#~ "`bpo-18726 `__: All optional " -#~ "parameters of the dump(), dumps(), load() and loads() functions and " -#~ "JSONEncoder and JSONDecoder class constructors in the json module are now " -#~ "keyword-only." - -#~ msgid "" -#~ "`bpo-27319 `__: Methods " -#~ "selection_set(), selection_add(), selection_remove() and " -#~ "selection_toggle() of ttk.TreeView now allow passing multiple items as " -#~ "multiple arguments instead of passing them as a tuple. Deprecated " -#~ "undocumented ability of calling the selection() method with arguments." -#~ msgstr "" -#~ "`bpo-27319 `__: Methods " -#~ "selection_set(), selection_add(), selection_remove() and " -#~ "selection_toggle() of ttk.TreeView now allow passing multiple items as " -#~ "multiple arguments instead of passing them as a tuple. Deprecated " -#~ "undocumented ability of calling the selection() method with arguments." - -#~ msgid "" -#~ "`bpo-27079 `__: Fixed curses.ascii " -#~ "functions isblank(), iscntrl() and ispunct()." -#~ msgstr "" -#~ "`bpo-27079 `__: Fixed curses.ascii " -#~ "functions isblank(), iscntrl() and ispunct()." - -#~ msgid "" -#~ "`bpo-27294 `__: Numerical state in " -#~ "the repr for Tkinter event objects is now represented as a combination of " -#~ "known flags." -#~ msgstr "" -#~ "`bpo-27294 `__: Numerical state in " -#~ "the repr for Tkinter event objects is now represented as a combination of " -#~ "known flags." - -#~ msgid "" -#~ "`bpo-27177 `__: Match objects in the " -#~ "re module now support index-like objects as group indices. Based on " -#~ "patches by Jeroen Demeyer and Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27177 `__: Match objects in the " -#~ "re module now support index-like objects as group indices. Based on " -#~ "patches by Jeroen Demeyer and Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26754 `__: Some functions " -#~ "(compile() etc) accepted a filename argument encoded as an iterable of " -#~ "integers. Now only strings and byte-like objects are accepted." -#~ msgstr "" -#~ "`bpo-26754 `__: Some functions " -#~ "(compile() etc) accepted a filename argument encoded as an iterable of " -#~ "integers. Now only strings and byte-like objects are accepted." - -#~ msgid "" -#~ "`bpo-26536 `__: socket.ioctl now " -#~ "supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes." -#~ msgstr "" -#~ "`bpo-26536 `__: socket.ioctl now " -#~ "supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes." - -#~ msgid "" -#~ "`bpo-27048 `__: Prevents distutils " -#~ "failing on Windows when environment variables contain non-ASCII characters" -#~ msgstr "" -#~ "`bpo-27048 `__: Prevents distutils " -#~ "failing on Windows when environment variables contain non-ASCII characters" - -#~ msgid "" -#~ "`bpo-27330 `__: Fixed possible leaks " -#~ "in the ctypes module." -#~ msgstr "" -#~ "`bpo-27330 `__: Fixed possible leaks " -#~ "in the ctypes module." - -#~ msgid "" -#~ "`bpo-27238 `__: Got rid of bare " -#~ "excepts in the turtle module. Original patch by Jelle Zijlstra." -#~ msgstr "" -#~ "`bpo-27238 `__: Got rid of bare " -#~ "excepts in the turtle module. Original patch by Jelle Zijlstra." - -#~ msgid "" -#~ "`bpo-27122 `__: When an exception is " -#~ "raised within the context being managed by a contextlib.ExitStack() and " -#~ "one of the exit stack generators catches and raises it in a chain, do not " -#~ "re-raise the original exception when exiting, let the new chained one " -#~ "through. This avoids the PEP 479 bug described in issue25782." -#~ msgstr "" -#~ "`bpo-27122 `__: When an exception is " -#~ "raised within the context being managed by a contextlib.ExitStack() and " -#~ "one of the exit stack generators catches and raises it in a chain, do not " -#~ "re-raise the original exception when exiting, let the new chained one " -#~ "through. This avoids the PEP 479 bug described in issue25782." - -#~ msgid "" -#~ "[Security] `bpo-27278 `__: Fix os." -#~ "urandom() implementation using getrandom() on Linux. Truncate size to " -#~ "INT_MAX and loop until we collected enough random bytes, instead of " -#~ "casting a directly Py_ssize_t to int." -#~ msgstr "" -#~ "[Security] `bpo-27278 `__: Fix os." -#~ "urandom() implementation using getrandom() on Linux. Truncate size to " -#~ "INT_MAX and loop until we collected enough random bytes, instead of " -#~ "casting a directly Py_ssize_t to int." - -#~ msgid "" -#~ "`bpo-16864 `__: sqlite3.Cursor." -#~ "lastrowid now supports REPLACE statement. Initial patch by Alex " -#~ "LordThorsen." -#~ msgstr "" -#~ "`bpo-16864 `__: sqlite3.Cursor." -#~ "lastrowid now supports REPLACE statement. Initial patch by Alex " -#~ "LordThorsen." - -#~ msgid "" -#~ "`bpo-26386 `__: Fixed ttk.TreeView " -#~ "selection operations with item id's containing spaces." -#~ msgstr "" -#~ "`bpo-26386 `__: Fixed ttk.TreeView " -#~ "selection operations with item id's containing spaces." - -#~ msgid "" -#~ "`bpo-8637 `__: Honor a pager set by " -#~ "the env var MANPAGER (in preference to one set by the env var PAGER)." -#~ msgstr "" -#~ "`bpo-8637 `__: Honor a pager set by " -#~ "the env var MANPAGER (in preference to one set by the env var PAGER)." - -#~ msgid "" -#~ "[Security] `bpo-22636 `__: Avoid " -#~ "shell injection problems with ctypes.util.find_library()." -#~ msgstr "" -#~ "[Security] `bpo-22636 `__: Avoid " -#~ "shell injection problems with ctypes.util.find_library()." - -#~ msgid "" -#~ "`bpo-16182 `__: Fix various functions " -#~ "in the \"readline\" module to use the locale encoding, and fix " -#~ "get_begidx() and get_endidx() to return code point indexes." -#~ msgstr "" -#~ "`bpo-16182 `__: Fix various functions " -#~ "in the \"readline\" module to use the locale encoding, and fix " -#~ "get_begidx() and get_endidx() to return code point indexes." - -#~ msgid "" -#~ "`bpo-27392 `__: Add loop." -#~ "connect_accepted_socket(). Patch by Jim Fulton." -#~ msgstr "" -#~ "`bpo-27392 `__: Add loop." -#~ "connect_accepted_socket(). Patch by Jim Fulton." - -#~ msgid "" -#~ "`bpo-27477 `__: IDLE search dialogs " -#~ "now use ttk widgets." -#~ msgstr "" -#~ "`bpo-27477 `__: IDLE search dialogs " -#~ "now use ttk widgets." - -#~ msgid "" -#~ "`bpo-27452 `__: make command line " -#~ "\"idle-test> python test_help.py\" work. __file__ is relative when python " -#~ "is started in the file's directory." -#~ msgstr "" -#~ "`bpo-27452 `__: make command line " -#~ "\"idle-test> python test_help.py\" work. __file__ is relative when python " -#~ "is started in the file's directory." - -#~ msgid "" -#~ "`bpo-27380 `__: IDLE: add query.py " -#~ "with base Query dialog and ttk widgets. Module had subclasses " -#~ "SectionName, ModuleName, and HelpSource, which are used to get " -#~ "information from users by configdialog and file =>Load Module. Each " -#~ "subclass has itw own validity checks. Using ModuleName allows users to " -#~ "edit bad module names instead of starting over. Add tests and delete the " -#~ "two files combined into the new one." -#~ msgstr "" -#~ "`bpo-27380 `__: IDLE: add query.py " -#~ "with base Query dialog and ttk widgets. Module had subclasses " -#~ "SectionName, ModuleName, and HelpSource, which are used to get " -#~ "information from users by configdialog and file =>Load Module. Each " -#~ "subclass has itw own validity checks. Using ModuleName allows users to " -#~ "edit bad module names instead of starting over. Add tests and delete the " -#~ "two files combined into the new one." - -#~ msgid "" -#~ "`bpo-27372 `__: Test_idle no longer " -#~ "changes the locale." -#~ msgstr "" -#~ "`bpo-27372 `__: Test_idle no longer " -#~ "changes the locale." - -#~ msgid "" -#~ "`bpo-27365 `__: Allow non-ascii chars " -#~ "in IDLE NEWS.txt, for contributor names." -#~ msgstr "" -#~ "`bpo-27365 `__: Allow non-ascii chars " -#~ "in IDLE NEWS.txt, for contributor names." - -#~ msgid "" -#~ "`bpo-27245 `__: IDLE: Cleanly delete " -#~ "custom themes and key bindings. Previously, when IDLE was started from a " -#~ "console or by import, a cascade of warnings was emitted. Patch by Serhiy " -#~ "Storchaka." -#~ msgstr "" -#~ "`bpo-27245 `__: IDLE: Cleanly delete " -#~ "custom themes and key bindings. Previously, when IDLE was started from a " -#~ "console or by import, a cascade of warnings was emitted. Patch by Serhiy " -#~ "Storchaka." - -#~ msgid "" -#~ "`bpo-24137 `__: Run IDLE, test_idle, " -#~ "and htest with tkinter default root disabled. Fix code and tests that " -#~ "fail with this restriction. Fix htests to not create a second and " -#~ "redundant root and mainloop." -#~ msgstr "" -#~ "`bpo-24137 `__: Run IDLE, test_idle, " -#~ "and htest with tkinter default root disabled. Fix code and tests that " -#~ "fail with this restriction. Fix htests to not create a second and " -#~ "redundant root and mainloop." - -#~ msgid "" -#~ "`bpo-27310 `__: Fix IDLE.app failure " -#~ "to launch on OS X due to vestigial import." -#~ msgstr "" -#~ "`bpo-27310 `__: Fix IDLE.app failure " -#~ "to launch on OS X due to vestigial import." - -#~ msgid "" -#~ "`bpo-26754 `__: PyUnicode_FSDecoder() " -#~ "accepted a filename argument encoded as an iterable of integers. Now only " -#~ "strings and byte-like objects are accepted." -#~ msgstr "" -#~ "`bpo-26754 `__: PyUnicode_FSDecoder() " -#~ "accepted a filename argument encoded as an iterable of integers. Now only " -#~ "strings and byte-like objects are accepted." - -#~ msgid "" -#~ "`bpo-28066 `__: Fix the logic that " -#~ "searches build directories for generated include files when building " -#~ "outside the source tree." -#~ msgstr "" -#~ "`bpo-28066 `__: Fix the logic that " -#~ "searches build directories for generated include files when building " -#~ "outside the source tree." - -#~ msgid "" -#~ "`bpo-27442 `__: Expose the Android " -#~ "API level that python was built against, in sysconfig.get_config_vars() " -#~ "as 'ANDROID_API_LEVEL'." -#~ msgstr "" -#~ "`bpo-27442 `__: Expose the Android " -#~ "API level that python was built against, in sysconfig.get_config_vars() " -#~ "as 'ANDROID_API_LEVEL'." - -#~ msgid "" -#~ "`bpo-27434 `__: The interpreter that " -#~ "runs the cross-build, found in PATH, must now be of the same feature " -#~ "version (e.g. 3.6) as the source being built." -#~ msgstr "" -#~ "`bpo-27434 `__: The interpreter that " -#~ "runs the cross-build, found in PATH, must now be of the same feature " -#~ "version (e.g. 3.6) as the source being built." - -#~ msgid "" -#~ "`bpo-26930 `__: Update Windows builds " -#~ "to use OpenSSL 1.0.2h." -#~ msgstr "" -#~ "`bpo-26930 `__: Update Windows builds " -#~ "to use OpenSSL 1.0.2h." - -#~ msgid "" -#~ "`bpo-23968 `__: Rename the platform " -#~ "directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET). Rename the " -#~ "config directory (LIBPL) from config-$(LDVERSION) to config-$(LDVERSION)-" -#~ "$(PLATFORM_TRIPLET). Install the platform specifc _sysconfigdata module " -#~ "into the platform directory and rename it to include the ABIFLAGS." -#~ msgstr "" -#~ "`bpo-23968 `__: Rename the platform " -#~ "directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET). Rename the " -#~ "config directory (LIBPL) from config-$(LDVERSION) to config-$(LDVERSION)-" -#~ "$(PLATFORM_TRIPLET). Install the platform specifc _sysconfigdata module " -#~ "into the platform directory and rename it to include the ABIFLAGS." - -#~ msgid "" -#~ "`bpo-27332 `__: Fixed the type of the " -#~ "first argument of module-level functions generated by Argument Clinic. " -#~ "Patch by Petr Viktorin." -#~ msgstr "" -#~ "`bpo-27332 `__: Fixed the type of the " -#~ "first argument of module-level functions generated by Argument Clinic. " -#~ "Patch by Petr Viktorin." - -#~ msgid "" -#~ "`bpo-27418 `__: Fixed Tools/" -#~ "importbench/importbench.py." -#~ msgstr "" -#~ "`bpo-27418 `__: Fixed Tools/" -#~ "importbench/importbench.py." - -#~ msgid "" -#~ "`bpo-19489 `__: Moved the search box " -#~ "from the sidebar to the header and footer of each page. Patch by Ammar " -#~ "Askar." -#~ msgstr "" -#~ "`bpo-19489 `__: Moved the search box " -#~ "from the sidebar to the header and footer of each page. Patch by Ammar " -#~ "Askar." - -#~ msgid "" -#~ "`bpo-27285 `__: Update documentation " -#~ "to reflect the deprecation of ``pyvenv`` and normalize on the term " -#~ "\"virtual environment\". Patch by Steve Piercy." -#~ msgstr "" -#~ "`bpo-27285 `__: Update documentation " -#~ "to reflect the deprecation of ``pyvenv`` and normalize on the term " -#~ "\"virtual environment\". Patch by Steve Piercy." - -#~ msgid "" -#~ "`bpo-27027 `__: Added test.support." -#~ "is_android that is True when this is an Android build." -#~ msgstr "" -#~ "`bpo-27027 `__: Added test.support." -#~ "is_android that is True when this is an Android build." - -#~ msgid "Python 3.6.0 alpha 2" -#~ msgstr "Python 3.6.0 alpha 2" - -#~ msgid "" -#~ "`bpo-27095 `__: Simplified " -#~ "MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. Patch by Demur Rumed." -#~ msgstr "" -#~ "`bpo-27095 `__: Simplified " -#~ "MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. Patch by Demur Rumed." - -#~ msgid "" -#~ "`bpo-27190 `__: Raise " -#~ "NotSupportedError if sqlite3 is older than 3.3.1. Patch by Dave Sawyer." -#~ msgstr "" -#~ "`bpo-27190 `__: Raise " -#~ "NotSupportedError if sqlite3 is older than 3.3.1. Patch by Dave Sawyer." - -#~ msgid "" -#~ "`bpo-27286 `__: Fixed compiling " -#~ "BUILD_MAP_UNPACK_WITH_CALL opcode. Calling function with generalized " -#~ "unpacking (PEP 448) and conflicting keyword names could cause undefined " -#~ "behavior." -#~ msgstr "" -#~ "`bpo-27286 `__: Fixed compiling " -#~ "BUILD_MAP_UNPACK_WITH_CALL opcode. Calling function with generalized " -#~ "unpacking (PEP 448) and conflicting keyword names could cause undefined " -#~ "behavior." - -#~ msgid "" -#~ "`bpo-27140 `__: Added " -#~ "BUILD_CONST_KEY_MAP opcode." -#~ msgstr "" -#~ "`bpo-27140 `__: Added " -#~ "BUILD_CONST_KEY_MAP opcode." - -#~ msgid "" -#~ "`bpo-27186 `__: Add support for os." -#~ "PathLike objects to open() (part of PEP 519)." -#~ msgstr "" -#~ "`bpo-27186 `__: Add support for os." -#~ "PathLike objects to open() (part of PEP 519)." - -#~ msgid "" -#~ "`bpo-27066 `__: Fixed SystemError if " -#~ "a custom opener (for open()) returns a negative number without setting an " -#~ "exception." -#~ msgstr "" -#~ "`bpo-27066 `__: Fixed SystemError if " -#~ "a custom opener (for open()) returns a negative number without setting an " -#~ "exception." - -#~ msgid "" -#~ "`bpo-26983 `__: float() now always " -#~ "return an instance of exact float. The deprecation warning is emitted if " -#~ "__float__ returns an instance of a strict subclass of float. In a future " -#~ "versions of Python this can be an error." -#~ msgstr "" -#~ "`bpo-26983 `__: float() now always " -#~ "return an instance of exact float. The deprecation warning is emitted if " -#~ "__float__ returns an instance of a strict subclass of float. In a future " -#~ "versions of Python this can be an error." - -#~ msgid "" -#~ "`bpo-27097 `__: Python interpreter is " -#~ "now about 7% faster due to optimized instruction decoding. Based on " -#~ "patch by Demur Rumed." -#~ msgstr "" -#~ "`bpo-27097 `__: Python interpreter is " -#~ "now about 7% faster due to optimized instruction decoding. Based on " -#~ "patch by Demur Rumed." - -#~ msgid "" -#~ "`bpo-26647 `__: Python interpreter " -#~ "now uses 16-bit wordcode instead of bytecode. Patch by Demur Rumed." -#~ msgstr "" -#~ "`bpo-26647 `__: Python interpreter " -#~ "now uses 16-bit wordcode instead of bytecode. Patch by Demur Rumed." - -#~ msgid "" -#~ "`bpo-23275 `__: Allow assigning to an " -#~ "empty target list in round brackets: () = iterable." -#~ msgstr "" -#~ "`bpo-23275 `__: Allow assigning to an " -#~ "empty target list in round brackets: () = iterable." - -#~ msgid "" -#~ "`bpo-27243 `__: Update the __aiter__ " -#~ "protocol: instead of returning an awaitable that resolves to an " -#~ "asynchronous iterator, the asynchronous iterator should be returned " -#~ "directly. Doing the former will trigger a PendingDeprecationWarning." -#~ msgstr "" -#~ "`bpo-27243 `__: Update the __aiter__ " -#~ "protocol: instead of returning an awaitable that resolves to an " -#~ "asynchronous iterator, the asynchronous iterator should be returned " -#~ "directly. Doing the former will trigger a PendingDeprecationWarning." - -#~ msgid "" -#~ "`bpo-27025 `__: Generated names for " -#~ "Tkinter widgets are now more meanful and recognizirable." -#~ msgstr "" -#~ "`bpo-27025 `__: Generated names for " -#~ "Tkinter widgets are now more meanful and recognizirable." - -#~ msgid "" -#~ "`bpo-25455 `__: Fixed crashes in repr " -#~ "of recursive ElementTree.Element and functools.partial objects." -#~ msgstr "" -#~ "`bpo-25455 `__: Fixed crashes in repr " -#~ "of recursive ElementTree.Element and functools.partial objects." - -#~ msgid "" -#~ "`bpo-27294 `__: Improved repr for " -#~ "Tkinter event objects." -#~ msgstr "" -#~ "`bpo-27294 `__: Improved repr for " -#~ "Tkinter event objects." - -#~ msgid "" -#~ "`bpo-20508 `__: Improve exception " -#~ "message of IPv{4,6}Network.__getitem__. Patch by Gareth Rees." -#~ msgstr "" -#~ "`bpo-20508 `__: Improve exception " -#~ "message of IPv{4,6}Network.__getitem__. Patch by Gareth Rees." - -#~ msgid "" -#~ "[Security] `bpo-26556 `__: Update " -#~ "expat to 2.1.1, fixes CVE-2015-1283." -#~ msgstr "" -#~ "[Security] `bpo-26556 `__: Update " -#~ "expat to 2.1.1, fixes CVE-2015-1283." - -#~ msgid "" -#~ "`bpo-21386 `__: Implement missing " -#~ "IPv4Address.is_global property. It was documented since 07a5610bae9d. " -#~ "Initial patch by Roger Luethi." -#~ msgstr "" -#~ "`bpo-21386 `__: Implement missing " -#~ "IPv4Address.is_global property. It was documented since 07a5610bae9d. " -#~ "Initial patch by Roger Luethi." - -#~ msgid "" -#~ "`bpo-27029 `__: Removed deprecated " -#~ "support of universal newlines mode from ZipFile.open()." -#~ msgstr "" -#~ "`bpo-27029 `__: Removed deprecated " -#~ "support of universal newlines mode from ZipFile.open()." - -#~ msgid "" -#~ "`bpo-27030 `__: Unknown escapes " -#~ "consisting of ``'\\'`` and an ASCII letter in regular expressions now are " -#~ "errors. The re.LOCALE flag now can be used only with bytes patterns." -#~ msgstr "" -#~ "`bpo-27030 `__: Unknown escapes " -#~ "consisting of ``'\\'`` and an ASCII letter in regular expressions now are " -#~ "errors. The re.LOCALE flag now can be used only with bytes patterns." - -#~ msgid "" -#~ "`bpo-27186 `__: Add os.PathLike " -#~ "support to DirEntry (part of PEP 519). Initial patch by Jelle Zijlstra." -#~ msgstr "" -#~ "`bpo-27186 `__: Add os.PathLike " -#~ "support to DirEntry (part of PEP 519). Initial patch by Jelle Zijlstra." - -#~ msgid "" -#~ "`bpo-20900 `__: distutils register " -#~ "command now decodes HTTP responses correctly. Initial patch by ingrid." -#~ msgstr "" -#~ "`bpo-20900 `__: distutils register " -#~ "command now decodes HTTP responses correctly. Initial patch by ingrid." - -#~ msgid "" -#~ "`bpo-27186 `__: Add os.PathLike " -#~ "support to pathlib, removing its provisional status (part of PEP 519). " -#~ "Initial patch by Dusty Phillips." -#~ msgstr "" -#~ "`bpo-27186 `__: Add os.PathLike " -#~ "support to pathlib, removing its provisional status (part of PEP 519). " -#~ "Initial patch by Dusty Phillips." - -#~ msgid "" -#~ "`bpo-27186 `__: Add support for os." -#~ "PathLike objects to os.fsencode() and os.fsdecode() (part of PEP 519)." -#~ msgstr "" -#~ "`bpo-27186 `__: Add support for os." -#~ "PathLike objects to os.fsencode() and os.fsdecode() (part of PEP 519)." - -#~ msgid "" -#~ "`bpo-27186 `__: Introduce os.PathLike " -#~ "and os.fspath() (part of PEP 519)." -#~ msgstr "" -#~ "`bpo-27186 `__: Introduce os.PathLike " -#~ "and os.fspath() (part of PEP 519)." - -#~ msgid "" -#~ "`bpo-25738 `__: Stop http.server." -#~ "BaseHTTPRequestHandler.send_error() from sending a message body for 205 " -#~ "Reset Content. Also, don't send Content header fields in responses that " -#~ "don't have a body. Patch by Susumu Koshiba." -#~ msgstr "" -#~ "`bpo-25738 `__: Stop http.server." -#~ "BaseHTTPRequestHandler.send_error() from sending a message body for 205 " -#~ "Reset Content. Also, don't send Content header fields in responses that " -#~ "don't have a body. Patch by Susumu Koshiba." - -#~ msgid "" -#~ "`bpo-21313 `__: Fix the \"platform\" " -#~ "module to tolerate when sys.version contains truncated build information." -#~ msgstr "" -#~ "`bpo-21313 `__: Fix the \"platform\" " -#~ "module to tolerate when sys.version contains truncated build information." - -#~ msgid "" -#~ "[Security] `bpo-26839 `__: On Linux, :" -#~ "func:`os.urandom` now calls ``getrandom()`` with ``GRND_NONBLOCK`` to " -#~ "fall back on reading ``/dev/urandom`` if the urandom entropy pool is not " -#~ "initialized yet. Patch written by Colm Buckley." -#~ msgstr "" -#~ "[Security] `bpo-26839 `__: On Linux, :" -#~ "func:`os.urandom` now calls ``getrandom()`` with ``GRND_NONBLOCK`` to " -#~ "fall back on reading ``/dev/urandom`` if the urandom entropy pool is not " -#~ "initialized yet. Patch written by Colm Buckley." - -#~ msgid "" -#~ "`bpo-23883 `__: Added missing APIs to " -#~ "__all__ to match the documented APIs for the following modules: cgi, " -#~ "mailbox, mimetypes, plistlib and smtpd. Patches by Jacek Kołodziej." -#~ msgstr "" -#~ "`bpo-23883 `__: Added missing APIs to " -#~ "__all__ to match the documented APIs for the following modules: cgi, " -#~ "mailbox, mimetypes, plistlib and smtpd. Patches by Jacek Kołodziej." - -#~ msgid "" -#~ "`bpo-27164 `__: In the zlib module, " -#~ "allow decompressing raw Deflate streams with a predefined zdict. Based " -#~ "on patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-27164 `__: In the zlib module, " -#~ "allow decompressing raw Deflate streams with a predefined zdict. Based " -#~ "on patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-24291 `__: Fix wsgiref." -#~ "simple_server.WSGIRequestHandler to completely write data to the client. " -#~ "Previously it could do partial writes and truncate data. Also, wsgiref." -#~ "handler.ServerHandler can now handle stdout doing partial writes, but " -#~ "this is deprecated." -#~ msgstr "" -#~ "`bpo-24291 `__: Fix wsgiref." -#~ "simple_server.WSGIRequestHandler to completely write data to the client. " -#~ "Previously it could do partial writes and truncate data. Also, wsgiref." -#~ "handler.ServerHandler can now handle stdout doing partial writes, but " -#~ "this is deprecated." - -#~ msgid "" -#~ "`bpo-21272 `__: Use _sysconfigdata.py " -#~ "to initialize distutils.sysconfig." -#~ msgstr "" -#~ "`bpo-21272 `__: Use _sysconfigdata.py " -#~ "to initialize distutils.sysconfig." - -#~ msgid "" -#~ "`bpo-19611 `__: :mod:`inspect` now " -#~ "reports the implicit ``.0`` parameters generated by the compiler for " -#~ "comprehension and generator expression scopes as if they were positional-" -#~ "only parameters called ``implicit0``. Patch by Jelle Zijlstra." -#~ msgstr "" -#~ "`bpo-19611 `__: :mod:`inspect` now " -#~ "reports the implicit ``.0`` parameters generated by the compiler for " -#~ "comprehension and generator expression scopes as if they were positional-" -#~ "only parameters called ``implicit0``. Patch by Jelle Zijlstra." - -#~ msgid "" -#~ "`bpo-26809 `__: Add ``__all__`` to :" -#~ "mod:`string`. Patch by Emanuel Barry." -#~ msgstr "" -#~ "`bpo-26809 `__: Add ``__all__`` to :" -#~ "mod:`string`. Patch by Emanuel Barry." - -#~ msgid "" -#~ "`bpo-26373 `__: subprocess.Popen." -#~ "communicate now correctly ignores BrokenPipeError when the child process " -#~ "dies before .communicate() is called in more/all circumstances." -#~ msgstr "" -#~ "`bpo-26373 `__: subprocess.Popen." -#~ "communicate now correctly ignores BrokenPipeError when the child process " -#~ "dies before .communicate() is called in more/all circumstances." - -#~ msgid "" -#~ "`bpo-27167 `__: Clarify the " -#~ "subprocess.CalledProcessError error message text when the child process " -#~ "died due to a signal." -#~ msgstr "" -#~ "`bpo-27167 `__: Clarify the " -#~ "subprocess.CalledProcessError error message text when the child process " -#~ "died due to a signal." - -#~ msgid "" -#~ "`bpo-25931 `__: Don't define " -#~ "socketserver.Forking* names on platforms such as Windows that do not " -#~ "support os.fork()." -#~ msgstr "" -#~ "`bpo-25931 `__: Don't define " -#~ "socketserver.Forking* names on platforms such as Windows that do not " -#~ "support os.fork()." - -#~ msgid "" -#~ "`bpo-21776 `__: distutils.upload now " -#~ "correctly handles HTTPError. Initial patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-21776 `__: distutils.upload now " -#~ "correctly handles HTTPError. Initial patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-26526 `__: Replace custom parse " -#~ "tree validation in the parser module with a simple DFA validator." -#~ msgstr "" -#~ "`bpo-26526 `__: Replace custom parse " -#~ "tree validation in the parser module with a simple DFA validator." - -#~ msgid "" -#~ "`bpo-27114 `__: Fix SSLContext." -#~ "_load_windows_store_certs fails with PermissionError" -#~ msgstr "" -#~ "`bpo-27114 `__: Fix SSLContext." -#~ "_load_windows_store_certs fails with PermissionError" - -#~ msgid "" -#~ "`bpo-18383 `__: Avoid creating " -#~ "duplicate filters when using filterwarnings and simplefilter. Based on " -#~ "patch by Alex Shkop." -#~ msgstr "" -#~ "`bpo-18383 `__: Avoid creating " -#~ "duplicate filters when using filterwarnings and simplefilter. Based on " -#~ "patch by Alex Shkop." - -#~ msgid "" -#~ "`bpo-23026 `__: winreg.QueryValueEx() " -#~ "now return an integer for REG_QWORD type." -#~ msgstr "" -#~ "`bpo-23026 `__: winreg.QueryValueEx() " -#~ "now return an integer for REG_QWORD type." - -#~ msgid "" -#~ "`bpo-26741 `__: subprocess.Popen " -#~ "destructor now emits a ResourceWarning warning if the child process is " -#~ "still running." -#~ msgstr "" -#~ "`bpo-26741 `__: subprocess.Popen " -#~ "destructor now emits a ResourceWarning warning if the child process is " -#~ "still running." - -#~ msgid "" -#~ "`bpo-27056 `__: Optimize pickle." -#~ "load() and pickle.loads(), up to 10% faster to deserialize a lot of small " -#~ "objects." -#~ msgstr "" -#~ "`bpo-27056 `__: Optimize pickle." -#~ "load() and pickle.loads(), up to 10% faster to deserialize a lot of small " -#~ "objects." - -#~ msgid "" -#~ "`bpo-21271 `__: New keyword only " -#~ "parameters in reset_mock call." -#~ msgstr "" -#~ "`bpo-21271 `__: New keyword only " -#~ "parameters in reset_mock call." - -#~ msgid "" -#~ "`bpo-5124 `__: Paste with text " -#~ "selected now replaces the selection on X11. This matches how paste works " -#~ "on Windows, Mac, most modern Linux apps, and ttk widgets. Original patch " -#~ "by Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-5124 `__: Paste with text " -#~ "selected now replaces the selection on X11. This matches how paste works " -#~ "on Windows, Mac, most modern Linux apps, and ttk widgets. Original patch " -#~ "by Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-24750 `__: Switch all scrollbars " -#~ "in IDLE to ttk versions. Where needed, minimal tests are added to cover " -#~ "changes." -#~ msgstr "" -#~ "`bpo-24750 `__: Switch all scrollbars " -#~ "in IDLE to ttk versions. Where needed, minimal tests are added to cover " -#~ "changes." - -#~ msgid "" -#~ "`bpo-24759 `__: IDLE requires tk 8.5 " -#~ "and availability ttk widgets. Delete now unneeded tk version tests and " -#~ "code for older versions. Add test for IDLE syntax colorizoer." -#~ msgstr "" -#~ "`bpo-24759 `__: IDLE requires tk 8.5 " -#~ "and availability ttk widgets. Delete now unneeded tk version tests and " -#~ "code for older versions. Add test for IDLE syntax colorizoer." - -#~ msgid "" -#~ "`bpo-27239 `__: idlelib.macosx." -#~ "isXyzTk functions initialize as needed." -#~ msgstr "" -#~ "`bpo-27239 `__: idlelib.macosx." -#~ "isXyzTk functions initialize as needed." - -#~ msgid "" -#~ "`bpo-27262 `__: move Aqua unbinding " -#~ "code, which enable context menus, to maxosx." -#~ msgstr "" -#~ "`bpo-27262 `__: move Aqua unbinding " -#~ "code, which enable context menus, to maxosx." - -#~ msgid "" -#~ "`bpo-24759 `__: Make clear in idlelib." -#~ "idle_test.__init__ that the directory is a private implementation of test." -#~ "test_idle and tool for maintainers." -#~ msgstr "" -#~ "`bpo-24759 `__: Make clear in idlelib." -#~ "idle_test.__init__ that the directory is a private implementation of test." -#~ "test_idle and tool for maintainers." - -#~ msgid "" -#~ "`bpo-27196 `__: Stop 'ThemeChanged' " -#~ "warnings when running IDLE tests. These persisted after other warnings " -#~ "were suppressed in #20567. Apply Serhiy Storchaka's update_idletasks " -#~ "solution to four test files. Record this additional advice in idle_test/" -#~ "README.txt" -#~ msgstr "" -#~ "`bpo-27196 `__: Stop 'ThemeChanged' " -#~ "warnings when running IDLE tests. These persisted after other warnings " -#~ "were suppressed in #20567. Apply Serhiy Storchaka's update_idletasks " -#~ "solution to four test files. Record this additional advice in idle_test/" -#~ "README.txt" - -#~ msgid "" -#~ "`bpo-20567 `__: Revise idle_test/" -#~ "README.txt with advice about avoiding tk warning messages from tests. " -#~ "Apply advice to several IDLE tests." -#~ msgstr "" -#~ "`bpo-20567 `__: Revise idle_test/" -#~ "README.txt with advice about avoiding tk warning messages from tests. " -#~ "Apply advice to several IDLE tests." - -#~ msgid "" -#~ "`bpo-24225 `__: Update idlelib/README." -#~ "txt with new file names and event handlers." -#~ msgstr "" -#~ "`bpo-24225 `__: Update idlelib/README." -#~ "txt with new file names and event handlers." - -#~ msgid "" -#~ "`bpo-27156 `__: Remove obsolete code " -#~ "not used by IDLE. Replacements: 1. help.txt, replaced by help.html, is " -#~ "out-of-date and should not be used. Its dedicated viewer has be replaced " -#~ "by the html viewer in help.py. 2. ``import idlever; I = idlever." -#~ "IDLE_VERSION`` is the same as ``import sys; I = version[:version.index(' " -#~ "')]`` 3. After ``ob = stackviewer.VariablesTreeItem(*args)``, ``ob.keys() " -#~ "== list(ob.object.keys)``. 4. In macosc, runningAsOSXAPP == isAquaTk; " -#~ "idCarbonAquaTk == isCarbonTk" -#~ msgstr "" -#~ "`bpo-27156 `__: Remove obsolete code " -#~ "not used by IDLE. Replacements: 1. help.txt, replaced by help.html, is " -#~ "out-of-date and should not be used. Its dedicated viewer has be replaced " -#~ "by the html viewer in help.py. 2. ``import idlever; I = idlever." -#~ "IDLE_VERSION`` is the same as ``import sys; I = version[:version.index(' " -#~ "')]`` 3. After ``ob = stackviewer.VariablesTreeItem(*args)``, ``ob.keys() " -#~ "== list(ob.object.keys)``. 4. In macosc, runningAsOSXAPP == isAquaTk; " -#~ "idCarbonAquaTk == isCarbonTk" - -#~ msgid "" -#~ "`bpo-27117 `__: Make colorizer htest " -#~ "and turtledemo work with dark themes. Move code for configuring text " -#~ "widget colors to a new function." -#~ msgstr "" -#~ "`bpo-27117 `__: Make colorizer htest " -#~ "and turtledemo work with dark themes. Move code for configuring text " -#~ "widget colors to a new function." - -#~ msgid "" -#~ "`bpo-24225 `__: Rename many `idlelib/" -#~ "*.py` and `idle_test/test_*.py` files. Edit files to replace old names " -#~ "with new names when the old name referred to the module rather than the " -#~ "class it contained. See the issue and IDLE section in What's New in 3.6 " -#~ "for more." -#~ msgstr "" -#~ "`bpo-24225 `__: Rename many `idlelib/" -#~ "*.py` and `idle_test/test_*.py` files. Edit files to replace old names " -#~ "with new names when the old name referred to the module rather than the " -#~ "class it contained. See the issue and IDLE section in What's New in 3.6 " -#~ "for more." - -#~ msgid "" -#~ "`bpo-26673 `__: When tk reports font " -#~ "size as 0, change to size 10. Such fonts on Linux prevented the " -#~ "configuration dialog from opening." -#~ msgstr "" -#~ "`bpo-26673 `__: When tk reports font " -#~ "size as 0, change to size 10. Such fonts on Linux prevented the " -#~ "configuration dialog from opening." - -#~ msgid "" -#~ "`bpo-21939 `__: Add test for IDLE's " -#~ "percolator. Original patch by Saimadhav Heblikar." -#~ msgstr "" -#~ "`bpo-21939 `__: Add test for IDLE's " -#~ "percolator. Original patch by Saimadhav Heblikar." - -#~ msgid "" -#~ "`bpo-21676 `__: Add test for IDLE's " -#~ "replace dialog. Original patch by Saimadhav Heblikar." -#~ msgstr "" -#~ "`bpo-21676 `__: Add test for IDLE's " -#~ "replace dialog. Original patch by Saimadhav Heblikar." - -#~ msgid "" -#~ "`bpo-18410 `__: Add test for IDLE's " -#~ "search dialog. Original patch by Westley Martínez." -#~ msgstr "" -#~ "`bpo-18410 `__: Add test for IDLE's " -#~ "search dialog. Original patch by Westley Martínez." - -#~ msgid "" -#~ "`bpo-21703 `__: Add test for undo " -#~ "delegator. Patch mostly by Saimadhav Heblikar ." -#~ msgstr "" -#~ "`bpo-21703 `__: Add test for undo " -#~ "delegator. Patch mostly by Saimadhav Heblikar ." - -#~ msgid "" -#~ "`bpo-27044 `__: Add ConfigDialog." -#~ "remove_var_callbacks to stop memory leaks." -#~ msgstr "" -#~ "`bpo-27044 `__: Add ConfigDialog." -#~ "remove_var_callbacks to stop memory leaks." - -#~ msgid "" -#~ "`bpo-23977 `__: Add more asserts to " -#~ "test_delegator." -#~ msgstr "" -#~ "`bpo-23977 `__: Add more asserts to " -#~ "test_delegator." - -#~ msgid "" -#~ "`bpo-16484 `__: Change the default " -#~ "PYTHONDOCS URL to \"https:\", and fix the resulting links to use " -#~ "lowercase. Patch by Sean Rodman, test by Kaushik Nadikuditi." -#~ msgstr "" -#~ "`bpo-16484 `__: Change the default " -#~ "PYTHONDOCS URL to \"https:\", and fix the resulting links to use " -#~ "lowercase. Patch by Sean Rodman, test by Kaushik Nadikuditi." - -#~ msgid "" -#~ "`bpo-24136 `__: Document the new PEP " -#~ "448 unpacking syntax of 3.5." -#~ msgstr "" -#~ "`bpo-24136 `__: Document the new PEP " -#~ "448 unpacking syntax of 3.5." - -#~ msgid "" -#~ "`bpo-22558 `__: Add remaining doc " -#~ "links to source code for Python-coded modules. Patch by Yoni Lavi." -#~ msgstr "" -#~ "`bpo-22558 `__: Add remaining doc " -#~ "links to source code for Python-coded modules. Patch by Yoni Lavi." - -#~ msgid "" -#~ "`bpo-25285 `__: regrtest now uses " -#~ "subprocesses when the -j1 command line option is used: each test file " -#~ "runs in a fresh child process. Before, the -j1 option was ignored." -#~ msgstr "" -#~ "`bpo-25285 `__: regrtest now uses " -#~ "subprocesses when the -j1 command line option is used: each test file " -#~ "runs in a fresh child process. Before, the -j1 option was ignored." - -#~ msgid "" -#~ "`bpo-25285 `__: Tools/buildbot/test." -#~ "bat script now uses -j1 by default to run each test file in fresh child " -#~ "process." -#~ msgstr "" -#~ "`bpo-25285 `__: Tools/buildbot/test." -#~ "bat script now uses -j1 by default to run each test file in fresh child " -#~ "process." - -#~ msgid "" -#~ "`bpo-27064 `__: The py.exe launcher " -#~ "now defaults to Python 3. The Windows launcher ``py.exe`` no longer " -#~ "prefers an installed Python 2 version over Python 3 by default when used " -#~ "interactively." -#~ msgstr "" -#~ "`bpo-27064 `__: The py.exe launcher " -#~ "now defaults to Python 3. The Windows launcher ``py.exe`` no longer " -#~ "prefers an installed Python 2 version over Python 3 by default when used " -#~ "interactively." - -#~ msgid "" -#~ "`bpo-27229 `__: Fix the cross-" -#~ "compiling pgen rule for in-tree builds. Patch by Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-27229 `__: Fix the cross-" -#~ "compiling pgen rule for in-tree builds. Patch by Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-26930 `__: Update OS X 10.5+ 32-" -#~ "bit-only installer to build and link with OpenSSL 1.0.2h." -#~ msgstr "" -#~ "`bpo-26930 `__: Update OS X 10.5+ 32-" -#~ "bit-only installer to build and link with OpenSSL 1.0.2h." - -#~ msgid "" -#~ "`bpo-17500 `__, and https://github." -#~ "com/python/pythondotorg/issues/945: Remove unused and outdated icons." -#~ msgstr "" -#~ "`bpo-17500 `__, and https://github." -#~ "com/python/pythondotorg/issues/945: Remove unused and outdated icons." - -#~ msgid "" -#~ "`bpo-27186 `__: Add the PyOS_FSPath() " -#~ "function (part of PEP 519)." -#~ msgstr "" -#~ "`bpo-27186 `__: Add the PyOS_FSPath() " -#~ "function (part of PEP 519)." - -#~ msgid "" -#~ "`bpo-26282 `__: " -#~ "PyArg_ParseTupleAndKeywords() now supports positional-only parameters." -#~ msgstr "" -#~ "`bpo-26282 `__: " -#~ "PyArg_ParseTupleAndKeywords() now supports positional-only parameters." - -#~ msgid "" -#~ "`bpo-26282 `__: Argument Clinic now " -#~ "supports positional-only and keyword parameters in the same function." -#~ msgstr "" -#~ "`bpo-26282 `__: Argument Clinic now " -#~ "supports positional-only and keyword parameters in the same function." - -#~ msgid "Python 3.6.0 alpha 1" -#~ msgstr "Python 3.6.0 alpha 1" - -#~ msgid "Release date: 2016-05-16" -#~ msgstr "Date de sortie : 2016-05-16" - -#~ msgid "" -#~ "`bpo-20041 `__: Fixed TypeError when " -#~ "frame.f_trace is set to None. Patch by Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-20041 `__: Fixed TypeError when " -#~ "frame.f_trace is set to None. Patch by Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-26168 `__: Fixed possible " -#~ "refleaks in failing Py_BuildValue() with the \"N\" format unit." -#~ msgstr "" -#~ "`bpo-26168 `__: Fixed possible " -#~ "refleaks in failing Py_BuildValue() with the \"N\" format unit." - -#~ msgid "" -#~ "`bpo-26991 `__: Fix possible refleak " -#~ "when creating a function with annotations." -#~ msgstr "" -#~ "`bpo-26991 `__: Fix possible refleak " -#~ "when creating a function with annotations." - -#~ msgid "" -#~ "`bpo-27039 `__: Fixed bytearray." -#~ "remove() for values greater than 127. Based on patch by Joe Jevnik." -#~ msgstr "" -#~ "`bpo-27039 `__: Fixed bytearray." -#~ "remove() for values greater than 127. Based on patch by Joe Jevnik." - -#~ msgid "" -#~ "`bpo-23640 `__: int.from_bytes() no " -#~ "longer bypasses constructors for subclasses." -#~ msgstr "" -#~ "`bpo-23640 `__: int.from_bytes() no " -#~ "longer bypasses constructors for subclasses." - -#~ msgid "" -#~ "`bpo-27005 `__: Optimized the float." -#~ "fromhex() class method for exact float. It is now 2 times faster." -#~ msgstr "" -#~ "`bpo-27005 `__: Optimized the float." -#~ "fromhex() class method for exact float. It is now 2 times faster." - -#~ msgid "" -#~ "`bpo-18531 `__: Single var-keyword " -#~ "argument of dict subtype was passed unscathed to the C-defined function. " -#~ "Now it is converted to exact dict." -#~ msgstr "" -#~ "`bpo-18531 `__: Single var-keyword " -#~ "argument of dict subtype was passed unscathed to the C-defined function. " -#~ "Now it is converted to exact dict." - -#~ msgid "" -#~ "`bpo-26811 `__: gc.get_objects() no " -#~ "longer contains a broken tuple with NULL pointer." -#~ msgstr "" -#~ "`bpo-26811 `__: gc.get_objects() no " -#~ "longer contains a broken tuple with NULL pointer." - -#~ msgid "" -#~ "`bpo-20120 `__: Use RawConfigParser " -#~ "for .pypirc parsing, removing support for interpolation unintentionally " -#~ "added with move to Python 3. Behavior no longer does any interpolation " -#~ "in .pypirc files, matching behavior in Python 2.7 and Setuptools 19.0." -#~ msgstr "" -#~ "`bpo-20120 `__: Use RawConfigParser " -#~ "for .pypirc parsing, removing support for interpolation unintentionally " -#~ "added with move to Python 3. Behavior no longer does any interpolation " -#~ "in .pypirc files, matching behavior in Python 2.7 and Setuptools 19.0." - -#~ msgid "" -#~ "`bpo-26249 `__: Memory functions of " -#~ "the :c:func:`PyMem_Malloc` domain (:c:data:`PYMEM_DOMAIN_MEM`) now use " -#~ "the :ref:`pymalloc allocator ` rather than system :c:func:" -#~ "`malloc`. Applications calling :c:func:`PyMem_Malloc` without holding the " -#~ "GIL can now crash: use ``PYTHONMALLOC=debug`` environment variable to " -#~ "validate the usage of memory allocators in your application." -#~ msgstr "" -#~ "`bpo-26249 `__: Memory functions of " -#~ "the :c:func:`PyMem_Malloc` domain (:c:data:`PYMEM_DOMAIN_MEM`) now use " -#~ "the :ref:`pymalloc allocator ` rather than system :c:func:" -#~ "`malloc`. Applications calling :c:func:`PyMem_Malloc` without holding the " -#~ "GIL can now crash: use ``PYTHONMALLOC=debug`` environment variable to " -#~ "validate the usage of memory allocators in your application." - -#~ msgid "" -#~ "`bpo-26802 `__: Optimize function " -#~ "calls only using unpacking like ``func(*tuple)`` (no other positional " -#~ "argument, no keyword): avoid copying the tuple. Patch written by Joe " -#~ "Jevnik." -#~ msgstr "" -#~ "`bpo-26802 `__: Optimize function " -#~ "calls only using unpacking like ``func(*tuple)`` (no other positional " -#~ "argument, no keyword): avoid copying the tuple. Patch written by Joe " -#~ "Jevnik." - -#~ msgid "" -#~ "`bpo-26659 `__: Make the builtin " -#~ "slice type support cycle collection." -#~ msgstr "" -#~ "`bpo-26659 `__: Make the builtin " -#~ "slice type support cycle collection." - -#~ msgid "" -#~ "`bpo-26718 `__: super.__init__ no " -#~ "longer leaks memory if called multiple times. NOTE: A direct call of " -#~ "super.__init__ is not endorsed!" -#~ msgstr "" -#~ "`bpo-26718 `__: super.__init__ no " -#~ "longer leaks memory if called multiple times. NOTE: A direct call of " -#~ "super.__init__ is not endorsed!" - -#~ msgid "" -#~ "`bpo-27138 `__: Fix the doc comment " -#~ "for FileFinder.find_spec()." -#~ msgstr "" -#~ "`bpo-27138 `__: Fix the doc comment " -#~ "for FileFinder.find_spec()." - -#~ msgid "" -#~ "`bpo-27147 `__: Mention PEP 420 in " -#~ "the importlib docs." -#~ msgstr "" -#~ "`bpo-27147 `__: Mention PEP 420 in " -#~ "the importlib docs." - -#~ msgid "" -#~ "`bpo-25339 `__: PYTHONIOENCODING now " -#~ "has priority over locale in setting the error handler for stdin and " -#~ "stdout." -#~ msgstr "" -#~ "`bpo-25339 `__: PYTHONIOENCODING now " -#~ "has priority over locale in setting the error handler for stdin and " -#~ "stdout." - -#~ msgid "" -#~ "`bpo-26494 `__: Fixed crash on " -#~ "iterating exhausting iterators. Affected classes are generic sequence " -#~ "iterators, iterators of str, bytes, bytearray, list, tuple, set, " -#~ "frozenset, dict, OrderedDict, corresponding views and os.scandir() " -#~ "iterator." -#~ msgstr "" -#~ "`bpo-26494 `__: Fixed crash on " -#~ "iterating exhausting iterators. Affected classes are generic sequence " -#~ "iterators, iterators of str, bytes, bytearray, list, tuple, set, " -#~ "frozenset, dict, OrderedDict, corresponding views and os.scandir() " -#~ "iterator." - -#~ msgid "" -#~ "`bpo-26574 `__: Optimize ``bytes." -#~ "replace(b'', b'.')`` and ``bytearray.replace(b'', b'.')``. Patch written " -#~ "by Josh Snider." -#~ msgstr "" -#~ "`bpo-26574 `__: Optimize ``bytes." -#~ "replace(b'', b'.')`` and ``bytearray.replace(b'', b'.')``. Patch written " -#~ "by Josh Snider." - -#~ msgid "" -#~ "`bpo-26581 `__: If coding cookie is " -#~ "specified multiple times on a line in Python source code file, only the " -#~ "first one is taken to account." -#~ msgstr "" -#~ "`bpo-26581 `__: If coding cookie is " -#~ "specified multiple times on a line in Python source code file, only the " -#~ "first one is taken to account." - -#~ msgid "" -#~ "`bpo-19711 `__: Add tests for " -#~ "reloading namespace packages." -#~ msgstr "" -#~ "`bpo-19711 `__: Add tests for " -#~ "reloading namespace packages." - -#~ msgid "" -#~ "`bpo-21099 `__: Switch applicable " -#~ "importlib tests to use PEP 451 API." -#~ msgstr "" -#~ "`bpo-21099 `__: Switch applicable " -#~ "importlib tests to use PEP 451 API." - -#~ msgid "" -#~ "`bpo-26563 `__: Debug hooks on Python " -#~ "memory allocators now raise a fatal error if functions of the :c:func:" -#~ "`PyMem_Malloc` family are called without holding the GIL." -#~ msgstr "" -#~ "`bpo-26563 `__: Debug hooks on Python " -#~ "memory allocators now raise a fatal error if functions of the :c:func:" -#~ "`PyMem_Malloc` family are called without holding the GIL." - -#~ msgid "" -#~ "`bpo-26564 `__: On error, the debug " -#~ "hooks on Python memory allocators now use the :mod:`tracemalloc` module " -#~ "to get the traceback where a memory block was allocated." -#~ msgstr "" -#~ "`bpo-26564 `__: On error, the debug " -#~ "hooks on Python memory allocators now use the :mod:`tracemalloc` module " -#~ "to get the traceback where a memory block was allocated." - -#~ msgid "" -#~ "`bpo-26558 `__: The debug hooks on " -#~ "Python memory allocator :c:func:`PyObject_Malloc` now detect when " -#~ "functions are called without holding the GIL." -#~ msgstr "" -#~ "`bpo-26558 `__: The debug hooks on " -#~ "Python memory allocator :c:func:`PyObject_Malloc` now detect when " -#~ "functions are called without holding the GIL." - -#~ msgid "" -#~ "`bpo-26516 `__: Add :envvar:" -#~ "`PYTHONMALLOC` environment variable to set the Python memory allocators " -#~ "and/or install debug hooks." -#~ msgstr "" -#~ "`bpo-26516 `__: Add :envvar:" -#~ "`PYTHONMALLOC` environment variable to set the Python memory allocators " -#~ "and/or install debug hooks." - -#~ msgid "" -#~ "`bpo-26516 `__: The :c:func:" -#~ "`PyMem_SetupDebugHooks` function can now also be used on Python compiled " -#~ "in release mode." -#~ msgstr "" -#~ "`bpo-26516 `__: The :c:func:" -#~ "`PyMem_SetupDebugHooks` function can now also be used on Python compiled " -#~ "in release mode." - -#~ msgid "" -#~ "`bpo-26516 `__: The :envvar:" -#~ "`PYTHONMALLOCSTATS` environment variable can now also be used on Python " -#~ "compiled in release mode. It now has no effect if set to an empty string." -#~ msgstr "" -#~ "`bpo-26516 `__: The :envvar:" -#~ "`PYTHONMALLOCSTATS` environment variable can now also be used on Python " -#~ "compiled in release mode. It now has no effect if set to an empty string." - -#~ msgid "" -#~ "`bpo-26516 `__: In debug mode, debug " -#~ "hooks are now also installed on Python memory allocators when Python is " -#~ "configured without pymalloc." -#~ msgstr "" -#~ "`bpo-26516 `__: In debug mode, debug " -#~ "hooks are now also installed on Python memory allocators when Python is " -#~ "configured without pymalloc." - -#~ msgid "" -#~ "`bpo-26464 `__: Fix str.translate() " -#~ "when string is ASCII and first replacements removes character, but next " -#~ "replacement uses a non-ASCII character or a string longer than 1 " -#~ "character. Regression introduced in Python 3.5.0." -#~ msgstr "" -#~ "`bpo-26464 `__: Fix str.translate() " -#~ "when string is ASCII and first replacements removes character, but next " -#~ "replacement uses a non-ASCII character or a string longer than 1 " -#~ "character. Regression introduced in Python 3.5.0." - -#~ msgid "" -#~ "`bpo-22836 `__: Ensure exception " -#~ "reports from PyErr_Display() and PyErr_WriteUnraisable() are sensible " -#~ "even when formatting them produces secondary errors. This affects the " -#~ "reports produced by sys.__excepthook__() and when __del__() raises an " -#~ "exception." -#~ msgstr "" -#~ "`bpo-22836 `__: Ensure exception " -#~ "reports from PyErr_Display() and PyErr_WriteUnraisable() are sensible " -#~ "even when formatting them produces secondary errors. This affects the " -#~ "reports produced by sys.__excepthook__() and when __del__() raises an " -#~ "exception." - -#~ msgid "" -#~ "`bpo-26302 `__: Correct behavior to " -#~ "reject comma as a legal character for cookie names." -#~ msgstr "" -#~ "`bpo-26302 `__: Correct behavior to " -#~ "reject comma as a legal character for cookie names." - -#~ msgid "" -#~ "`bpo-26136 `__: Upgrade the warning " -#~ "when a generator raises StopIteration from PendingDeprecationWarning to " -#~ "DeprecationWarning. Patch by Anish Shah." -#~ msgstr "" -#~ "`bpo-26136 `__: Upgrade the warning " -#~ "when a generator raises StopIteration from PendingDeprecationWarning to " -#~ "DeprecationWarning. Patch by Anish Shah." - -#~ msgid "" -#~ "`bpo-26204 `__: The compiler now " -#~ "ignores all constant statements: bytes, str, int, float, complex, name " -#~ "constants (None, False, True), Ellipsis and ast.Constant; not only str " -#~ "and int. For example, ``1.0`` is now ignored in ``def f(): 1.0``." -#~ msgstr "" -#~ "`bpo-26204 `__: The compiler now " -#~ "ignores all constant statements: bytes, str, int, float, complex, name " -#~ "constants (None, False, True), Ellipsis and ast.Constant; not only str " -#~ "and int. For example, ``1.0`` is now ignored in ``def f(): 1.0``." - -#~ msgid "" -#~ "`bpo-4806 `__: Avoid masking the " -#~ "original TypeError exception when using star (``*``) unpacking in " -#~ "function calls. Based on patch by Hagen Fürstenau and Daniel Urban." -#~ msgstr "" -#~ "`bpo-4806 `__: Avoid masking the " -#~ "original TypeError exception when using star (``*``) unpacking in " -#~ "function calls. Based on patch by Hagen Fürstenau and Daniel Urban." - -#~ msgid "" -#~ "`bpo-26146 `__: Add a new kind of AST " -#~ "node: ``ast.Constant``. It can be used by external AST optimizers, but " -#~ "the compiler does not emit directly such node." -#~ msgstr "" -#~ "`bpo-26146 `__: Add a new kind of AST " -#~ "node: ``ast.Constant``. It can be used by external AST optimizers, but " -#~ "the compiler does not emit directly such node." - -#~ msgid "" -#~ "`bpo-23601 `__: Sped-up allocation " -#~ "of dict key objects by using Python's small object allocator. " -#~ "(Contributed by Julian Taylor.)" -#~ msgstr "" -#~ "`bpo-23601 `__: Sped-up allocation " -#~ "of dict key objects by using Python's small object allocator. " -#~ "(Contributed by Julian Taylor.)" - -#~ msgid "" -#~ "`bpo-18018 `__: Import raises " -#~ "ImportError instead of SystemError if a relative import is attempted " -#~ "without a known parent package." -#~ msgstr "" -#~ "`bpo-18018 `__: Import raises " -#~ "ImportError instead of SystemError if a relative import is attempted " -#~ "without a known parent package." - -#~ msgid "" -#~ "`bpo-25843 `__: When compiling code, " -#~ "don't merge constants if they are equal but have a different types. For " -#~ "example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " -#~ "two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " -#~ "returns ``1.0`` (``float``), even if ``1`` and ``1.0`` are equal." -#~ msgstr "" -#~ "`bpo-25843 `__: When compiling code, " -#~ "don't merge constants if they are equal but have a different types. For " -#~ "example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " -#~ "two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " -#~ "returns ``1.0`` (``float``), even if ``1`` and ``1.0`` are equal." - -#~ msgid "" -#~ "`bpo-26107 `__: The format of the " -#~ "``co_lnotab`` attribute of code objects changes to support negative line " -#~ "number delta." -#~ msgstr "" -#~ "`bpo-26107 `__: The format of the " -#~ "``co_lnotab`` attribute of code objects changes to support negative line " -#~ "number delta." - -#~ msgid "" -#~ "`bpo-26154 `__: Add a new private " -#~ "_PyThreadState_UncheckedGet() function to get the current Python thread " -#~ "state, but don't issue a fatal error if it is NULL. This new function " -#~ "must be used instead of accessing directly the _PyThreadState_Current " -#~ "variable. The variable is no more exposed since Python 3.5.1 to hide the " -#~ "exact implementation of atomic C types, to avoid compiler issues." -#~ msgstr "" -#~ "`bpo-26154 `__: Add a new private " -#~ "_PyThreadState_UncheckedGet() function to get the current Python thread " -#~ "state, but don't issue a fatal error if it is NULL. This new function " -#~ "must be used instead of accessing directly the _PyThreadState_Current " -#~ "variable. The variable is no more exposed since Python 3.5.1 to hide the " -#~ "exact implementation of atomic C types, to avoid compiler issues." - -#~ msgid "" -#~ "`bpo-25791 `__: If __package__ != " -#~ "__spec__.parent or if neither __package__ or __spec__ are defined then " -#~ "ImportWarning is raised." -#~ msgstr "" -#~ "`bpo-25791 `__: If __package__ != " -#~ "__spec__.parent or if neither __package__ or __spec__ are defined then " -#~ "ImportWarning is raised." - -#~ msgid "" -#~ "`bpo-22995 `__: [UPDATE] Comment out " -#~ "the one of the pickleability tests in _PyObject_GetState() due to " -#~ "regressions observed in Cython-based projects." -#~ msgstr "" -#~ "`bpo-22995 `__: [UPDATE] Comment out " -#~ "the one of the pickleability tests in _PyObject_GetState() due to " -#~ "regressions observed in Cython-based projects." - -#~ msgid "" -#~ "`bpo-25961 `__: Disallowed null " -#~ "characters in the type name." -#~ msgstr "" -#~ "`bpo-25961 `__: Disallowed null " -#~ "characters in the type name." - -#~ msgid "" -#~ "`bpo-25973 `__: Fix segfault when an " -#~ "invalid nonlocal statement binds a name starting with two underscores." -#~ msgstr "" -#~ "`bpo-25973 `__: Fix segfault when an " -#~ "invalid nonlocal statement binds a name starting with two underscores." - -#~ msgid "" -#~ "`bpo-22995 `__: Instances of " -#~ "extension types with a state that aren't subclasses of list or dict and " -#~ "haven't implemented any pickle-related methods (__reduce__, " -#~ "__reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can " -#~ "no longer be pickled. Including memoryview." -#~ msgstr "" -#~ "`bpo-22995 `__: Instances of " -#~ "extension types with a state that aren't subclasses of list or dict and " -#~ "haven't implemented any pickle-related methods (__reduce__, " -#~ "__reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can " -#~ "no longer be pickled. Including memoryview." - -#~ msgid "" -#~ "`bpo-20440 `__: Massive replacing " -#~ "unsafe attribute setting code with special macro Py_SETREF." -#~ msgstr "" -#~ "`bpo-20440 `__: Massive replacing " -#~ "unsafe attribute setting code with special macro Py_SETREF." - -#~ msgid "" -#~ "`bpo-25766 `__: Special method " -#~ "__bytes__() now works in str subclasses." -#~ msgstr "" -#~ "`bpo-25766 `__: Special method " -#~ "__bytes__() now works in str subclasses." - -#~ msgid "" -#~ "`bpo-25421 `__: __sizeof__ methods of " -#~ "builtin types now use dynamic basic size. This allows sys.getsize() to " -#~ "work correctly with their subclasses with __slots__ defined." -#~ msgstr "" -#~ "`bpo-25421 `__: __sizeof__ methods of " -#~ "builtin types now use dynamic basic size. This allows sys.getsize() to " -#~ "work correctly with their subclasses with __slots__ defined." - -#~ msgid "" -#~ "`bpo-25709 `__: Fixed problem with in-" -#~ "place string concatenation and utf-8 cache." -#~ msgstr "" -#~ "`bpo-25709 `__: Fixed problem with in-" -#~ "place string concatenation and utf-8 cache." - -#~ msgid "" -#~ "`bpo-5319 `__: New Py_FinalizeEx() API " -#~ "allowing Python to set an exit status of 120 on failure to flush buffered " -#~ "streams." -#~ msgstr "" -#~ "`bpo-5319 `__: New Py_FinalizeEx() API " -#~ "allowing Python to set an exit status of 120 on failure to flush buffered " -#~ "streams." - -#~ msgid "" -#~ "`bpo-25485 `__: telnetlib.Telnet is " -#~ "now a context manager." -#~ msgstr "" -#~ "`bpo-25485 `__: telnetlib.Telnet is " -#~ "now a context manager." - -#~ msgid "" -#~ "`bpo-24097 `__: Fixed crash in object." -#~ "__reduce__() if slot name is freed inside __getattr__." -#~ msgstr "" -#~ "`bpo-24097 `__: Fixed crash in object." -#~ "__reduce__() if slot name is freed inside __getattr__." - -#~ msgid "" -#~ "`bpo-24731 `__: Fixed crash on " -#~ "converting objects with special methods __bytes__, __trunc__, and " -#~ "__float__ returning instances of subclasses of bytes, int, and float to " -#~ "subclasses of bytes, int, and float correspondingly." -#~ msgstr "" -#~ "`bpo-24731 `__: Fixed crash on " -#~ "converting objects with special methods __bytes__, __trunc__, and " -#~ "__float__ returning instances of subclasses of bytes, int, and float to " -#~ "subclasses of bytes, int, and float correspondingly." - -#~ msgid "" -#~ "`bpo-25630 `__: Fix a possible " -#~ "segfault during argument parsing in functions that accept filesystem " -#~ "paths." -#~ msgstr "" -#~ "`bpo-25630 `__: Fix a possible " -#~ "segfault during argument parsing in functions that accept filesystem " -#~ "paths." - -#~ msgid "" -#~ "`bpo-23564 `__: Fixed a partially " -#~ "broken sanity check in the _posixsubprocess internals regarding how " -#~ "fds_to_pass were passed to the child. The bug had no actual impact as " -#~ "subprocess.py already avoided it." -#~ msgstr "" -#~ "`bpo-23564 `__: Fixed a partially " -#~ "broken sanity check in the _posixsubprocess internals regarding how " -#~ "fds_to_pass were passed to the child. The bug had no actual impact as " -#~ "subprocess.py already avoided it." - -#~ msgid "" -#~ "`bpo-25388 `__: Fixed tokenizer crash " -#~ "when processing undecodable source code with a null byte." -#~ msgstr "" -#~ "`bpo-25388 `__: Fixed tokenizer crash " -#~ "when processing undecodable source code with a null byte." - -#~ msgid "" -#~ "`bpo-25462 `__: The hash of the key " -#~ "now is calculated only once in most operations in C implementation of " -#~ "OrderedDict." -#~ msgstr "" -#~ "`bpo-25462 `__: The hash of the key " -#~ "now is calculated only once in most operations in C implementation of " -#~ "OrderedDict." - -#~ msgid "" -#~ "`bpo-22995 `__: Default " -#~ "implementation of __reduce__ and __reduce_ex__ now rejects builtin types " -#~ "with not defined __new__." -#~ msgstr "" -#~ "`bpo-22995 `__: Default " -#~ "implementation of __reduce__ and __reduce_ex__ now rejects builtin types " -#~ "with not defined __new__." - -#~ msgid "" -#~ "`bpo-24802 `__: Avoid buffer " -#~ "overreads when int(), float(), compile(), exec() and eval() are passed " -#~ "bytes-like objects. These objects are not necessarily terminated by a " -#~ "null byte, but the functions assumed they were." -#~ msgstr "" -#~ "`bpo-24802 `__: Avoid buffer " -#~ "overreads when int(), float(), compile(), exec() and eval() are passed " -#~ "bytes-like objects. These objects are not necessarily terminated by a " -#~ "null byte, but the functions assumed they were." - -#~ msgid "" -#~ "`bpo-25555 `__: Fix parser and AST: " -#~ "fill lineno and col_offset of \"arg\" node when compiling AST from Python " -#~ "objects." -#~ msgstr "" -#~ "`bpo-25555 `__: Fix parser and AST: " -#~ "fill lineno and col_offset of \"arg\" node when compiling AST from Python " -#~ "objects." - -#~ msgid "" -#~ "`bpo-24726 `__: Fixed a crash and " -#~ "leaking NULL in repr() of OrderedDict that was mutated by direct calls of " -#~ "dict methods." -#~ msgstr "" -#~ "`bpo-24726 `__: Fixed a crash and " -#~ "leaking NULL in repr() of OrderedDict that was mutated by direct calls of " -#~ "dict methods." - -#~ msgid "" -#~ "`bpo-25449 `__: Iterating OrderedDict " -#~ "with keys with unstable hash now raises KeyError in C implementations as " -#~ "well as in Python implementation." -#~ msgstr "" -#~ "`bpo-25449 `__: Iterating OrderedDict " -#~ "with keys with unstable hash now raises KeyError in C implementations as " -#~ "well as in Python implementation." - -#~ msgid "" -#~ "`bpo-25395 `__: Fixed crash when " -#~ "highly nested OrderedDict structures were garbage collected." -#~ msgstr "" -#~ "`bpo-25395 `__: Fixed crash when " -#~ "highly nested OrderedDict structures were garbage collected." - -#~ msgid "" -#~ "`bpo-25401 `__: Optimize bytes." -#~ "fromhex() and bytearray.fromhex(): they are now between 2x and 3.5x " -#~ "faster." -#~ msgstr "" -#~ "`bpo-25401 `__: Optimize bytes." -#~ "fromhex() and bytearray.fromhex(): they are now between 2x and 3.5x " -#~ "faster." - -#~ msgid "" -#~ "`bpo-25399 `__: Optimize bytearray % " -#~ "args using the new private _PyBytesWriter API. Formatting is now between " -#~ "2.5 and 5 times faster." -#~ msgstr "" -#~ "`bpo-25399 `__: Optimize bytearray % " -#~ "args using the new private _PyBytesWriter API. Formatting is now between " -#~ "2.5 and 5 times faster." - -#~ msgid "" -#~ "`bpo-25274 `__: sys." -#~ "setrecursionlimit() now raises a RecursionError if the new recursion " -#~ "limit is too low depending at the current recursion depth. Modify also " -#~ "the \"lower-water mark\" formula to make it monotonic. This mark is used " -#~ "to decide when the overflowed flag of the thread state is reset." -#~ msgstr "" -#~ "`bpo-25274 `__: sys." -#~ "setrecursionlimit() now raises a RecursionError if the new recursion " -#~ "limit is too low depending at the current recursion depth. Modify also " -#~ "the \"lower-water mark\" formula to make it monotonic. This mark is used " -#~ "to decide when the overflowed flag of the thread state is reset." - -#~ msgid "" -#~ "`bpo-24402 `__: Fix input() to prompt " -#~ "to the redirected stdout when sys.stdout.fileno() fails." -#~ msgstr "" -#~ "`bpo-24402 `__: Fix input() to prompt " -#~ "to the redirected stdout when sys.stdout.fileno() fails." - -#~ msgid "" -#~ "`bpo-25349 `__: Optimize bytes % args " -#~ "using the new private _PyBytesWriter API. Formatting is now up to 2 times " -#~ "faster." -#~ msgstr "" -#~ "`bpo-25349 `__: Optimize bytes % args " -#~ "using the new private _PyBytesWriter API. Formatting is now up to 2 times " -#~ "faster." - -#~ msgid "" -#~ "`bpo-24806 `__: Prevent builtin types " -#~ "that are not allowed to be subclassed from being subclassed through " -#~ "multiple inheritance." -#~ msgstr "" -#~ "`bpo-24806 `__: Prevent builtin types " -#~ "that are not allowed to be subclassed from being subclassed through " -#~ "multiple inheritance." - -#~ msgid "" -#~ "`bpo-25301 `__: The UTF-8 decoder is " -#~ "now up to 15 times as fast for error handlers: ``ignore``, ``replace`` " -#~ "and ``surrogateescape``." -#~ msgstr "" -#~ "`bpo-25301 `__: The UTF-8 decoder is " -#~ "now up to 15 times as fast for error handlers: ``ignore``, ``replace`` " -#~ "and ``surrogateescape``." - -#~ msgid "" -#~ "`bpo-24848 `__: Fixed a number of " -#~ "bugs in UTF-7 decoding of misformed data." -#~ msgstr "" -#~ "`bpo-24848 `__: Fixed a number of " -#~ "bugs in UTF-7 decoding of misformed data." - -#~ msgid "" -#~ "`bpo-25267 `__: The UTF-8 encoder is " -#~ "now up to 75 times as fast for error handlers: ``ignore``, ``replace``, " -#~ "``surrogateescape``, ``surrogatepass``. Patch co-written with Serhiy " -#~ "Storchaka." -#~ msgstr "" -#~ "`bpo-25267 `__: The UTF-8 encoder is " -#~ "now up to 75 times as fast for error handlers: ``ignore``, ``replace``, " -#~ "``surrogateescape``, ``surrogatepass``. Patch co-written with Serhiy " -#~ "Storchaka." - -#~ msgid "" -#~ "`bpo-25280 `__: Import trace messages " -#~ "emitted in verbose (-v) mode are no longer formatted twice." -#~ msgstr "" -#~ "`bpo-25280 `__: Import trace messages " -#~ "emitted in verbose (-v) mode are no longer formatted twice." - -#~ msgid "" -#~ "`bpo-25227 `__: Optimize ASCII and " -#~ "latin1 encoders with the ``surrogateescape`` error handler: the encoders " -#~ "are now up to 3 times as fast. Initial patch written by Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-25227 `__: Optimize ASCII and " -#~ "latin1 encoders with the ``surrogateescape`` error handler: the encoders " -#~ "are now up to 3 times as fast. Initial patch written by Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-25003 `__: On Solaris 11.3 or " -#~ "newer, os.urandom() now uses the getrandom() function instead of the " -#~ "getentropy() function. The getentropy() function is blocking to generate " -#~ "very good quality entropy, os.urandom() doesn't need such high-quality " -#~ "entropy." -#~ msgstr "" -#~ "`bpo-25003 `__: On Solaris 11.3 or " -#~ "newer, os.urandom() now uses the getrandom() function instead of the " -#~ "getentropy() function. The getentropy() function is blocking to generate " -#~ "very good quality entropy, os.urandom() doesn't need such high-quality " -#~ "entropy." - -#~ msgid "" -#~ "`bpo-9232 `__: Modify Python's grammar " -#~ "to allow trailing commas in the argument list of a function declaration. " -#~ "For example, \"def f(\\*, a = 3,): pass\" is now legal. Patch from Mark " -#~ "Dickinson." -#~ msgstr "" -#~ "`bpo-9232 `__: Modify Python's grammar " -#~ "to allow trailing commas in the argument list of a function declaration. " -#~ "For example, \"def f(\\*, a = 3,): pass\" is now legal. Patch from Mark " -#~ "Dickinson." - -#~ msgid "" -#~ "`bpo-24965 `__: Implement PEP 498 " -#~ "\"Literal String Interpolation\". This allows you to embed expressions " -#~ "inside f-strings, which are converted to normal strings at run time. " -#~ "Given x=3, then f'value={x}' == 'value=3'. Patch by Eric V. Smith." -#~ msgstr "" -#~ "`bpo-24965 `__: Implement PEP 498 " -#~ "\"Literal String Interpolation\". This allows you to embed expressions " -#~ "inside f-strings, which are converted to normal strings at run time. " -#~ "Given x=3, then f'value={x}' == 'value=3'. Patch by Eric V. Smith." - -#~ msgid "" -#~ "`bpo-26478 `__: Fix semantic bugs " -#~ "when using binary operators with dictionary views and tuples." -#~ msgstr "" -#~ "`bpo-26478 `__: Fix semantic bugs " -#~ "when using binary operators with dictionary views and tuples." - -#~ msgid "" -#~ "`bpo-26171 `__: Fix possible integer " -#~ "overflow and heap corruption in zipimporter.get_data()." -#~ msgstr "" -#~ "`bpo-26171 `__: Fix possible integer " -#~ "overflow and heap corruption in zipimporter.get_data()." - -#~ msgid "" -#~ "`bpo-25660 `__: Fix TAB key behaviour " -#~ "in REPL with readline." -#~ msgstr "" -#~ "`bpo-25660 `__: Fix TAB key behaviour " -#~ "in REPL with readline." - -#~ msgid "" -#~ "`bpo-26288 `__: Optimize " -#~ "PyLong_AsDouble." -#~ msgstr "" -#~ "`bpo-26288 `__: Optimize " -#~ "PyLong_AsDouble." - -#~ msgid "" -#~ "`bpo-25887 `__: Raise a RuntimeError " -#~ "when a coroutine object is awaited more than once." -#~ msgstr "" -#~ "`bpo-25887 `__: Raise a RuntimeError " -#~ "when a coroutine object is awaited more than once." - -#~ msgid "" -#~ "`bpo-27057 `__: Fix os." -#~ "set_inheritable() on Android, ioctl() is blocked by SELinux and fails " -#~ "with EACCESS. The function now falls back to fcntl(). Patch written by " -#~ "Michał Bednarski." -#~ msgstr "" -#~ "`bpo-27057 `__: Fix os." -#~ "set_inheritable() on Android, ioctl() is blocked by SELinux and fails " -#~ "with EACCESS. The function now falls back to fcntl(). Patch written by " -#~ "Michał Bednarski." - -#~ msgid "" -#~ "`bpo-27014 `__: Fix infinite " -#~ "recursion using typing.py. Thanks to Kalle Tuure!" -#~ msgstr "" -#~ "`bpo-27014 `__: Fix infinite " -#~ "recursion using typing.py. Thanks to Kalle Tuure!" - -#~ msgid "" -#~ "`bpo-27031 `__: Removed dummy methods " -#~ "in Tkinter widget classes: tk_menuBar() and tk_bindForTraversal()." -#~ msgstr "" -#~ "`bpo-27031 `__: Removed dummy methods " -#~ "in Tkinter widget classes: tk_menuBar() and tk_bindForTraversal()." - -#~ msgid "" -#~ "`bpo-14132 `__: Fix urllib.request " -#~ "redirect handling when the target only has a query string. Original fix " -#~ "by Ján Janech." -#~ msgstr "" -#~ "`bpo-14132 `__: Fix urllib.request " -#~ "redirect handling when the target only has a query string. Original fix " -#~ "by Ján Janech." - -#~ msgid "" -#~ "`bpo-17214 `__: The \"urllib.request" -#~ "\" module now percent-encodes non-ASCII bytes found in redirect target " -#~ "URLs. Some servers send Location header fields with non-ASCII bytes, but " -#~ "\"http.client\" requires the request target to be ASCII-encodable, " -#~ "otherwise a UnicodeEncodeError is raised. Based on patch by Christian " -#~ "Heimes." -#~ msgstr "" -#~ "`bpo-17214 `__: The \"urllib.request" -#~ "\" module now percent-encodes non-ASCII bytes found in redirect target " -#~ "URLs. Some servers send Location header fields with non-ASCII bytes, but " -#~ "\"http.client\" requires the request target to be ASCII-encodable, " -#~ "otherwise a UnicodeEncodeError is raised. Based on patch by Christian " -#~ "Heimes." - -#~ msgid "" -#~ "`bpo-27033 `__: The default value of " -#~ "the decode_data parameter for smtpd.SMTPChannel and smtpd.SMTPServer " -#~ "constructors is changed to False." -#~ msgstr "" -#~ "`bpo-27033 `__: The default value of " -#~ "the decode_data parameter for smtpd.SMTPChannel and smtpd.SMTPServer " -#~ "constructors is changed to False." - -#~ msgid "" -#~ "`bpo-27034 `__: Removed deprecated " -#~ "class asynchat.fifo." -#~ msgstr "" -#~ "`bpo-27034 `__: Removed deprecated " -#~ "class asynchat.fifo." - -#~ msgid "" -#~ "`bpo-26870 `__: Added readline." -#~ "set_auto_history(), which can stop entries being automatically added to " -#~ "the history list. Based on patch by Tyler Crompton." -#~ msgstr "" -#~ "`bpo-26870 `__: Added readline." -#~ "set_auto_history(), which can stop entries being automatically added to " -#~ "the history list. Based on patch by Tyler Crompton." - -#~ msgid "" -#~ "`bpo-26039 `__: zipfile.ZipFile." -#~ "open() can now be used to write data into a ZIP file, as well as for " -#~ "extracting data. Patch by Thomas Kluyver." -#~ msgstr "" -#~ "`bpo-26039 `__: zipfile.ZipFile." -#~ "open() can now be used to write data into a ZIP file, as well as for " -#~ "extracting data. Patch by Thomas Kluyver." - -#~ msgid "" -#~ "`bpo-26892 `__: Honor debuglevel flag " -#~ "in urllib.request.HTTPHandler. Patch contributed by Chi Hsuan Yen." -#~ msgstr "" -#~ "`bpo-26892 `__: Honor debuglevel flag " -#~ "in urllib.request.HTTPHandler. Patch contributed by Chi Hsuan Yen." - -#~ msgid "" -#~ "`bpo-22274 `__: In the subprocess " -#~ "module, allow stderr to be redirected to stdout even when stdout is not " -#~ "redirected. Patch by Akira Li." -#~ msgstr "" -#~ "`bpo-22274 `__: In the subprocess " -#~ "module, allow stderr to be redirected to stdout even when stdout is not " -#~ "redirected. Patch by Akira Li." - -#~ msgid "" -#~ "`bpo-26807 `__: mock_open 'files' no " -#~ "longer error on readline at end of file. Patch from Yolanda Robla." -#~ msgstr "" -#~ "`bpo-26807 `__: mock_open 'files' no " -#~ "longer error on readline at end of file. Patch from Yolanda Robla." - -#~ msgid "" -#~ "`bpo-25745 `__: Fixed leaking a " -#~ "userptr in curses panel destructor." -#~ msgstr "" -#~ "`bpo-25745 `__: Fixed leaking a " -#~ "userptr in curses panel destructor." - -#~ msgid "" -#~ "`bpo-26977 `__: Removed unnecessary, " -#~ "and ignored, call to sum of squares helper in statistics.pvariance." -#~ msgstr "" -#~ "`bpo-26977 `__: Removed unnecessary, " -#~ "and ignored, call to sum of squares helper in statistics.pvariance." - -#~ msgid "" -#~ "`bpo-26002 `__: Use bisect in " -#~ "statistics.median instead of a linear search. Patch by Upendra Kuma." -#~ msgstr "" -#~ "`bpo-26002 `__: Use bisect in " -#~ "statistics.median instead of a linear search. Patch by Upendra Kuma." - -#~ msgid "" -#~ "`bpo-25974 `__: Make use of new " -#~ "Decimal.as_integer_ratio() method in statistics module. Patch by Stefan " -#~ "Krah." -#~ msgstr "" -#~ "`bpo-25974 `__: Make use of new " -#~ "Decimal.as_integer_ratio() method in statistics module. Patch by Stefan " -#~ "Krah." - -#~ msgid "" -#~ "`bpo-26996 `__: Add secrets module as " -#~ "described in PEP 506." -#~ msgstr "" -#~ "`bpo-26996 `__: Add secrets module as " -#~ "described in PEP 506." - -#~ msgid "" -#~ "`bpo-26881 `__: The modulefinder " -#~ "module now supports extended opcode arguments." -#~ msgstr "" -#~ "`bpo-26881 `__: The modulefinder " -#~ "module now supports extended opcode arguments." - -#~ msgid "" -#~ "`bpo-23815 `__: Fixed crashes related " -#~ "to directly created instances of types in _tkinter and curses.panel " -#~ "modules." -#~ msgstr "" -#~ "`bpo-23815 `__: Fixed crashes related " -#~ "to directly created instances of types in _tkinter and curses.panel " -#~ "modules." - -#~ msgid "" -#~ "`bpo-17765 `__: weakref.ref() no " -#~ "longer silently ignores keyword arguments. Patch by Georg Brandl." -#~ msgstr "" -#~ "`bpo-17765 `__: weakref.ref() no " -#~ "longer silently ignores keyword arguments. Patch by Georg Brandl." - -#~ msgid "" -#~ "`bpo-26873 `__: xmlrpc now raises " -#~ "ResponseError on unsupported type tags instead of silently return " -#~ "incorrect result." -#~ msgstr "" -#~ "`bpo-26873 `__: xmlrpc now raises " -#~ "ResponseError on unsupported type tags instead of silently return " -#~ "incorrect result." - -#~ msgid "" -#~ "`bpo-26915 `__: The __contains__ " -#~ "methods in the collections ABCs now check for identity before checking " -#~ "equality. This better matches the behavior of the concrete classes, " -#~ "allows sensible handling of NaNs, and makes it easier to reason about " -#~ "container invariants." -#~ msgstr "" -#~ "`bpo-26915 `__: The __contains__ " -#~ "methods in the collections ABCs now check for identity before checking " -#~ "equality. This better matches the behavior of the concrete classes, " -#~ "allows sensible handling of NaNs, and makes it easier to reason about " -#~ "container invariants." - -#~ msgid "" -#~ "`bpo-26711 `__: Fixed the comparison " -#~ "of plistlib.Data with other types." -#~ msgstr "" -#~ "`bpo-26711 `__: Fixed the comparison " -#~ "of plistlib.Data with other types." - -#~ msgid "" -#~ "`bpo-24114 `__: Fix an uninitialized " -#~ "variable in `ctypes.util`." -#~ msgstr "" -#~ "`bpo-24114 `__: Fix an uninitialized " -#~ "variable in `ctypes.util`." - -#~ msgid "" -#~ "`bpo-26864 `__: In urllib.request, " -#~ "change the proxy bypass host checking against no_proxy to be case-" -#~ "insensitive, and to not match unrelated host names that happen to have a " -#~ "bypassed hostname as a suffix. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-26864 `__: In urllib.request, " -#~ "change the proxy bypass host checking against no_proxy to be case-" -#~ "insensitive, and to not match unrelated host names that happen to have a " -#~ "bypassed hostname as a suffix. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-24902 `__: Print server URL on " -#~ "http.server startup. Initial patch by Felix Kaiser." -#~ msgstr "" -#~ "`bpo-24902 `__: Print server URL on " -#~ "http.server startup. Initial patch by Felix Kaiser." - -#~ msgid "" -#~ "`bpo-25788 `__: fileinput." -#~ "hook_encoded() now supports an \"errors\" argument for passing to open. " -#~ "Original patch by Joseph Hackman." -#~ msgstr "" -#~ "`bpo-25788 `__: fileinput." -#~ "hook_encoded() now supports an \"errors\" argument for passing to open. " -#~ "Original patch by Joseph Hackman." - -#~ msgid "" -#~ "`bpo-26634 `__: recursive_repr() now " -#~ "sets __qualname__ of wrapper. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-26634 `__: recursive_repr() now " -#~ "sets __qualname__ of wrapper. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26804 `__: urllib.request will " -#~ "prefer lower_case proxy environment variables over UPPER_CASE or " -#~ "Mixed_Case ones. Patch contributed by Hans-Peter Jansen." -#~ msgstr "" -#~ "`bpo-26804 `__: urllib.request will " -#~ "prefer lower_case proxy environment variables over UPPER_CASE or " -#~ "Mixed_Case ones. Patch contributed by Hans-Peter Jansen." - -#~ msgid "" -#~ "`bpo-26837 `__: assertSequenceEqual() " -#~ "now correctly outputs non-stringified differing items (like bytes in the -" -#~ "b mode). This affects assertListEqual() and assertTupleEqual()." -#~ msgstr "" -#~ "`bpo-26837 `__: assertSequenceEqual() " -#~ "now correctly outputs non-stringified differing items (like bytes in the -" -#~ "b mode). This affects assertListEqual() and assertTupleEqual()." - -#~ msgid "" -#~ "`bpo-26041 `__: Remove \"will be " -#~ "removed in Python 3.7\" from deprecation messages of platform.dist() and " -#~ "platform.linux_distribution(). Patch by Kumaripaba Miyurusara Athukorala." -#~ msgstr "" -#~ "`bpo-26041 `__: Remove \"will be " -#~ "removed in Python 3.7\" from deprecation messages of platform.dist() and " -#~ "platform.linux_distribution(). Patch by Kumaripaba Miyurusara Athukorala." - -#~ msgid "" -#~ "`bpo-26822 `__: itemgetter, " -#~ "attrgetter and methodcaller objects no longer silently ignore keyword " -#~ "arguments." -#~ msgstr "" -#~ "`bpo-26822 `__: itemgetter, " -#~ "attrgetter and methodcaller objects no longer silently ignore keyword " -#~ "arguments." - -#~ msgid "" -#~ "`bpo-26733 `__: Disassembling a class " -#~ "now disassembles class and static methods. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-26733 `__: Disassembling a class " -#~ "now disassembles class and static methods. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26801 `__: Fix error handling " -#~ "in :func:`shutil.get_terminal_size`, catch :exc:`AttributeError` instead " -#~ "of :exc:`NameError`. Patch written by Emanuel Barry." -#~ msgstr "" -#~ "`bpo-26801 `__: Fix error handling " -#~ "in :func:`shutil.get_terminal_size`, catch :exc:`AttributeError` instead " -#~ "of :exc:`NameError`. Patch written by Emanuel Barry." - -#~ msgid "" -#~ "`bpo-24838 `__: tarfile's ustar and " -#~ "gnu formats now correctly calculate name and link field limits for " -#~ "multibyte character encodings like utf-8." -#~ msgstr "" -#~ "`bpo-24838 `__: tarfile's ustar and " -#~ "gnu formats now correctly calculate name and link field limits for " -#~ "multibyte character encodings like utf-8." - -#~ msgid "" -#~ "[Security] `bpo-26657 `__: Fix " -#~ "directory traversal vulnerability with http.server on Windows. This " -#~ "fixes a regression that was introduced in 3.3.4rc1 and 3.4.0rc1. Based " -#~ "on patch by Philipp Hagemeister." -#~ msgstr "" -#~ "[Security] `bpo-26657 `__: Fix " -#~ "directory traversal vulnerability with http.server on Windows. This " -#~ "fixes a regression that was introduced in 3.3.4rc1 and 3.4.0rc1. Based " -#~ "on patch by Philipp Hagemeister." - -#~ msgid "" -#~ "`bpo-26717 `__: Stop encoding Latin-1-" -#~ "ized WSGI paths with UTF-8. Patch by Anthony Sottile." -#~ msgstr "" -#~ "`bpo-26717 `__: Stop encoding Latin-1-" -#~ "ized WSGI paths with UTF-8. Patch by Anthony Sottile." - -#~ msgid "" -#~ "`bpo-26782 `__: Add STARTUPINFO to " -#~ "subprocess.__all__ on Windows." -#~ msgstr "" -#~ "`bpo-26782 `__: Add STARTUPINFO to " -#~ "subprocess.__all__ on Windows." - -#~ msgid "" -#~ "`bpo-26404 `__: Add context manager " -#~ "to socketserver. Patch by Aviv Palivoda." -#~ msgstr "" -#~ "`bpo-26404 `__: Add context manager " -#~ "to socketserver. Patch by Aviv Palivoda." - -#~ msgid "" -#~ "`bpo-26735 `__: Fix :func:`os." -#~ "urandom` on Solaris 11.3 and newer when reading more than 1,024 bytes: " -#~ "call ``getrandom()`` multiple times with a limit of 1024 bytes per call." -#~ msgstr "" -#~ "`bpo-26735 `__: Fix :func:`os." -#~ "urandom` on Solaris 11.3 and newer when reading more than 1,024 bytes: " -#~ "call ``getrandom()`` multiple times with a limit of 1024 bytes per call." - -#~ msgid "" -#~ "`bpo-26585 `__: Eliminate http.server." -#~ "_quote_html() and use html.escape(quote=False). Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-26585 `__: Eliminate http.server." -#~ "_quote_html() and use html.escape(quote=False). Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26685 `__: Raise OSError if " -#~ "closing a socket fails." -#~ msgstr "" -#~ "`bpo-26685 `__: Raise OSError if " -#~ "closing a socket fails." - -#~ msgid "" -#~ "`bpo-16329 `__: Add .webm to " -#~ "mimetypes.types_map. Patch by Giampaolo Rodola'." -#~ msgstr "" -#~ "`bpo-16329 `__: Add .webm to " -#~ "mimetypes.types_map. Patch by Giampaolo Rodola'." - -#~ msgid "" -#~ "`bpo-13952 `__: Add .csv to mimetypes." -#~ "types_map. Patch by Geoff Wilson." -#~ msgstr "" -#~ "`bpo-13952 `__: Add .csv to mimetypes." -#~ "types_map. Patch by Geoff Wilson." - -#~ msgid "" -#~ "`bpo-26587 `__: the site module now " -#~ "allows .pth files to specify files to be added to sys.path (e.g. zip " -#~ "files)." -#~ msgstr "" -#~ "`bpo-26587 `__: the site module now " -#~ "allows .pth files to specify files to be added to sys.path (e.g. zip " -#~ "files)." - -#~ msgid "" -#~ "`bpo-25609 `__: Introduce contextlib." -#~ "AbstractContextManager and typing.ContextManager." -#~ msgstr "" -#~ "`bpo-25609 `__: Introduce contextlib." -#~ "AbstractContextManager and typing.ContextManager." - -#~ msgid "" -#~ "`bpo-26709 `__: Fixed Y2038 problem " -#~ "in loading binary PLists." -#~ msgstr "" -#~ "`bpo-26709 `__: Fixed Y2038 problem " -#~ "in loading binary PLists." - -#~ msgid "" -#~ "`bpo-23735 `__: Handle terminal " -#~ "resizing with Readline 6.3+ by installing our own SIGWINCH handler. " -#~ "Patch by Eric Price." -#~ msgstr "" -#~ "`bpo-23735 `__: Handle terminal " -#~ "resizing with Readline 6.3+ by installing our own SIGWINCH handler. " -#~ "Patch by Eric Price." - -#~ msgid "" -#~ "`bpo-25951 `__: Change SSLSocket." -#~ "sendall() to return None, as explicitly documented for plain socket " -#~ "objects. Patch by Aviv Palivoda." -#~ msgstr "" -#~ "`bpo-25951 `__: Change SSLSocket." -#~ "sendall() to return None, as explicitly documented for plain socket " -#~ "objects. Patch by Aviv Palivoda." - -#~ msgid "" -#~ "`bpo-26586 `__: In http.server, " -#~ "respond with \"413 Request header fields too large\" if there are too " -#~ "many header fields to parse, rather than killing the connection and " -#~ "raising an unhandled exception. Patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-26586 `__: In http.server, " -#~ "respond with \"413 Request header fields too large\" if there are too " -#~ "many header fields to parse, rather than killing the connection and " -#~ "raising an unhandled exception. Patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26676 `__: Added missing " -#~ "XMLPullParser to ElementTree.__all__." -#~ msgstr "" -#~ "`bpo-26676 `__: Added missing " -#~ "XMLPullParser to ElementTree.__all__." - -#~ msgid "" -#~ "`bpo-22854 `__: Change BufferedReader." -#~ "writable() and BufferedWriter.readable() to always return False." -#~ msgstr "" -#~ "`bpo-22854 `__: Change BufferedReader." -#~ "writable() and BufferedWriter.readable() to always return False." - -#~ msgid "" -#~ "`bpo-26492 `__: Exhausted iterator of " -#~ "array.array now conforms with the behavior of iterators of other mutable " -#~ "sequences: it lefts exhausted even if iterated array is extended." -#~ msgstr "" -#~ "`bpo-26492 `__: Exhausted iterator of " -#~ "array.array now conforms with the behavior of iterators of other mutable " -#~ "sequences: it lefts exhausted even if iterated array is extended." - -#~ msgid "" -#~ "`bpo-26641 `__: doctest.DocFileTest " -#~ "and doctest.testfile() now support packages (module splitted into " -#~ "multiple directories) for the package parameter." -#~ msgstr "" -#~ "`bpo-26641 `__: doctest.DocFileTest " -#~ "and doctest.testfile() now support packages (module splitted into " -#~ "multiple directories) for the package parameter." - -#~ msgid "" -#~ "`bpo-25195 `__: Fix a regression in " -#~ "mock.MagicMock. _Call is a subclass of tuple (changeset 3603bae63c13 only " -#~ "works for classes) so we need to implement __ne__ ourselves. Patch by " -#~ "Andrew Plummer." -#~ msgstr "" -#~ "`bpo-25195 `__: Fix a regression in " -#~ "mock.MagicMock. _Call is a subclass of tuple (changeset 3603bae63c13 only " -#~ "works for classes) so we need to implement __ne__ ourselves. Patch by " -#~ "Andrew Plummer." - -#~ msgid "" -#~ "`bpo-26644 `__: Raise ValueError " -#~ "rather than SystemError when a negative length is passed to SSLSocket." -#~ "recv() or read()." -#~ msgstr "" -#~ "`bpo-26644 `__: Raise ValueError " -#~ "rather than SystemError when a negative length is passed to SSLSocket." -#~ "recv() or read()." - -#~ msgid "" -#~ "`bpo-23804 `__: Fix SSL recv(0) and " -#~ "read(0) methods to return zero bytes instead of up to 1024." -#~ msgstr "" -#~ "`bpo-23804 `__: Fix SSL recv(0) and " -#~ "read(0) methods to return zero bytes instead of up to 1024." - -#~ msgid "" -#~ "`bpo-26616 `__: Fixed a bug in " -#~ "datetime.astimezone() method." -#~ msgstr "" -#~ "`bpo-26616 `__: Fixed a bug in " -#~ "datetime.astimezone() method." - -#~ msgid "" -#~ "`bpo-26637 `__: The :mod:`importlib` " -#~ "module now emits an :exc:`ImportError` rather than a :exc:`TypeError` if :" -#~ "func:`__import__` is tried during the Python shutdown process but :data:" -#~ "`sys.path` is already cleared (set to ``None``)." -#~ msgstr "" -#~ "`bpo-26637 `__: The :mod:`importlib` " -#~ "module now emits an :exc:`ImportError` rather than a :exc:`TypeError` if :" -#~ "func:`__import__` is tried during the Python shutdown process but :data:" -#~ "`sys.path` is already cleared (set to ``None``)." - -#~ msgid "" -#~ "`bpo-21925 `__: :func:`warnings." -#~ "formatwarning` now catches exceptions when calling :func:`linecache." -#~ "getline` and :func:`tracemalloc.get_object_traceback` to be able to log :" -#~ "exc:`ResourceWarning` emitted late during the Python shutdown process." -#~ msgstr "" -#~ "`bpo-21925 `__: :func:`warnings." -#~ "formatwarning` now catches exceptions when calling :func:`linecache." -#~ "getline` and :func:`tracemalloc.get_object_traceback` to be able to log :" -#~ "exc:`ResourceWarning` emitted late during the Python shutdown process." - -#~ msgid "" -#~ "`bpo-23848 `__: On Windows, " -#~ "faulthandler.enable() now also installs an exception handler to dump the " -#~ "traceback of all Python threads on any Windows exception, not only on " -#~ "UNIX signals (SIGSEGV, SIGFPE, SIGABRT)." -#~ msgstr "" -#~ "`bpo-23848 `__: On Windows, " -#~ "faulthandler.enable() now also installs an exception handler to dump the " -#~ "traceback of all Python threads on any Windows exception, not only on " -#~ "UNIX signals (SIGSEGV, SIGFPE, SIGABRT)." - -#~ msgid "" -#~ "`bpo-26530 `__: Add C functions :c:" -#~ "func:`_PyTraceMalloc_Track` and :c:func:`_PyTraceMalloc_Untrack` to track " -#~ "memory blocks using the :mod:`tracemalloc` module. Add :c:func:" -#~ "`_PyTraceMalloc_GetTraceback` to get the traceback of an object." -#~ msgstr "" -#~ "`bpo-26530 `__: Add C functions :c:" -#~ "func:`_PyTraceMalloc_Track` and :c:func:`_PyTraceMalloc_Untrack` to track " -#~ "memory blocks using the :mod:`tracemalloc` module. Add :c:func:" -#~ "`_PyTraceMalloc_GetTraceback` to get the traceback of an object." - -#~ msgid "" -#~ "`bpo-26588 `__: The _tracemalloc now " -#~ "supports tracing memory allocations of multiple address spaces (domains)." -#~ msgstr "" -#~ "`bpo-26588 `__: The _tracemalloc now " -#~ "supports tracing memory allocations of multiple address spaces (domains)." - -#~ msgid "" -#~ "`bpo-24266 `__: Ctrl+C during " -#~ "Readline history search now cancels the search mode when compiled with " -#~ "Readline 7." -#~ msgstr "" -#~ "`bpo-24266 `__: Ctrl+C during " -#~ "Readline history search now cancels the search mode when compiled with " -#~ "Readline 7." - -#~ msgid "" -#~ "`bpo-26590 `__: Implement a safe " -#~ "finalizer for the _socket.socket type. It now releases the GIL to close " -#~ "the socket." -#~ msgstr "" -#~ "`bpo-26590 `__: Implement a safe " -#~ "finalizer for the _socket.socket type. It now releases the GIL to close " -#~ "the socket." - -#~ msgid "" -#~ "`bpo-18787 `__: spwd.getspnam() now " -#~ "raises a PermissionError if the user doesn't have privileges." -#~ msgstr "" -#~ "`bpo-18787 `__: spwd.getspnam() now " -#~ "raises a PermissionError if the user doesn't have privileges." - -#~ msgid "" -#~ "`bpo-26560 `__: Avoid potential " -#~ "ValueError in BaseHandler.start_response. Initial patch by Peter Inglesby." -#~ msgstr "" -#~ "`bpo-26560 `__: Avoid potential " -#~ "ValueError in BaseHandler.start_response. Initial patch by Peter Inglesby." - -#~ msgid "" -#~ "`bpo-26567 `__: Add a new function :c:" -#~ "func:`PyErr_ResourceWarning` function to pass the destroyed object. Add a " -#~ "*source* attribute to :class:`warnings.WarningMessage`. Add warnings." -#~ "_showwarnmsg() which uses tracemalloc to get the traceback where source " -#~ "object was allocated." -#~ msgstr "" -#~ "`bpo-26567 `__: Add a new function :c:" -#~ "func:`PyErr_ResourceWarning` function to pass the destroyed object. Add a " -#~ "*source* attribute to :class:`warnings.WarningMessage`. Add warnings." -#~ "_showwarnmsg() which uses tracemalloc to get the traceback where source " -#~ "object was allocated." - -#~ msgid "" -#~ "[Security] `bpo-26313 `__: ssl.py " -#~ "_load_windows_store_certs fails if windows cert store is empty. Patch by " -#~ "Baji." -#~ msgstr "" -#~ "[Security] `bpo-26313 `__: ssl.py " -#~ "_load_windows_store_certs fails if windows cert store is empty. Patch by " -#~ "Baji." - -#~ msgid "" -#~ "`bpo-26569 `__: Fix :func:`pyclbr." -#~ "readmodule` and :func:`pyclbr.readmodule_ex` to support importing " -#~ "packages." -#~ msgstr "" -#~ "`bpo-26569 `__: Fix :func:`pyclbr." -#~ "readmodule` and :func:`pyclbr.readmodule_ex` to support importing " -#~ "packages." - -#~ msgid "" -#~ "`bpo-26499 `__: Account for remaining " -#~ "Content-Length in HTTPResponse.readline() and read1(). Based on patch by " -#~ "Silent Ghost. Also document that HTTPResponse now supports these methods." -#~ msgstr "" -#~ "`bpo-26499 `__: Account for remaining " -#~ "Content-Length in HTTPResponse.readline() and read1(). Based on patch by " -#~ "Silent Ghost. Also document that HTTPResponse now supports these methods." - -#~ msgid "" -#~ "`bpo-25320 `__: Handle sockets in " -#~ "directories unittest discovery is scanning. Patch from Victor van den " -#~ "Elzen." -#~ msgstr "" -#~ "`bpo-25320 `__: Handle sockets in " -#~ "directories unittest discovery is scanning. Patch from Victor van den " -#~ "Elzen." - -#~ msgid "" -#~ "`bpo-16181 `__: cookiejar.http2time() " -#~ "now returns None if year is higher than datetime.MAXYEAR." -#~ msgstr "" -#~ "`bpo-16181 `__: cookiejar.http2time() " -#~ "now returns None if year is higher than datetime.MAXYEAR." - -#~ msgid "" -#~ "`bpo-26513 `__: Fixes platform module " -#~ "detection of Windows Server" -#~ msgstr "" -#~ "`bpo-26513 `__: Fixes platform module " -#~ "detection of Windows Server" - -#~ msgid "" -#~ "`bpo-23718 `__: Fixed parsing time in " -#~ "week 0 before Jan 1. Original patch by Tamás Bence Gedai." -#~ msgstr "" -#~ "`bpo-23718 `__: Fixed parsing time in " -#~ "week 0 before Jan 1. Original patch by Tamás Bence Gedai." - -#~ msgid "" -#~ "`bpo-26323 `__: Add Mock." -#~ "assert_called() and Mock.assert_called_once() methods to unittest.mock. " -#~ "Patch written by Amit Saha." -#~ msgstr "" -#~ "`bpo-26323 `__: Add Mock." -#~ "assert_called() and Mock.assert_called_once() methods to unittest.mock. " -#~ "Patch written by Amit Saha." - -#~ msgid "" -#~ "`bpo-20589 `__: Invoking Path.owner() " -#~ "and Path.group() on Windows now raise NotImplementedError instead of " -#~ "ImportError." -#~ msgstr "" -#~ "`bpo-20589 `__: Invoking Path.owner() " -#~ "and Path.group() on Windows now raise NotImplementedError instead of " -#~ "ImportError." - -#~ msgid "" -#~ "`bpo-26177 `__: Fixed the keys() " -#~ "method for Canvas and Scrollbar widgets." -#~ msgstr "" -#~ "`bpo-26177 `__: Fixed the keys() " -#~ "method for Canvas and Scrollbar widgets." - -#~ msgid "" -#~ "`bpo-15068 `__: Got rid of excessive " -#~ "buffering in fileinput. The bufsize parameter is now deprecated and " -#~ "ignored." -#~ msgstr "" -#~ "`bpo-15068 `__: Got rid of excessive " -#~ "buffering in fileinput. The bufsize parameter is now deprecated and " -#~ "ignored." - -#~ msgid "" -#~ "`bpo-19475 `__: Added an optional " -#~ "argument timespec to the datetime isoformat() method to choose the " -#~ "precision of the time component." -#~ msgstr "" -#~ "`bpo-19475 `__: Added an optional " -#~ "argument timespec to the datetime isoformat() method to choose the " -#~ "precision of the time component." - -#~ msgid "" -#~ "`bpo-2202 `__: Fix UnboundLocalError " -#~ "in AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by " -#~ "Mathieu Dupuy." -#~ msgstr "" -#~ "`bpo-2202 `__: Fix UnboundLocalError " -#~ "in AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by " -#~ "Mathieu Dupuy." - -#~ msgid "" -#~ "`bpo-26167 `__: Minimized overhead in " -#~ "copy.copy() and copy.deepcopy(). Optimized copying and deepcopying " -#~ "bytearrays, NotImplemented, slices, short lists, tuples, dicts, sets." -#~ msgstr "" -#~ "`bpo-26167 `__: Minimized overhead in " -#~ "copy.copy() and copy.deepcopy(). Optimized copying and deepcopying " -#~ "bytearrays, NotImplemented, slices, short lists, tuples, dicts, sets." - -#~ msgid "" -#~ "`bpo-25718 `__: Fixed pickling and " -#~ "copying the accumulate() iterator with total is None." -#~ msgstr "" -#~ "`bpo-25718 `__: Fixed pickling and " -#~ "copying the accumulate() iterator with total is None." - -#~ msgid "" -#~ "`bpo-26475 `__: Fixed debugging " -#~ "output for regular expressions with the (?x) flag." -#~ msgstr "" -#~ "`bpo-26475 `__: Fixed debugging " -#~ "output for regular expressions with the (?x) flag." - -#~ msgid "" -#~ "`bpo-26482 `__: Allowed pickling " -#~ "recursive dequeues." -#~ msgstr "" -#~ "`bpo-26482 `__: Allowed pickling " -#~ "recursive dequeues." - -#~ msgid "" -#~ "`bpo-26335 `__: Make mmap.write() " -#~ "return the number of bytes written like other write methods. Patch by " -#~ "Jakub Stasiak." -#~ msgstr "" -#~ "`bpo-26335 `__: Make mmap.write() " -#~ "return the number of bytes written like other write methods. Patch by " -#~ "Jakub Stasiak." - -#~ msgid "" -#~ "`bpo-26457 `__: Fixed the subnets() " -#~ "methods in IP network classes for the case when resulting prefix length " -#~ "is equal to maximal prefix length. Based on patch by Xiang Zhang." -#~ msgstr "" -#~ "`bpo-26457 `__: Fixed the subnets() " -#~ "methods in IP network classes for the case when resulting prefix length " -#~ "is equal to maximal prefix length. Based on patch by Xiang Zhang." - -#~ msgid "" -#~ "`bpo-26385 `__: Remove the file if " -#~ "the internal open() call in NamedTemporaryFile() fails. Patch by Silent " -#~ "Ghost." -#~ msgstr "" -#~ "`bpo-26385 `__: Remove the file if " -#~ "the internal open() call in NamedTemporaryFile() fails. Patch by Silent " -#~ "Ghost." - -#~ msgid "" -#~ "`bpo-26402 `__: Fix XML-RPC client to " -#~ "retry when the server shuts down a persistent connection. This was a " -#~ "regression related to the new http.client.RemoteDisconnected exception in " -#~ "3.5.0a4." -#~ msgstr "" -#~ "`bpo-26402 `__: Fix XML-RPC client to " -#~ "retry when the server shuts down a persistent connection. This was a " -#~ "regression related to the new http.client.RemoteDisconnected exception in " -#~ "3.5.0a4." - -#~ msgid "" -#~ "`bpo-25913 `__: Leading ``<~`` is " -#~ "optional now in base64.a85decode() with adobe=True. Patch by Swati " -#~ "Jaiswal." -#~ msgstr "" -#~ "`bpo-25913 `__: Leading ``<~`` is " -#~ "optional now in base64.a85decode() with adobe=True. Patch by Swati " -#~ "Jaiswal." - -#~ msgid "" -#~ "`bpo-26186 `__: Remove an invalid " -#~ "type check in importlib.util.LazyLoader." -#~ msgstr "" -#~ "`bpo-26186 `__: Remove an invalid " -#~ "type check in importlib.util.LazyLoader." - -#~ msgid "" -#~ "`bpo-26367 `__: importlib." -#~ "__import__() raises ImportError like builtins.__import__() when ``level`` " -#~ "is specified but without an accompanying package specified." -#~ msgstr "" -#~ "`bpo-26367 `__: importlib." -#~ "__import__() raises ImportError like builtins.__import__() when ``level`` " -#~ "is specified but without an accompanying package specified." - -#~ msgid "" -#~ "`bpo-26309 `__: In the \"socketserver" -#~ "\" module, shut down the request (closing the connected socket) when " -#~ "verify_request() returns false. Patch by Aviv Palivoda." -#~ msgstr "" -#~ "`bpo-26309 `__: In the \"socketserver" -#~ "\" module, shut down the request (closing the connected socket) when " -#~ "verify_request() returns false. Patch by Aviv Palivoda." - -#~ msgid "" -#~ "`bpo-23430 `__: Change the " -#~ "socketserver module to only catch exceptions raised from a request " -#~ "handler that are derived from Exception (instead of BaseException). " -#~ "Therefore SystemExit and KeyboardInterrupt no longer trigger the " -#~ "handle_error() method, and will now to stop a single-threaded server." -#~ msgstr "" -#~ "`bpo-23430 `__: Change the " -#~ "socketserver module to only catch exceptions raised from a request " -#~ "handler that are derived from Exception (instead of BaseException). " -#~ "Therefore SystemExit and KeyboardInterrupt no longer trigger the " -#~ "handle_error() method, and will now to stop a single-threaded server." - -#~ msgid "" -#~ "[Security] `bpo-25939 `__: On Windows " -#~ "open the cert store readonly in ssl.enum_certificates." -#~ msgstr "" -#~ "[Security] `bpo-25939 `__: On Windows " -#~ "open the cert store readonly in ssl.enum_certificates." - -#~ msgid "" -#~ "`bpo-25995 `__: os.walk() no longer " -#~ "uses FDs proportional to the tree depth." -#~ msgstr "" -#~ "`bpo-25995 `__: os.walk() no longer " -#~ "uses FDs proportional to the tree depth." - -#~ msgid "" -#~ "`bpo-25994 `__: Added the close() " -#~ "method and the support of the context manager protocol for the os." -#~ "scandir() iterator." -#~ msgstr "" -#~ "`bpo-25994 `__: Added the close() " -#~ "method and the support of the context manager protocol for the os." -#~ "scandir() iterator." - -#~ msgid "" -#~ "`bpo-23992 `__: multiprocessing: make " -#~ "MapResult not fail-fast upon exception." -#~ msgstr "" -#~ "`bpo-23992 `__: multiprocessing: make " -#~ "MapResult not fail-fast upon exception." - -#~ msgid "" -#~ "`bpo-26243 `__: Support keyword " -#~ "arguments to zlib.compress(). Patch by Aviv Palivoda." -#~ msgstr "" -#~ "`bpo-26243 `__: Support keyword " -#~ "arguments to zlib.compress(). Patch by Aviv Palivoda." - -#~ msgid "" -#~ "`bpo-26117 `__: The os.scandir() " -#~ "iterator now closes file descriptor not only when the iteration is " -#~ "finished, but when it was failed with error." -#~ msgstr "" -#~ "`bpo-26117 `__: The os.scandir() " -#~ "iterator now closes file descriptor not only when the iteration is " -#~ "finished, but when it was failed with error." - -#~ msgid "" -#~ "`bpo-25949 `__: __dict__ for an " -#~ "OrderedDict instance is now created only when needed." -#~ msgstr "" -#~ "`bpo-25949 `__: __dict__ for an " -#~ "OrderedDict instance is now created only when needed." - -#~ msgid "" -#~ "`bpo-25911 `__: Restored support of " -#~ "bytes paths in os.walk() on Windows." -#~ msgstr "" -#~ "`bpo-25911 `__: Restored support of " -#~ "bytes paths in os.walk() on Windows." - -#~ msgid "" -#~ "`bpo-26045 `__: Add UTF-8 suggestion " -#~ "to error message when posting a non-Latin-1 string with http.client." -#~ msgstr "" -#~ "`bpo-26045 `__: Add UTF-8 suggestion " -#~ "to error message when posting a non-Latin-1 string with http.client." - -#~ msgid "" -#~ "`bpo-26039 `__: Added zipfile.ZipInfo." -#~ "from_file() and zipinfo.ZipInfo.is_dir(). Patch by Thomas Kluyver." -#~ msgstr "" -#~ "`bpo-26039 `__: Added zipfile.ZipInfo." -#~ "from_file() and zipinfo.ZipInfo.is_dir(). Patch by Thomas Kluyver." - -#~ msgid "" -#~ "`bpo-12923 `__: Reset " -#~ "FancyURLopener's redirect counter even if there is an exception. Based " -#~ "on patches by Brian Brazil and Daniel Rocco." -#~ msgstr "" -#~ "`bpo-12923 `__: Reset " -#~ "FancyURLopener's redirect counter even if there is an exception. Based " -#~ "on patches by Brian Brazil and Daniel Rocco." - -#~ msgid "" -#~ "`bpo-25945 `__: Fixed a crash when " -#~ "unpickle the functools.partial object with wrong state. Fixed a leak in " -#~ "failed functools.partial constructor. \"args\" and \"keywords\" " -#~ "attributes of functools.partial have now always types tuple and dict " -#~ "correspondingly." -#~ msgstr "" -#~ "`bpo-25945 `__: Fixed a crash when " -#~ "unpickle the functools.partial object with wrong state. Fixed a leak in " -#~ "failed functools.partial constructor. \"args\" and \"keywords\" " -#~ "attributes of functools.partial have now always types tuple and dict " -#~ "correspondingly." - -#~ msgid "" -#~ "`bpo-26202 `__: copy.deepcopy() now " -#~ "correctly copies range() objects with non-atomic attributes." -#~ msgstr "" -#~ "`bpo-26202 `__: copy.deepcopy() now " -#~ "correctly copies range() objects with non-atomic attributes." - -#~ msgid "" -#~ "`bpo-23076 `__: Path.glob() now " -#~ "raises a ValueError if it's called with an invalid pattern. Patch by " -#~ "Thomas Nyberg." -#~ msgstr "" -#~ "`bpo-23076 `__: Path.glob() now " -#~ "raises a ValueError if it's called with an invalid pattern. Patch by " -#~ "Thomas Nyberg." - -#~ msgid "" -#~ "`bpo-19883 `__: Fixed possible " -#~ "integer overflows in zipimport." -#~ msgstr "" -#~ "`bpo-19883 `__: Fixed possible " -#~ "integer overflows in zipimport." - -#~ msgid "" -#~ "`bpo-26227 `__: On Windows, " -#~ "getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the " -#~ "socket module now decode the hostname from the ANSI code page rather than " -#~ "UTF-8." -#~ msgstr "" -#~ "`bpo-26227 `__: On Windows, " -#~ "getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the " -#~ "socket module now decode the hostname from the ANSI code page rather than " -#~ "UTF-8." - -#~ msgid "" -#~ "`bpo-26099 `__: The site module now " -#~ "writes an error into stderr if sitecustomize module can be imported but " -#~ "executing the module raise an ImportError. Same change for usercustomize." -#~ msgstr "" -#~ "`bpo-26099 `__: The site module now " -#~ "writes an error into stderr if sitecustomize module can be imported but " -#~ "executing the module raise an ImportError. Same change for usercustomize." - -#~ msgid "" -#~ "`bpo-26147 `__: xmlrpc now works with " -#~ "strings not encodable with used non-UTF-8 encoding." -#~ msgstr "" -#~ "`bpo-26147 `__: xmlrpc now works with " -#~ "strings not encodable with used non-UTF-8 encoding." - -#~ msgid "" -#~ "`bpo-25935 `__: Garbage collector now " -#~ "breaks reference loops with OrderedDict." -#~ msgstr "" -#~ "`bpo-25935 `__: Garbage collector now " -#~ "breaks reference loops with OrderedDict." - -#~ msgid "" -#~ "`bpo-16620 `__: Fixed AttributeError " -#~ "in msilib.Directory.glob()." -#~ msgstr "" -#~ "`bpo-16620 `__: Fixed AttributeError " -#~ "in msilib.Directory.glob()." - -#~ msgid "" -#~ "`bpo-26013 `__: Added compatibility " -#~ "with broken protocol 2 pickles created in old Python 3 versions (3.4.3 " -#~ "and lower)." -#~ msgstr "" -#~ "`bpo-26013 `__: Added compatibility " -#~ "with broken protocol 2 pickles created in old Python 3 versions (3.4.3 " -#~ "and lower)." - -#~ msgid "" -#~ "`bpo-26129 `__: Deprecated accepting " -#~ "non-integers in grp.getgrgid()." -#~ msgstr "" -#~ "`bpo-26129 `__: Deprecated accepting " -#~ "non-integers in grp.getgrgid()." - -#~ msgid "" -#~ "`bpo-25850 `__: Use cross-compilation " -#~ "by default for 64-bit Windows." -#~ msgstr "" -#~ "`bpo-25850 `__: Use cross-compilation " -#~ "by default for 64-bit Windows." - -#~ msgid "" -#~ "`bpo-25822 `__: Add docstrings to the " -#~ "fields of urllib.parse results. Patch contributed by Swati Jaiswal." -#~ msgstr "" -#~ "`bpo-25822 `__: Add docstrings to the " -#~ "fields of urllib.parse results. Patch contributed by Swati Jaiswal." - -#~ msgid "" -#~ "`bpo-22642 `__: Convert trace module " -#~ "option parsing mechanism to argparse. Patch contributed by SilentGhost." -#~ msgstr "" -#~ "`bpo-22642 `__: Convert trace module " -#~ "option parsing mechanism to argparse. Patch contributed by SilentGhost." - -#~ msgid "" -#~ "`bpo-24705 `__: Fix sysconfig." -#~ "_parse_makefile not expanding ${} vars appearing before $() vars." -#~ msgstr "" -#~ "`bpo-24705 `__: Fix sysconfig." -#~ "_parse_makefile not expanding ${} vars appearing before $() vars." - -#~ msgid "" -#~ "`bpo-26069 `__: Remove the deprecated " -#~ "apis in the trace module." -#~ msgstr "" -#~ "`bpo-26069 `__: Remove the deprecated " -#~ "apis in the trace module." - -#~ msgid "" -#~ "`bpo-22138 `__: Fix mock.patch " -#~ "behavior when patching descriptors. Restore original values after " -#~ "patching. Patch contributed by Sean McCully." -#~ msgstr "" -#~ "`bpo-22138 `__: Fix mock.patch " -#~ "behavior when patching descriptors. Restore original values after " -#~ "patching. Patch contributed by Sean McCully." - -#~ msgid "" -#~ "`bpo-25672 `__: In the ssl module, " -#~ "enable the SSL_MODE_RELEASE_BUFFERS mode option if it is safe to do so." -#~ msgstr "" -#~ "`bpo-25672 `__: In the ssl module, " -#~ "enable the SSL_MODE_RELEASE_BUFFERS mode option if it is safe to do so." - -#~ msgid "" -#~ "`bpo-26012 `__: Don't traverse into " -#~ "symlinks for ``**`` pattern in pathlib.Path.[r]glob()." -#~ msgstr "" -#~ "`bpo-26012 `__: Don't traverse into " -#~ "symlinks for ``**`` pattern in pathlib.Path.[r]glob()." - -#~ msgid "" -#~ "`bpo-24120 `__: Ignore " -#~ "PermissionError when traversing a tree with pathlib.Path.[r]glob(). " -#~ "Patch by Ulrich Petri." -#~ msgstr "" -#~ "`bpo-24120 `__: Ignore " -#~ "PermissionError when traversing a tree with pathlib.Path.[r]glob(). " -#~ "Patch by Ulrich Petri." - -#~ msgid "" -#~ "`bpo-21815 `__: Accept ] characters " -#~ "in the data portion of imap responses, in order to handle the flags with " -#~ "square brackets accepted and produced by servers such as gmail." -#~ msgstr "" -#~ "`bpo-21815 `__: Accept ] characters " -#~ "in the data portion of imap responses, in order to handle the flags with " -#~ "square brackets accepted and produced by servers such as gmail." - -#~ msgid "" -#~ "`bpo-25447 `__: fileinput now uses " -#~ "sys.stdin as-is if it does not have a buffer attribute (restores backward " -#~ "compatibility)." -#~ msgstr "" -#~ "`bpo-25447 `__: fileinput now uses " -#~ "sys.stdin as-is if it does not have a buffer attribute (restores backward " -#~ "compatibility)." - -#~ msgid "" -#~ "`bpo-25971 `__: Optimized creating " -#~ "Fractions from floats by 2 times and from Decimals by 3 times." -#~ msgstr "" -#~ "`bpo-25971 `__: Optimized creating " -#~ "Fractions from floats by 2 times and from Decimals by 3 times." - -#~ msgid "" -#~ "`bpo-25802 `__: Document as " -#~ "deprecated the remaining implementations of importlib.abc.Loader." -#~ "load_module()." -#~ msgstr "" -#~ "`bpo-25802 `__: Document as " -#~ "deprecated the remaining implementations of importlib.abc.Loader." -#~ "load_module()." - -#~ msgid "" -#~ "`bpo-25928 `__: Add Decimal." -#~ "as_integer_ratio()." -#~ msgstr "" -#~ "`bpo-25928 `__: Add Decimal." -#~ "as_integer_ratio()." - -#~ msgid "" -#~ "`bpo-25447 `__: Copying the " -#~ "lru_cache() wrapper object now always works, independently from the type " -#~ "of the wrapped object (by returning the original object unchanged)." -#~ msgstr "" -#~ "`bpo-25447 `__: Copying the " -#~ "lru_cache() wrapper object now always works, independently from the type " -#~ "of the wrapped object (by returning the original object unchanged)." - -#~ msgid "" -#~ "`bpo-25768 `__: Have the functions in " -#~ "compileall return booleans instead of ints and add proper documentation " -#~ "and tests for the return values." -#~ msgstr "" -#~ "`bpo-25768 `__: Have the functions in " -#~ "compileall return booleans instead of ints and add proper documentation " -#~ "and tests for the return values." - -#~ msgid "" -#~ "`bpo-24103 `__: Fixed possible use " -#~ "after free in ElementTree.XMLPullParser." -#~ msgstr "" -#~ "`bpo-24103 `__: Fixed possible use " -#~ "after free in ElementTree.XMLPullParser." - -#~ msgid "" -#~ "`bpo-25860 `__: os.fwalk() no longer " -#~ "skips remaining directories when error occurs. Original patch by Samson " -#~ "Lee." -#~ msgstr "" -#~ "`bpo-25860 `__: os.fwalk() no longer " -#~ "skips remaining directories when error occurs. Original patch by Samson " -#~ "Lee." - -#~ msgid "" -#~ "`bpo-25914 `__: Fixed and simplified " -#~ "OrderedDict.__sizeof__." -#~ msgstr "" -#~ "`bpo-25914 `__: Fixed and simplified " -#~ "OrderedDict.__sizeof__." - -#~ msgid "" -#~ "`bpo-25869 `__: Optimized deepcopying " -#~ "ElementTree; it is now 20 times faster." -#~ msgstr "" -#~ "`bpo-25869 `__: Optimized deepcopying " -#~ "ElementTree; it is now 20 times faster." - -#~ msgid "" -#~ "`bpo-25873 `__: Optimized iterating " -#~ "ElementTree. Iterating elements Element.iter() is now 40% faster, " -#~ "iterating text Element.itertext() is now up to 2.5 times faster." -#~ msgstr "" -#~ "`bpo-25873 `__: Optimized iterating " -#~ "ElementTree. Iterating elements Element.iter() is now 40% faster, " -#~ "iterating text Element.itertext() is now up to 2.5 times faster." - -#~ msgid "" -#~ "`bpo-25902 `__: Fixed various " -#~ "refcount issues in ElementTree iteration." -#~ msgstr "" -#~ "`bpo-25902 `__: Fixed various " -#~ "refcount issues in ElementTree iteration." - -#~ msgid "" -#~ "`bpo-22227 `__: The TarFile iterator " -#~ "is reimplemented using generator. This implementation is simpler that " -#~ "using class." -#~ msgstr "" -#~ "`bpo-22227 `__: The TarFile iterator " -#~ "is reimplemented using generator. This implementation is simpler that " -#~ "using class." - -#~ msgid "" -#~ "`bpo-25638 `__: Optimized ElementTree." -#~ "iterparse(); it is now 2x faster. Optimized ElementTree parsing; it is " -#~ "now 10% faster." -#~ msgstr "" -#~ "`bpo-25638 `__: Optimized ElementTree." -#~ "iterparse(); it is now 2x faster. Optimized ElementTree parsing; it is " -#~ "now 10% faster." - -#~ msgid "" -#~ "`bpo-25761 `__: Improved detecting " -#~ "errors in broken pickle data." -#~ msgstr "" -#~ "`bpo-25761 `__: Improved detecting " -#~ "errors in broken pickle data." - -#~ msgid "" -#~ "`bpo-25717 `__: Restore the previous " -#~ "behaviour of tolerating most fstat() errors when opening files. This was " -#~ "a regression in 3.5a1, and stopped anonymous temporary files from working " -#~ "in special cases." -#~ msgstr "" -#~ "`bpo-25717 `__: Restore the previous " -#~ "behaviour of tolerating most fstat() errors when opening files. This was " -#~ "a regression in 3.5a1, and stopped anonymous temporary files from working " -#~ "in special cases." - -#~ msgid "" -#~ "`bpo-24903 `__: Fix regression in " -#~ "number of arguments compileall accepts when '-d' is specified. The check " -#~ "on the number of arguments has been dropped completely as it never worked " -#~ "correctly anyway." -#~ msgstr "" -#~ "`bpo-24903 `__: Fix regression in " -#~ "number of arguments compileall accepts when '-d' is specified. The check " -#~ "on the number of arguments has been dropped completely as it never worked " -#~ "correctly anyway." - -#~ msgid "" -#~ "`bpo-25764 `__: In the subprocess " -#~ "module, preserve any exception caused by fork() failure when preexec_fn " -#~ "is used." -#~ msgstr "" -#~ "`bpo-25764 `__: In the subprocess " -#~ "module, preserve any exception caused by fork() failure when preexec_fn " -#~ "is used." - -#~ msgid "" -#~ "`bpo-25771 `__: Tweak the exception " -#~ "message for importlib.util.resolve_name() when 'package' isn't specified " -#~ "but necessary." -#~ msgstr "" -#~ "`bpo-25771 `__: Tweak the exception " -#~ "message for importlib.util.resolve_name() when 'package' isn't specified " -#~ "but necessary." - -#~ msgid "" -#~ "`bpo-6478 `__: _strptime's regexp " -#~ "cache now is reset after changing timezone with time.tzset()." -#~ msgstr "" -#~ "`bpo-6478 `__: _strptime's regexp " -#~ "cache now is reset after changing timezone with time.tzset()." - -#~ msgid "" -#~ "`bpo-14285 `__: When executing a " -#~ "package with the \"python -m package\" option, and package initialization " -#~ "fails, a proper traceback is now reported. The \"runpy\" module now lets " -#~ "exceptions from package initialization pass back to the caller, rather " -#~ "than raising ImportError." -#~ msgstr "" -#~ "`bpo-14285 `__: When executing a " -#~ "package with the \"python -m package\" option, and package initialization " -#~ "fails, a proper traceback is now reported. The \"runpy\" module now lets " -#~ "exceptions from package initialization pass back to the caller, rather " -#~ "than raising ImportError." - -#~ msgid "" -#~ "`bpo-19771 `__: Also in runpy and the " -#~ "\"-m\" option, omit the irrelevant message \". . . is a package and " -#~ "cannot be directly executed\" if the package could not even be " -#~ "initialized (e.g. due to a bad ``*.pyc`` file)." -#~ msgstr "" -#~ "`bpo-19771 `__: Also in runpy and the " -#~ "\"-m\" option, omit the irrelevant message \". . . is a package and " -#~ "cannot be directly executed\" if the package could not even be " -#~ "initialized (e.g. due to a bad ``*.pyc`` file)." - -#~ msgid "" -#~ "`bpo-25177 `__: Fixed problem with " -#~ "the mean of very small and very large numbers. As a side effect, " -#~ "statistics.mean and statistics.variance should be significantly faster." -#~ msgstr "" -#~ "`bpo-25177 `__: Fixed problem with " -#~ "the mean of very small and very large numbers. As a side effect, " -#~ "statistics.mean and statistics.variance should be significantly faster." - -#~ msgid "" -#~ "`bpo-25718 `__: Fixed copying object " -#~ "with state with boolean value is false." -#~ msgstr "" -#~ "`bpo-25718 `__: Fixed copying object " -#~ "with state with boolean value is false." - -#~ msgid "" -#~ "`bpo-10131 `__: Fixed deep copying of " -#~ "minidom documents. Based on patch by Marian Ganisin." -#~ msgstr "" -#~ "`bpo-10131 `__: Fixed deep copying of " -#~ "minidom documents. Based on patch by Marian Ganisin." - -#~ msgid "" -#~ "`bpo-7990 `__: dir() on ElementTree." -#~ "Element now lists properties: \"tag\", \"text\", \"tail\" and \"attrib" -#~ "\". Original patch by Santoso Wijaya." -#~ msgstr "" -#~ "`bpo-7990 `__: dir() on ElementTree." -#~ "Element now lists properties: \"tag\", \"text\", \"tail\" and \"attrib" -#~ "\". Original patch by Santoso Wijaya." - -#~ msgid "" -#~ "`bpo-25725 `__: Fixed a reference " -#~ "leak in pickle.loads() when unpickling invalid data including tuple " -#~ "instructions." -#~ msgstr "" -#~ "`bpo-25725 `__: Fixed a reference " -#~ "leak in pickle.loads() when unpickling invalid data including tuple " -#~ "instructions." - -#~ msgid "" -#~ "`bpo-25663 `__: In the Readline " -#~ "completer, avoid listing duplicate global names, and search the global " -#~ "namespace before searching builtins." -#~ msgstr "" -#~ "`bpo-25663 `__: In the Readline " -#~ "completer, avoid listing duplicate global names, and search the global " -#~ "namespace before searching builtins." - -#~ msgid "" -#~ "`bpo-25688 `__: Fixed file leak in " -#~ "ElementTree.iterparse() raising an error." -#~ msgstr "" -#~ "`bpo-25688 `__: Fixed file leak in " -#~ "ElementTree.iterparse() raising an error." - -#~ msgid "" -#~ "`bpo-23914 `__: Fixed SystemError " -#~ "raised by unpickler on broken pickle data." -#~ msgstr "" -#~ "`bpo-23914 `__: Fixed SystemError " -#~ "raised by unpickler on broken pickle data." - -#~ msgid "" -#~ "`bpo-25691 `__: Fixed crash on " -#~ "deleting ElementTree.Element attributes." -#~ msgstr "" -#~ "`bpo-25691 `__: Fixed crash on " -#~ "deleting ElementTree.Element attributes." - -#~ msgid "" -#~ "`bpo-25624 `__: ZipFile now always " -#~ "writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang." -#~ msgstr "" -#~ "`bpo-25624 `__: ZipFile now always " -#~ "writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang." - -#~ msgid "" -#~ "`bpo-25626 `__: Change three zlib " -#~ "functions to accept sizes that fit in Py_ssize_t, but internally cap " -#~ "those sizes to UINT_MAX. This resolves a regression in 3.5 where " -#~ "GzipFile.read() failed to read chunks larger than 2 or 4 GiB. The change " -#~ "affects the zlib.Decompress.decompress() max_length parameter, the zlib." -#~ "decompress() bufsize parameter, and the zlib.Decompress.flush() length " -#~ "parameter." -#~ msgstr "" -#~ "`bpo-25626 `__: Change three zlib " -#~ "functions to accept sizes that fit in Py_ssize_t, but internally cap " -#~ "those sizes to UINT_MAX. This resolves a regression in 3.5 where " -#~ "GzipFile.read() failed to read chunks larger than 2 or 4 GiB. The change " -#~ "affects the zlib.Decompress.decompress() max_length parameter, the zlib." -#~ "decompress() bufsize parameter, and the zlib.Decompress.flush() length " -#~ "parameter." - -#~ msgid "" -#~ "`bpo-25583 `__: Avoid incorrect " -#~ "errors raised by os.makedirs(exist_ok=True) when the OS gives priority to " -#~ "errors such as EACCES over EEXIST." -#~ msgstr "" -#~ "`bpo-25583 `__: Avoid incorrect " -#~ "errors raised by os.makedirs(exist_ok=True) when the OS gives priority to " -#~ "errors such as EACCES over EEXIST." - -#~ msgid "" -#~ "`bpo-25593 `__: Change semantics of " -#~ "EventLoop.stop() in asyncio." -#~ msgstr "" -#~ "`bpo-25593 `__: Change semantics of " -#~ "EventLoop.stop() in asyncio." - -#~ msgid "" -#~ "`bpo-6973 `__: When we know a " -#~ "subprocess.Popen process has died, do not allow the send_signal(), " -#~ "terminate(), or kill() methods to do anything as they could potentially " -#~ "signal a different process." -#~ msgstr "" -#~ "`bpo-6973 `__: When we know a " -#~ "subprocess.Popen process has died, do not allow the send_signal(), " -#~ "terminate(), or kill() methods to do anything as they could potentially " -#~ "signal a different process." - -#~ msgid "" -#~ "`bpo-23883 `__: Added missing APIs to " -#~ "__all__ to match the documented APIs for the following modules: calendar, " -#~ "csv, enum, fileinput, ftplib, logging, optparse, tarfile, threading and " -#~ "wave. Also added a test.support.check__all__() helper. Patches by Jacek " -#~ "Kołodziej, Mauro S. M. Rodrigues and Joel Taddei." -#~ msgstr "" -#~ "`bpo-23883 `__: Added missing APIs to " -#~ "__all__ to match the documented APIs for the following modules: calendar, " -#~ "csv, enum, fileinput, ftplib, logging, optparse, tarfile, threading and " -#~ "wave. Also added a test.support.check__all__() helper. Patches by Jacek " -#~ "Kołodziej, Mauro S. M. Rodrigues and Joel Taddei." - -#~ msgid "" -#~ "`bpo-25590 `__: In the Readline " -#~ "completer, only call getattr() once per attribute. Also complete names " -#~ "of attributes such as properties and slots which are listed by dir() but " -#~ "not yet created on an instance." -#~ msgstr "" -#~ "`bpo-25590 `__: In the Readline " -#~ "completer, only call getattr() once per attribute. Also complete names " -#~ "of attributes such as properties and slots which are listed by dir() but " -#~ "not yet created on an instance." - -#~ msgid "" -#~ "`bpo-25498 `__: Fix a crash when " -#~ "garbage-collecting ctypes objects created by wrapping a memoryview. This " -#~ "was a regression made in 3.5a1. Based on patch by Eryksun." -#~ msgstr "" -#~ "`bpo-25498 `__: Fix a crash when " -#~ "garbage-collecting ctypes objects created by wrapping a memoryview. This " -#~ "was a regression made in 3.5a1. Based on patch by Eryksun." - -#~ msgid "" -#~ "`bpo-25584 `__: Added \"escape\" to " -#~ "the __all__ list in the glob module." -#~ msgstr "" -#~ "`bpo-25584 `__: Added \"escape\" to " -#~ "the __all__ list in the glob module." - -#~ msgid "" -#~ "`bpo-25584 `__: Fixed recursive " -#~ "glob() with patterns starting with ``**``." -#~ msgstr "" -#~ "`bpo-25584 `__: Fixed recursive " -#~ "glob() with patterns starting with ``**``." - -#~ msgid "" -#~ "`bpo-25446 `__: Fix regression in " -#~ "smtplib's AUTH LOGIN support." -#~ msgstr "" -#~ "`bpo-25446 `__: Fix regression in " -#~ "smtplib's AUTH LOGIN support." - -#~ msgid "" -#~ "`bpo-18010 `__: Fix the pydoc web " -#~ "server's module search function to handle exceptions from importing " -#~ "packages." -#~ msgstr "" -#~ "`bpo-18010 `__: Fix the pydoc web " -#~ "server's module search function to handle exceptions from importing " -#~ "packages." - -#~ msgid "" -#~ "`bpo-25554 `__: Got rid of circular " -#~ "references in regular expression parsing." -#~ msgstr "" -#~ "`bpo-25554 `__: Got rid of circular " -#~ "references in regular expression parsing." - -#~ msgid "" -#~ "`bpo-18973 `__: Command-line " -#~ "interface of the calendar module now uses argparse instead of optparse." -#~ msgstr "" -#~ "`bpo-18973 `__: Command-line " -#~ "interface of the calendar module now uses argparse instead of optparse." - -#~ msgid "" -#~ "`bpo-25510 `__: fileinput.FileInput." -#~ "readline() now returns b'' instead of '' at the end if the FileInput was " -#~ "opened with binary mode. Patch by Ryosuke Ito." -#~ msgstr "" -#~ "`bpo-25510 `__: fileinput.FileInput." -#~ "readline() now returns b'' instead of '' at the end if the FileInput was " -#~ "opened with binary mode. Patch by Ryosuke Ito." - -#~ msgid "" -#~ "`bpo-25503 `__: Fixed inspect." -#~ "getdoc() for inherited docstrings of properties. Original patch by John " -#~ "Mark Vandenberg." -#~ msgstr "" -#~ "`bpo-25503 `__: Fixed inspect." -#~ "getdoc() for inherited docstrings of properties. Original patch by John " -#~ "Mark Vandenberg." - -#~ msgid "" -#~ "`bpo-25515 `__: Always use os.urandom " -#~ "as a source of randomness in uuid.uuid4." -#~ msgstr "" -#~ "`bpo-25515 `__: Always use os.urandom " -#~ "as a source of randomness in uuid.uuid4." - -#~ msgid "" -#~ "`bpo-21827 `__: Fixed textwrap." -#~ "dedent() for the case when largest common whitespace is a substring of " -#~ "smallest leading whitespace. Based on patch by Robert Li." -#~ msgstr "" -#~ "`bpo-21827 `__: Fixed textwrap." -#~ "dedent() for the case when largest common whitespace is a substring of " -#~ "smallest leading whitespace. Based on patch by Robert Li." - -#~ msgid "" -#~ "`bpo-25447 `__: The lru_cache() " -#~ "wrapper objects now can be copied and pickled (by returning the original " -#~ "object unchanged)." -#~ msgstr "" -#~ "`bpo-25447 `__: The lru_cache() " -#~ "wrapper objects now can be copied and pickled (by returning the original " -#~ "object unchanged)." - -#~ msgid "" -#~ "`bpo-25390 `__: typing: Don't crash " -#~ "on Union[str, Pattern]." -#~ msgstr "" -#~ "`bpo-25390 `__: typing: Don't crash " -#~ "on Union[str, Pattern]." - -#~ msgid "" -#~ "`bpo-25441 `__: asyncio: Raise error " -#~ "from drain() when socket is closed." -#~ msgstr "" -#~ "`bpo-25441 `__: asyncio: Raise error " -#~ "from drain() when socket is closed." - -#~ msgid "" -#~ "`bpo-25410 `__: Cleaned up and fixed " -#~ "minor bugs in C implementation of OrderedDict." -#~ msgstr "" -#~ "`bpo-25410 `__: Cleaned up and fixed " -#~ "minor bugs in C implementation of OrderedDict." - -#~ msgid "" -#~ "`bpo-25411 `__: Improved Unicode " -#~ "support in SMTPHandler through better use of the email package. Thanks to " -#~ "user simon04 for the patch." -#~ msgstr "" -#~ "`bpo-25411 `__: Improved Unicode " -#~ "support in SMTPHandler through better use of the email package. Thanks to " -#~ "user simon04 for the patch." - -#~ msgid "" -#~ "`bpo-25407 `__: Remove mentions of " -#~ "the formatter module being removed in Python 3.6." -#~ msgstr "" -#~ "`bpo-25407 `__: Remove mentions of " -#~ "the formatter module being removed in Python 3.6." - -#~ msgid "" -#~ "`bpo-25406 `__: Fixed a bug in C " -#~ "implementation of OrderedDict.move_to_end() that caused segmentation " -#~ "fault or hang in iterating after moving several items to the start of " -#~ "ordered dict." -#~ msgstr "" -#~ "`bpo-25406 `__: Fixed a bug in C " -#~ "implementation of OrderedDict.move_to_end() that caused segmentation " -#~ "fault or hang in iterating after moving several items to the start of " -#~ "ordered dict." - -#~ msgid "" -#~ "`bpo-25382 `__: pickletools.dis() now " -#~ "outputs implicit memo index for the MEMOIZE opcode." -#~ msgstr "" -#~ "`bpo-25382 `__: pickletools.dis() now " -#~ "outputs implicit memo index for the MEMOIZE opcode." - -#~ msgid "" -#~ "`bpo-25357 `__: Add an optional " -#~ "newline paramer to binascii.b2a_base64(). base64.b64encode() uses it to " -#~ "avoid a memory copy." -#~ msgstr "" -#~ "`bpo-25357 `__: Add an optional " -#~ "newline paramer to binascii.b2a_base64(). base64.b64encode() uses it to " -#~ "avoid a memory copy." - -#~ msgid "" -#~ "`bpo-24164 `__: Objects that need " -#~ "calling ``__new__`` with keyword arguments, can now be pickled using " -#~ "pickle protocols older than protocol version 4." -#~ msgstr "" -#~ "`bpo-24164 `__: Objects that need " -#~ "calling ``__new__`` with keyword arguments, can now be pickled using " -#~ "pickle protocols older than protocol version 4." - -#~ msgid "" -#~ "`bpo-25364 `__: zipfile now works in " -#~ "threads disabled builds." -#~ msgstr "" -#~ "`bpo-25364 `__: zipfile now works in " -#~ "threads disabled builds." - -#~ msgid "" -#~ "`bpo-25328 `__: smtpd's SMTPChannel " -#~ "now correctly raises a ValueError if both decode_data and enable_SMTPUTF8 " -#~ "are set to true." -#~ msgstr "" -#~ "`bpo-25328 `__: smtpd's SMTPChannel " -#~ "now correctly raises a ValueError if both decode_data and enable_SMTPUTF8 " -#~ "are set to true." - -#~ msgid "" -#~ "`bpo-16099 `__: RobotFileParser now " -#~ "supports Crawl-delay and Request-rate extensions. Patch by Nikolay " -#~ "Bogoychev." -#~ msgstr "" -#~ "`bpo-16099 `__: RobotFileParser now " -#~ "supports Crawl-delay and Request-rate extensions. Patch by Nikolay " -#~ "Bogoychev." - -#~ msgid "" -#~ "`bpo-25316 `__: distutils raises " -#~ "OSError instead of DistutilsPlatformError when MSVC is not installed." -#~ msgstr "" -#~ "`bpo-25316 `__: distutils raises " -#~ "OSError instead of DistutilsPlatformError when MSVC is not installed." - -#~ msgid "" -#~ "`bpo-25380 `__: Fixed protocol for " -#~ "the STACK_GLOBAL opcode in pickletools.opcodes." -#~ msgstr "" -#~ "`bpo-25380 `__: Fixed protocol for " -#~ "the STACK_GLOBAL opcode in pickletools.opcodes." - -#~ msgid "" -#~ "`bpo-23972 `__: Updates asyncio " -#~ "datagram create method allowing reuseport and reuseaddr socket options to " -#~ "be set prior to binding the socket. Mirroring the existing asyncio " -#~ "create_server method the reuseaddr option for datagram sockets defaults " -#~ "to True if the O/S is 'posix' (except if the platform is Cygwin). Patch " -#~ "by Chris Laws." -#~ msgstr "" -#~ "`bpo-23972 `__: Updates asyncio " -#~ "datagram create method allowing reuseport and reuseaddr socket options to " -#~ "be set prior to binding the socket. Mirroring the existing asyncio " -#~ "create_server method the reuseaddr option for datagram sockets defaults " -#~ "to True if the O/S is 'posix' (except if the platform is Cygwin). Patch " -#~ "by Chris Laws." - -#~ msgid "" -#~ "`bpo-25304 `__: Add asyncio." -#~ "run_coroutine_threadsafe(). This lets you submit a coroutine to a loop " -#~ "from another thread, returning a concurrent.futures.Future. By Vincent " -#~ "Michel." -#~ msgstr "" -#~ "`bpo-25304 `__: Add asyncio." -#~ "run_coroutine_threadsafe(). This lets you submit a coroutine to a loop " -#~ "from another thread, returning a concurrent.futures.Future. By Vincent " -#~ "Michel." - -#~ msgid "" -#~ "`bpo-25232 `__: Fix CGIRequestHandler " -#~ "to split the query from the URL at the first question mark (?) rather " -#~ "than the last. Patch from Xiang Zhang." -#~ msgstr "" -#~ "`bpo-25232 `__: Fix CGIRequestHandler " -#~ "to split the query from the URL at the first question mark (?) rather " -#~ "than the last. Patch from Xiang Zhang." - -#~ msgid "" -#~ "`bpo-24657 `__: Prevent " -#~ "CGIRequestHandler from collapsing slashes in the query part of the URL as " -#~ "if it were a path. Patch from Xiang Zhang." -#~ msgstr "" -#~ "`bpo-24657 `__: Prevent " -#~ "CGIRequestHandler from collapsing slashes in the query part of the URL as " -#~ "if it were a path. Patch from Xiang Zhang." - -#~ msgid "" -#~ "`bpo-25287 `__: Don't add crypt." -#~ "METHOD_CRYPT to crypt.methods if it's not supported. Check if it is " -#~ "supported, it may not be supported on OpenBSD for example." -#~ msgstr "" -#~ "`bpo-25287 `__: Don't add crypt." -#~ "METHOD_CRYPT to crypt.methods if it's not supported. Check if it is " -#~ "supported, it may not be supported on OpenBSD for example." - -#~ msgid "" -#~ "`bpo-23600 `__: Default " -#~ "implementation of tzinfo.fromutc() was returning wrong results in some " -#~ "cases." -#~ msgstr "" -#~ "`bpo-23600 `__: Default " -#~ "implementation of tzinfo.fromutc() was returning wrong results in some " -#~ "cases." - -#~ msgid "" -#~ "`bpo-25203 `__: Failed readline." -#~ "set_completer_delims() no longer left the module in inconsistent state." -#~ msgstr "" -#~ "`bpo-25203 `__: Failed readline." -#~ "set_completer_delims() no longer left the module in inconsistent state." - -#~ msgid "" -#~ "`bpo-25011 `__: rlcompleter now omits " -#~ "private and special attribute names unless the prefix starts with " -#~ "underscores." -#~ msgstr "" -#~ "`bpo-25011 `__: rlcompleter now omits " -#~ "private and special attribute names unless the prefix starts with " -#~ "underscores." - -#~ msgid "" -#~ "`bpo-25209 `__: rlcompleter now can " -#~ "add a space or a colon after completed keyword." -#~ msgstr "" -#~ "`bpo-25209 `__: rlcompleter now can " -#~ "add a space or a colon after completed keyword." - -#~ msgid "" -#~ "`bpo-22241 `__: timezone.utc name is " -#~ "now plain 'UTC', not 'UTC-00:00'." -#~ msgstr "" -#~ "`bpo-22241 `__: timezone.utc name is " -#~ "now plain 'UTC', not 'UTC-00:00'." - -#~ msgid "" -#~ "`bpo-23517 `__: fromtimestamp() and " -#~ "utcfromtimestamp() methods of datetime.datetime now round microseconds to " -#~ "nearest with ties going to nearest even integer (ROUND_HALF_EVEN), as " -#~ "round(float), instead of rounding towards -Infinity (ROUND_FLOOR)." -#~ msgstr "" -#~ "`bpo-23517 `__: fromtimestamp() and " -#~ "utcfromtimestamp() methods of datetime.datetime now round microseconds to " -#~ "nearest with ties going to nearest even integer (ROUND_HALF_EVEN), as " -#~ "round(float), instead of rounding towards -Infinity (ROUND_FLOOR)." - -#~ msgid "" -#~ "`bpo-23552 `__: Timeit now warns when " -#~ "there is substantial (4x) variance between best and worst times. Patch " -#~ "from Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-23552 `__: Timeit now warns when " -#~ "there is substantial (4x) variance between best and worst times. Patch " -#~ "from Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-24633 `__: site-packages/README -" -#~ "> README.txt." -#~ msgstr "" -#~ "`bpo-24633 `__: site-packages/README -" -#~ "> README.txt." - -#~ msgid "" -#~ "`bpo-24879 `__: help() and pydoc can " -#~ "now list named tuple fields in the order they were defined rather than " -#~ "alphabetically. The ordering is determined by the _fields attribute if " -#~ "present." -#~ msgstr "" -#~ "`bpo-24879 `__: help() and pydoc can " -#~ "now list named tuple fields in the order they were defined rather than " -#~ "alphabetically. The ordering is determined by the _fields attribute if " -#~ "present." - -#~ msgid "" -#~ "`bpo-24874 `__: Improve speed of " -#~ "itertools.cycle() and make its pickle more compact." -#~ msgstr "" -#~ "`bpo-24874 `__: Improve speed of " -#~ "itertools.cycle() and make its pickle more compact." - -#~ msgid "" -#~ "`bpo-20059 `__: urllib.parse raises " -#~ "ValueError on all invalid ports. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-20059 `__: urllib.parse raises " -#~ "ValueError on all invalid ports. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-24360 `__: Improve __repr__ of " -#~ "argparse.Namespace() for invalid identifiers. Patch by Matthias " -#~ "Bussonnier." -#~ msgstr "" -#~ "`bpo-24360 `__: Improve __repr__ of " -#~ "argparse.Namespace() for invalid identifiers. Patch by Matthias " -#~ "Bussonnier." - -#~ msgid "" -#~ "`bpo-23426 `__: run_setup was broken " -#~ "in distutils. Patch from Alexander Belopolsky." -#~ msgstr "" -#~ "`bpo-23426 `__: run_setup was broken " -#~ "in distutils. Patch from Alexander Belopolsky." - -#~ msgid "" -#~ "`bpo-13938 `__: 2to3 converts " -#~ "StringTypes to a tuple. Patch from Mark Hammond." -#~ msgstr "" -#~ "`bpo-13938 `__: 2to3 converts " -#~ "StringTypes to a tuple. Patch from Mark Hammond." - -#~ msgid "" -#~ "`bpo-2091 `__: open() accepted a 'U' " -#~ "mode string containing '+', but 'U' can only be used with 'r'. Patch from " -#~ "Jeff Balogh and John O'Connor." -#~ msgstr "" -#~ "`bpo-2091 `__: open() accepted a 'U' " -#~ "mode string containing '+', but 'U' can only be used with 'r'. Patch from " -#~ "Jeff Balogh and John O'Connor." - -#~ msgid "" -#~ "`bpo-8585 `__: improved tests for " -#~ "zipimporter2. Patch from Mark Lawrence." -#~ msgstr "" -#~ "`bpo-8585 `__: improved tests for " -#~ "zipimporter2. Patch from Mark Lawrence." - -#~ msgid "" -#~ "`bpo-18622 `__: unittest.mock." -#~ "mock_open().reset_mock would recurse infinitely. Patch from Nicola " -#~ "Palumbo and Laurent De Buyst." -#~ msgstr "" -#~ "`bpo-18622 `__: unittest.mock." -#~ "mock_open().reset_mock would recurse infinitely. Patch from Nicola " -#~ "Palumbo and Laurent De Buyst." - -#~ msgid "" -#~ "`bpo-24426 `__: Fast searching " -#~ "optimization in regular expressions now works for patterns that starts " -#~ "with capturing groups. Fast searching optimization now can't be disabled " -#~ "at compile time." -#~ msgstr "" -#~ "`bpo-24426 `__: Fast searching " -#~ "optimization in regular expressions now works for patterns that starts " -#~ "with capturing groups. Fast searching optimization now can't be disabled " -#~ "at compile time." - -#~ msgid "" -#~ "`bpo-23661 `__: unittest.mock " -#~ "side_effects can now be exceptions again. This was a regression vs Python " -#~ "3.4. Patch from Ignacio Rossi" -#~ msgstr "" -#~ "`bpo-23661 `__: unittest.mock " -#~ "side_effects can now be exceptions again. This was a regression vs Python " -#~ "3.4. Patch from Ignacio Rossi" - -#~ msgid "" -#~ "`bpo-13248 `__: Remove deprecated " -#~ "inspect.getmoduleinfo function." -#~ msgstr "" -#~ "`bpo-13248 `__: Remove deprecated " -#~ "inspect.getmoduleinfo function." - -#~ msgid "" -#~ "`bpo-25578 `__: Fix (another) memory " -#~ "leak in SSLSocket.getpeercer()." -#~ msgstr "" -#~ "`bpo-25578 `__: Fix (another) memory " -#~ "leak in SSLSocket.getpeercer()." - -#~ msgid "" -#~ "`bpo-25530 `__: Disable the " -#~ "vulnerable SSLv3 protocol by default when creating ssl.SSLContext." -#~ msgstr "" -#~ "`bpo-25530 `__: Disable the " -#~ "vulnerable SSLv3 protocol by default when creating ssl.SSLContext." - -#~ msgid "" -#~ "`bpo-25569 `__: Fix memory leak in " -#~ "SSLSocket.getpeercert()." -#~ msgstr "" -#~ "`bpo-25569 `__: Fix memory leak in " -#~ "SSLSocket.getpeercert()." - -#~ msgid "" -#~ "`bpo-25471 `__: Sockets returned from " -#~ "accept() shouldn't appear to be nonblocking." -#~ msgstr "" -#~ "`bpo-25471 `__: Sockets returned from " -#~ "accept() shouldn't appear to be nonblocking." - -#~ msgid "" -#~ "`bpo-25319 `__: When threading.Event " -#~ "is reinitialized, the underlying condition should use a regular lock " -#~ "rather than a recursive lock." -#~ msgstr "" -#~ "`bpo-25319 `__: When threading.Event " -#~ "is reinitialized, the underlying condition should use a regular lock " -#~ "rather than a recursive lock." - -#~ msgid "" -#~ "`bpo-26050 `__: Add asyncio." -#~ "StreamReader.readuntil() method. Patch by Марк Коренберг." -#~ msgstr "" -#~ "`bpo-26050 `__: Add asyncio." -#~ "StreamReader.readuntil() method. Patch by Марк Коренберг." - -#~ msgid "" -#~ "`bpo-25924 `__: Avoid unnecessary " -#~ "serialization of getaddrinfo(3) calls on OS X versions 10.5 or higher. " -#~ "Original patch by A. Jesse Jiryu Davis." -#~ msgstr "" -#~ "`bpo-25924 `__: Avoid unnecessary " -#~ "serialization of getaddrinfo(3) calls on OS X versions 10.5 or higher. " -#~ "Original patch by A. Jesse Jiryu Davis." - -#~ msgid "" -#~ "`bpo-26406 `__: Avoid unnecessary " -#~ "serialization of getaddrinfo(3) calls on current versions of OpenBSD and " -#~ "NetBSD. Patch by A. Jesse Jiryu Davis." -#~ msgstr "" -#~ "`bpo-26406 `__: Avoid unnecessary " -#~ "serialization of getaddrinfo(3) calls on current versions of OpenBSD and " -#~ "NetBSD. Patch by A. Jesse Jiryu Davis." - -#~ msgid "" -#~ "`bpo-26848 `__: Fix asyncio/" -#~ "subprocess.communicate() to handle empty input. Patch by Jack O'Connor." -#~ msgstr "" -#~ "`bpo-26848 `__: Fix asyncio/" -#~ "subprocess.communicate() to handle empty input. Patch by Jack O'Connor." - -#~ msgid "" -#~ "`bpo-27040 `__: Add loop." -#~ "get_exception_handler method" -#~ msgstr "" -#~ "`bpo-27040 `__: Add loop." -#~ "get_exception_handler method" - -#~ msgid "" -#~ "`bpo-27041 `__: asyncio: Add loop." -#~ "create_future method" -#~ msgstr "" -#~ "`bpo-27041 `__: asyncio: Add loop." -#~ "create_future method" - -#~ msgid "" -#~ "`bpo-20640 `__: Add tests for idlelib." -#~ "configHelpSourceEdit. Patch by Saimadhav Heblikar." -#~ msgstr "" -#~ "`bpo-20640 `__: Add tests for idlelib." -#~ "configHelpSourceEdit. Patch by Saimadhav Heblikar." - -#~ msgid "" -#~ "`bpo-25507 `__: fix incorrect change " -#~ "in IOBinding that prevented printing. Augment IOBinding htest to include " -#~ "all major IOBinding functions." -#~ msgstr "" -#~ "`bpo-25507 `__: fix incorrect change " -#~ "in IOBinding that prevented printing. Augment IOBinding htest to include " -#~ "all major IOBinding functions." - -#~ msgid "" -#~ "`bpo-25905 `__: Revert unwanted " -#~ "conversion of ' to ’ RIGHT SINGLE QUOTATION MARK in README.txt and open " -#~ "this and NEWS.txt with 'ascii'. Re-encode CREDITS.txt to utf-8 and open " -#~ "it with 'utf-8'." -#~ msgstr "" -#~ "`bpo-25905 `__: Revert unwanted " -#~ "conversion of ' to ’ RIGHT SINGLE QUOTATION MARK in README.txt and open " -#~ "this and NEWS.txt with 'ascii'. Re-encode CREDITS.txt to utf-8 and open " -#~ "it with 'utf-8'." - -#~ msgid "" -#~ "`bpo-15348 `__: Stop the debugger " -#~ "engine (normally in a user process) before closing the debugger window " -#~ "(running in the IDLE process). This prevents the RuntimeErrors that were " -#~ "being caught and ignored." -#~ msgstr "" -#~ "`bpo-15348 `__: Stop the debugger " -#~ "engine (normally in a user process) before closing the debugger window " -#~ "(running in the IDLE process). This prevents the RuntimeErrors that were " -#~ "being caught and ignored." - -#~ msgid "" -#~ "`bpo-24455 `__: Prevent IDLE from " -#~ "hanging when a) closing the shell while the debugger is active (15347); " -#~ "b) closing the debugger with the [X] button (15348); and c) activating " -#~ "the debugger when already active (24455). The patch by Mark Roseman does " -#~ "this by making two changes. 1. Suspend and resume the gui.interaction " -#~ "method with the tcl vwait mechanism intended for this purpose (instead of " -#~ "root.mainloop & .quit). 2. In gui.run, allow any existing interaction to " -#~ "terminate first." -#~ msgstr "" -#~ "`bpo-24455 `__: Prevent IDLE from " -#~ "hanging when a) closing the shell while the debugger is active (15347); " -#~ "b) closing the debugger with the [X] button (15348); and c) activating " -#~ "the debugger when already active (24455). The patch by Mark Roseman does " -#~ "this by making two changes. 1. Suspend and resume the gui.interaction " -#~ "method with the tcl vwait mechanism intended for this purpose (instead of " -#~ "root.mainloop & .quit). 2. In gui.run, allow any existing interaction to " -#~ "terminate first." - -#~ msgid "" -#~ "`bpo-24750 `__: Improve the " -#~ "appearance of the IDLE editor window status bar. Patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-24750 `__: Improve the " -#~ "appearance of the IDLE editor window status bar. Patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-25313 `__: Change the handling " -#~ "of new built-in text color themes to better address the compatibility " -#~ "problem introduced by the addition of IDLE Dark. Consistently use the " -#~ "revised idleConf.CurrentTheme everywhere in idlelib." -#~ msgstr "" -#~ "`bpo-25313 `__: Change the handling " -#~ "of new built-in text color themes to better address the compatibility " -#~ "problem introduced by the addition of IDLE Dark. Consistently use the " -#~ "revised idleConf.CurrentTheme everywhere in idlelib." - -#~ msgid "" -#~ "`bpo-24782 `__: Extension " -#~ "configuration is now a tab in the IDLE Preferences dialog rather than a " -#~ "separate dialog. The former tabs are now a sorted list. Patch by Mark " -#~ "Roseman." -#~ msgstr "" -#~ "`bpo-24782 `__: Extension " -#~ "configuration is now a tab in the IDLE Preferences dialog rather than a " -#~ "separate dialog. The former tabs are now a sorted list. Patch by Mark " -#~ "Roseman." - -#~ msgid "" -#~ "`bpo-22726 `__: Re-activate the " -#~ "config dialog help button with some content about the other buttons and " -#~ "the new IDLE Dark theme." -#~ msgstr "" -#~ "`bpo-22726 `__: Re-activate the " -#~ "config dialog help button with some content about the other buttons and " -#~ "the new IDLE Dark theme." - -#~ msgid "" -#~ "`bpo-24820 `__: IDLE now has an 'IDLE " -#~ "Dark' built-in text color theme. It is more or less IDLE Classic " -#~ "inverted, with a cobalt blue background. Strings, comments, keywords, ... " -#~ "are still green, red, orange, ... . To use it with IDLEs released before " -#~ "November 2015, hit the 'Save as New Custom Theme' button and enter a new " -#~ "name, such as 'Custom Dark'. The custom theme will work with any IDLE " -#~ "release, and can be modified." -#~ msgstr "" -#~ "`bpo-24820 `__: IDLE now has an 'IDLE " -#~ "Dark' built-in text color theme. It is more or less IDLE Classic " -#~ "inverted, with a cobalt blue background. Strings, comments, keywords, ... " -#~ "are still green, red, orange, ... . To use it with IDLEs released before " -#~ "November 2015, hit the 'Save as New Custom Theme' button and enter a new " -#~ "name, such as 'Custom Dark'. The custom theme will work with any IDLE " -#~ "release, and can be modified." - -#~ msgid "" -#~ "`bpo-25224 `__: README.txt is now an " -#~ "idlelib index for IDLE developers and curious users. The previous user " -#~ "content is now in the IDLE doc chapter. 'IDLE' now means 'Integrated " -#~ "Development and Learning Environment'." -#~ msgstr "" -#~ "`bpo-25224 `__: README.txt is now an " -#~ "idlelib index for IDLE developers and curious users. The previous user " -#~ "content is now in the IDLE doc chapter. 'IDLE' now means 'Integrated " -#~ "Development and Learning Environment'." - -#~ msgid "" -#~ "`bpo-24820 `__: Users can now set " -#~ "breakpoint colors in Settings -> Custom Highlighting. Original patch by " -#~ "Mark Roseman." -#~ msgstr "" -#~ "`bpo-24820 `__: Users can now set " -#~ "breakpoint colors in Settings -> Custom Highlighting. Original patch by " -#~ "Mark Roseman." - -#~ msgid "" -#~ "`bpo-24972 `__: Inactive selection " -#~ "background now matches active selection background, as configured by " -#~ "users, on all systems. Found items are now always highlighted on " -#~ "Windows. Initial patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-24972 `__: Inactive selection " -#~ "background now matches active selection background, as configured by " -#~ "users, on all systems. Found items are now always highlighted on " -#~ "Windows. Initial patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-24570 `__: Idle: make calltip " -#~ "and completion boxes appear on Macs affected by a tk regression. Initial " -#~ "patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-24570 `__: Idle: make calltip " -#~ "and completion boxes appear on Macs affected by a tk regression. Initial " -#~ "patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-24988 `__: Idle ScrolledList " -#~ "context menus (used in debugger) now work on Mac Aqua. Patch by Mark " -#~ "Roseman." -#~ msgstr "" -#~ "`bpo-24988 `__: Idle ScrolledList " -#~ "context menus (used in debugger) now work on Mac Aqua. Patch by Mark " -#~ "Roseman." - -#~ msgid "" -#~ "`bpo-24801 `__: Make right-click for " -#~ "context menu work on Mac Aqua. Patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-24801 `__: Make right-click for " -#~ "context menu work on Mac Aqua. Patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-25173 `__: Associate tkinter " -#~ "messageboxes with a specific widget. For Mac OSX, make them a 'sheet'. " -#~ "Patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-25173 `__: Associate tkinter " -#~ "messageboxes with a specific widget. For Mac OSX, make them a 'sheet'. " -#~ "Patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-25198 `__: Enhance the initial " -#~ "html viewer now used for Idle Help. * Properly indent fixed-pitch text " -#~ "(patch by Mark Roseman). * Give code snippet a very Sphinx-like light " -#~ "blueish-gray background. * Re-use initial width and height set by users " -#~ "for shell and editor. * When the Table of Contents (TOC) menu is used, " -#~ "put the section header at the top of the screen." -#~ msgstr "" -#~ "`bpo-25198 `__: Enhance the initial " -#~ "html viewer now used for Idle Help. * Properly indent fixed-pitch text " -#~ "(patch by Mark Roseman). * Give code snippet a very Sphinx-like light " -#~ "blueish-gray background. * Re-use initial width and height set by users " -#~ "for shell and editor. * When the Table of Contents (TOC) menu is used, " -#~ "put the section header at the top of the screen." - -#~ msgid "" -#~ "`bpo-25225 `__: Condense and rewrite " -#~ "Idle doc section on text colors." -#~ msgstr "" -#~ "`bpo-25225 `__: Condense and rewrite " -#~ "Idle doc section on text colors." - -#~ msgid "" -#~ "`bpo-21995 `__: Explain some " -#~ "differences between IDLE and console Python." -#~ msgstr "" -#~ "`bpo-21995 `__: Explain some " -#~ "differences between IDLE and console Python." - -#~ msgid "" -#~ "`bpo-22820 `__: Explain need for " -#~ "*print* when running file from Idle editor." -#~ msgstr "" -#~ "`bpo-22820 `__: Explain need for " -#~ "*print* when running file from Idle editor." - -#~ msgid "" -#~ "`bpo-25224 `__: Doc: augment Idle " -#~ "feature list and no-subprocess section." -#~ msgstr "" -#~ "`bpo-25224 `__: Doc: augment Idle " -#~ "feature list and no-subprocess section." - -#~ msgid "" -#~ "`bpo-25219 `__: Update doc for Idle " -#~ "command line options. Some were missing and notes were not correct." -#~ msgstr "" -#~ "`bpo-25219 `__: Update doc for Idle " -#~ "command line options. Some were missing and notes were not correct." - -#~ msgid "" -#~ "`bpo-24861 `__: Most of idlelib is " -#~ "private and subject to change. Use idleib.idle.* to start Idle. See " -#~ "idlelib.__init__.__doc__." -#~ msgstr "" -#~ "`bpo-24861 `__: Most of idlelib is " -#~ "private and subject to change. Use idleib.idle.* to start Idle. See " -#~ "idlelib.__init__.__doc__." - -#~ msgid "" -#~ "`bpo-25199 `__: Idle: add " -#~ "synchronization comments for future maintainers." -#~ msgstr "" -#~ "`bpo-25199 `__: Idle: add " -#~ "synchronization comments for future maintainers." - -#~ msgid "" -#~ "`bpo-16893 `__: Replace help.txt with " -#~ "help.html for Idle doc display. The new idlelib/help.html is rstripped " -#~ "Doc/build/html/library/idle.html. It looks better than help.txt and will " -#~ "better document Idle as released. The tkinter html viewer that works for " -#~ "this file was written by Rose Roseman. The now unused EditorWindow." -#~ "HelpDialog class and helt.txt file are deprecated." -#~ msgstr "" -#~ "`bpo-16893 `__: Replace help.txt with " -#~ "help.html for Idle doc display. The new idlelib/help.html is rstripped " -#~ "Doc/build/html/library/idle.html. It looks better than help.txt and will " -#~ "better document Idle as released. The tkinter html viewer that works for " -#~ "this file was written by Rose Roseman. The now unused EditorWindow." -#~ "HelpDialog class and helt.txt file are deprecated." - -#~ msgid "" -#~ "`bpo-24199 `__: Deprecate unused " -#~ "idlelib.idlever with possible removal in 3.6." -#~ msgstr "" -#~ "`bpo-24199 `__: Deprecate unused " -#~ "idlelib.idlever with possible removal in 3.6." - -#~ msgid "" -#~ "`bpo-24790 `__: Remove extraneous " -#~ "code (which also create 2 & 3 conflicts)." -#~ msgstr "" -#~ "`bpo-24790 `__: Remove extraneous " -#~ "code (which also create 2 & 3 conflicts)." - -#~ msgid "" -#~ "`bpo-26736 `__: Used HTTPS for " -#~ "external links in the documentation if possible." -#~ msgstr "" -#~ "`bpo-26736 `__: Used HTTPS for " -#~ "external links in the documentation if possible." - -#~ msgid "" -#~ "`bpo-6953 `__: Rework the Readline " -#~ "module documentation to group related functions together, and add more " -#~ "details such as what underlying Readline functions and variables are " -#~ "accessed." -#~ msgstr "" -#~ "`bpo-6953 `__: Rework the Readline " -#~ "module documentation to group related functions together, and add more " -#~ "details such as what underlying Readline functions and variables are " -#~ "accessed." - -#~ msgid "" -#~ "`bpo-23606 `__: Adds note to ctypes " -#~ "documentation regarding cdll.msvcrt." -#~ msgstr "" -#~ "`bpo-23606 `__: Adds note to ctypes " -#~ "documentation regarding cdll.msvcrt." - -#~ msgid "" -#~ "`bpo-24952 `__: Clarify the default " -#~ "size argument of stack_size() in the \"threading\" and \"_thread\" " -#~ "modules. Patch from Mattip." -#~ msgstr "" -#~ "`bpo-24952 `__: Clarify the default " -#~ "size argument of stack_size() in the \"threading\" and \"_thread\" " -#~ "modules. Patch from Mattip." - -#~ msgid "" -#~ "`bpo-26014 `__: Update 3.x packaging " -#~ "documentation: * \"See also\" links to the new docs are now provided in " -#~ "the legacy pages * links to setuptools documentation have been updated" -#~ msgstr "" -#~ "`bpo-26014 `__: Update 3.x packaging " -#~ "documentation: * \"See also\" links to the new docs are now provided in " -#~ "the legacy pages * links to setuptools documentation have been updated" - -#~ msgid "" -#~ "`bpo-21916 `__: Added tests for the " -#~ "turtle module. Patch by ingrid, Gregory Loyse and Jelle Zijlstra." -#~ msgstr "" -#~ "`bpo-21916 `__: Added tests for the " -#~ "turtle module. Patch by ingrid, Gregory Loyse and Jelle Zijlstra." - -#~ msgid "" -#~ "`bpo-26295 `__: When using \"python3 -" -#~ "m test --testdir=TESTDIR\", regrtest doesn't add \"test.\" prefix to test " -#~ "module names." -#~ msgstr "" -#~ "`bpo-26295 `__: When using \"python3 -" -#~ "m test --testdir=TESTDIR\", regrtest doesn't add \"test.\" prefix to test " -#~ "module names." - -#~ msgid "" -#~ "`bpo-26523 `__: The multiprocessing " -#~ "thread pool (multiprocessing.dummy.Pool) was untested." -#~ msgstr "" -#~ "`bpo-26523 `__: The multiprocessing " -#~ "thread pool (multiprocessing.dummy.Pool) was untested." - -#~ msgid "" -#~ "`bpo-26015 `__: Added new tests for " -#~ "pickling iterators of mutable sequences." -#~ msgstr "" -#~ "`bpo-26015 `__: Added new tests for " -#~ "pickling iterators of mutable sequences." - -#~ msgid "" -#~ "`bpo-26325 `__: Added test.support." -#~ "check_no_resource_warning() to check that no ResourceWarning is emitted." -#~ msgstr "" -#~ "`bpo-26325 `__: Added test.support." -#~ "check_no_resource_warning() to check that no ResourceWarning is emitted." - -#~ msgid "" -#~ "`bpo-25940 `__: Changed test_ssl to " -#~ "use its internal local server more. This avoids relying on svn.python." -#~ "org, which recently changed root certificate." -#~ msgstr "" -#~ "`bpo-25940 `__: Changed test_ssl to " -#~ "use its internal local server more. This avoids relying on svn.python." -#~ "org, which recently changed root certificate." - -#~ msgid "" -#~ "`bpo-25616 `__: Tests for OrderedDict " -#~ "are extracted from test_collections into separate file test_ordered_dict." -#~ msgstr "" -#~ "`bpo-25616 `__: Tests for OrderedDict " -#~ "are extracted from test_collections into separate file test_ordered_dict." - -#~ msgid "" -#~ "`bpo-25449 `__: Added tests for " -#~ "OrderedDict subclasses." -#~ msgstr "" -#~ "`bpo-25449 `__: Added tests for " -#~ "OrderedDict subclasses." - -#~ msgid "" -#~ "`bpo-25188 `__: Add -P/--pgo to test." -#~ "regrtest to suppress error output when running the test suite for the " -#~ "purposes of a PGO build. Initial patch by Alecsandru Patrascu." -#~ msgstr "" -#~ "`bpo-25188 `__: Add -P/--pgo to test." -#~ "regrtest to suppress error output when running the test suite for the " -#~ "purposes of a PGO build. Initial patch by Alecsandru Patrascu." - -#~ msgid "" -#~ "`bpo-22806 `__: Add ``python -m test " -#~ "--list-tests`` command to list tests." -#~ msgstr "" -#~ "`bpo-22806 `__: Add ``python -m test " -#~ "--list-tests`` command to list tests." - -#~ msgid "" -#~ "`bpo-18174 `__: ``python -m test --" -#~ "huntrleaks ...`` now also checks for leak of file descriptors. Patch " -#~ "written by Richard Oudkerk." -#~ msgstr "" -#~ "`bpo-18174 `__: ``python -m test --" -#~ "huntrleaks ...`` now also checks for leak of file descriptors. Patch " -#~ "written by Richard Oudkerk." - -#~ msgid "" -#~ "`bpo-25260 `__: Fix ``python -m test " -#~ "--coverage`` on Windows. Remove the list of ignored directories." -#~ msgstr "" -#~ "`bpo-25260 `__: Fix ``python -m test " -#~ "--coverage`` on Windows. Remove the list of ignored directories." - -#~ msgid "" -#~ "`bpo-26583 `__: Skip " -#~ "test_timestamp_overflow in test_import if bytecode files cannot be " -#~ "written." -#~ msgstr "" -#~ "`bpo-26583 `__: Skip " -#~ "test_timestamp_overflow in test_import if bytecode files cannot be " -#~ "written." - -#~ msgid "" -#~ "`bpo-21277 `__: Don't try to link " -#~ "_ctypes with a ffi_convenience library." -#~ msgstr "" -#~ "`bpo-21277 `__: Don't try to link " -#~ "_ctypes with a ffi_convenience library." - -#~ msgid "" -#~ "`bpo-26884 `__: Fix linking extension " -#~ "modules for cross builds. Patch by Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-26884 `__: Fix linking extension " -#~ "modules for cross builds. Patch by Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-26932 `__: Fixed support of " -#~ "RTLD_* constants defined as enum values, not via macros (in particular on " -#~ "Android). Patch by Chi Hsuan Yen." -#~ msgstr "" -#~ "`bpo-26932 `__: Fixed support of " -#~ "RTLD_* constants defined as enum values, not via macros (in particular on " -#~ "Android). Patch by Chi Hsuan Yen." - -#~ msgid "" -#~ "`bpo-22359 `__: Disable the rules for " -#~ "running _freeze_importlib and pgen when cross-compiling. The output of " -#~ "these programs is normally saved with the source code anyway, and is " -#~ "still regenerated when doing a native build. Patch by Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-22359 `__: Disable the rules for " -#~ "running _freeze_importlib and pgen when cross-compiling. The output of " -#~ "these programs is normally saved with the source code anyway, and is " -#~ "still regenerated when doing a native build. Patch by Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-21668 `__: Link audioop, " -#~ "_datetime, _ctypes_test modules to libm, except on Mac OS X. Patch " -#~ "written by Chi Hsuan Yen." -#~ msgstr "" -#~ "`bpo-21668 `__: Link audioop, " -#~ "_datetime, _ctypes_test modules to libm, except on Mac OS X. Patch " -#~ "written by Chi Hsuan Yen." - -#~ msgid "" -#~ "`bpo-25702 `__: A --with-lto " -#~ "configure option has been added that will enable link time optimizations " -#~ "at build time during a make profile-opt. Some compilers and toolchains " -#~ "are known to not produce stable code when using LTO, be sure to test " -#~ "things thoroughly before relying on it. It can provide a few % speed up " -#~ "over profile-opt alone." -#~ msgstr "" -#~ "`bpo-25702 `__: A --with-lto " -#~ "configure option has been added that will enable link time optimizations " -#~ "at build time during a make profile-opt. Some compilers and toolchains " -#~ "are known to not produce stable code when using LTO, be sure to test " -#~ "things thoroughly before relying on it. It can provide a few % speed up " -#~ "over profile-opt alone." - -#~ msgid "" -#~ "`bpo-26624 `__: Adds validation of " -#~ "ucrtbase[d].dll version with warning for old versions." -#~ msgstr "" -#~ "`bpo-26624 `__: Adds validation of " -#~ "ucrtbase[d].dll version with warning for old versions." - -#~ msgid "" -#~ "`bpo-17603 `__: Avoid error about " -#~ "nonexistant fileblocks.o file by using a lower-level check for st_blocks " -#~ "in struct stat." -#~ msgstr "" -#~ "`bpo-17603 `__: Avoid error about " -#~ "nonexistant fileblocks.o file by using a lower-level check for st_blocks " -#~ "in struct stat." - -#~ msgid "" -#~ "`bpo-26079 `__: Fixing the build " -#~ "output folder for tix-8.4.3.6. Patch by Bjoern Thiel." -#~ msgstr "" -#~ "`bpo-26079 `__: Fixing the build " -#~ "output folder for tix-8.4.3.6. Patch by Bjoern Thiel." - -#~ msgid "" -#~ "`bpo-26465 `__: Update Windows builds " -#~ "to use OpenSSL 1.0.2g." -#~ msgstr "" -#~ "`bpo-26465 `__: Update Windows builds " -#~ "to use OpenSSL 1.0.2g." - -#~ msgid "" -#~ "`bpo-25348 `__: Added ``--pgo`` and " -#~ "``--pgo-job`` arguments to ``PCbuild\\build.bat`` for building with " -#~ "Profile-Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script " -#~ "is removed." -#~ msgstr "" -#~ "`bpo-25348 `__: Added ``--pgo`` and " -#~ "``--pgo-job`` arguments to ``PCbuild\\build.bat`` for building with " -#~ "Profile-Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script " -#~ "is removed." - -#~ msgid "" -#~ "`bpo-25827 `__: Add support for " -#~ "building with ICC to ``configure``, including a new ``--with-icc`` flag." -#~ msgstr "" -#~ "`bpo-25827 `__: Add support for " -#~ "building with ICC to ``configure``, including a new ``--with-icc`` flag." - -#~ msgid "" -#~ "`bpo-25696 `__: Fix installation of " -#~ "Python on UNIX with make -j9." -#~ msgstr "" -#~ "`bpo-25696 `__: Fix installation of " -#~ "Python on UNIX with make -j9." - -#~ msgid "" -#~ "`bpo-24986 `__: It is now possible to " -#~ "build Python on Windows without errors when external libraries are not " -#~ "available." -#~ msgstr "" -#~ "`bpo-24986 `__: It is now possible to " -#~ "build Python on Windows without errors when external libraries are not " -#~ "available." - -#~ msgid "" -#~ "`bpo-24421 `__: Compile Modules/_math." -#~ "c once, before building extensions. Previously it could fail to compile " -#~ "properly if the math and cmath builds were concurrent." -#~ msgstr "" -#~ "`bpo-24421 `__: Compile Modules/_math." -#~ "c once, before building extensions. Previously it could fail to compile " -#~ "properly if the math and cmath builds were concurrent." - -#~ msgid "" -#~ "`bpo-26465 `__: Update OS X 10.5+ 32-" -#~ "bit-only installer to build and link with OpenSSL 1.0.2g." -#~ msgstr "" -#~ "`bpo-26465 `__: Update OS X 10.5+ 32-" -#~ "bit-only installer to build and link with OpenSSL 1.0.2g." - -#~ msgid "" -#~ "`bpo-26268 `__: Update Windows builds " -#~ "to use OpenSSL 1.0.2f." -#~ msgstr "" -#~ "`bpo-26268 `__: Update Windows builds " -#~ "to use OpenSSL 1.0.2f." - -#~ msgid "" -#~ "`bpo-25136 `__: Support Apple Xcode " -#~ "7's new textual SDK stub libraries." -#~ msgstr "" -#~ "`bpo-25136 `__: Support Apple Xcode " -#~ "7's new textual SDK stub libraries." - -#~ msgid "" -#~ "`bpo-24324 `__: Do not enable " -#~ "unreachable code warnings when using gcc as the option does not work " -#~ "correctly in older versions of gcc and has been silently removed as of " -#~ "gcc-4.5." -#~ msgstr "" -#~ "`bpo-24324 `__: Do not enable " -#~ "unreachable code warnings when using gcc as the option does not work " -#~ "correctly in older versions of gcc and has been silently removed as of " -#~ "gcc-4.5." - -#~ msgid "" -#~ "`bpo-27053 `__: Updates make_zip.py " -#~ "to correctly generate library ZIP file." -#~ msgstr "" -#~ "`bpo-27053 `__: Updates make_zip.py " -#~ "to correctly generate library ZIP file." - -#~ msgid "" -#~ "`bpo-26268 `__: Update the " -#~ "prepare_ssl.py script to handle OpenSSL releases that don't include the " -#~ "contents of the include directory (that is, 1.0.2e and later)." -#~ msgstr "" -#~ "`bpo-26268 `__: Update the " -#~ "prepare_ssl.py script to handle OpenSSL releases that don't include the " -#~ "contents of the include directory (that is, 1.0.2e and later)." - -#~ msgid "" -#~ "`bpo-26071 `__: bdist_wininst created " -#~ "binaries fail to start and find 32bit Python" -#~ msgstr "" -#~ "`bpo-26071 `__: bdist_wininst created " -#~ "binaries fail to start and find 32bit Python" - -#~ msgid "" -#~ "`bpo-26073 `__: Update the list of " -#~ "magic numbers in launcher" -#~ msgstr "" -#~ "`bpo-26073 `__: Update the list of " -#~ "magic numbers in launcher" - -#~ msgid "" -#~ "`bpo-26065 `__: Excludes venv from " -#~ "library when generating embeddable distro." -#~ msgstr "" -#~ "`bpo-26065 `__: Excludes venv from " -#~ "library when generating embeddable distro." - -#~ msgid "" -#~ "`bpo-25022 `__: Removed very outdated " -#~ "PC/example_nt/ directory." -#~ msgstr "" -#~ "`bpo-25022 `__: Removed very outdated " -#~ "PC/example_nt/ directory." - -#~ msgid "" -#~ "`bpo-26799 `__: Fix python-gdb.py: " -#~ "don't get C types once when the Python code is loaded, but get C types on " -#~ "demand. The C types can change if python-gdb.py is loaded before the " -#~ "Python executable. Patch written by Thomas Ilsche." -#~ msgstr "" -#~ "`bpo-26799 `__: Fix python-gdb.py: " -#~ "don't get C types once when the Python code is loaded, but get C types on " -#~ "demand. The C types can change if python-gdb.py is loaded before the " -#~ "Python executable. Patch written by Thomas Ilsche." - -#~ msgid "" -#~ "`bpo-26271 `__: Fix the Freeze tool " -#~ "to properly use flags passed through configure. Patch by Daniel Shaulov." -#~ msgstr "" -#~ "`bpo-26271 `__: Fix the Freeze tool " -#~ "to properly use flags passed through configure. Patch by Daniel Shaulov." - -#~ msgid "" -#~ "`bpo-26489 `__: Add dictionary " -#~ "unpacking support to Tools/parser/unparse.py. Patch by Guo Ci Teo." -#~ msgstr "" -#~ "`bpo-26489 `__: Add dictionary " -#~ "unpacking support to Tools/parser/unparse.py. Patch by Guo Ci Teo." - -#~ msgid "" -#~ "`bpo-26316 `__: Fix variable name " -#~ "typo in Argument Clinic." -#~ msgstr "" -#~ "`bpo-26316 `__: Fix variable name " -#~ "typo in Argument Clinic." - -#~ msgid "" -#~ "`bpo-25440 `__: Fix output of python-" -#~ "config --extension-suffix." -#~ msgstr "" -#~ "`bpo-25440 `__: Fix output of python-" -#~ "config --extension-suffix." - -#~ msgid "" -#~ "`bpo-25154 `__: The pyvenv script has " -#~ "been deprecated in favour of `python3 -m venv`." -#~ msgstr "" -#~ "`bpo-25154 `__: The pyvenv script has " -#~ "been deprecated in favour of `python3 -m venv`." - -#~ msgid "" -#~ "`bpo-26312 `__: SystemError is now " -#~ "raised in all programming bugs with using PyArg_ParseTupleAndKeywords(). " -#~ "RuntimeError did raised before in some programming bugs." -#~ msgstr "" -#~ "`bpo-26312 `__: SystemError is now " -#~ "raised in all programming bugs with using PyArg_ParseTupleAndKeywords(). " -#~ "RuntimeError did raised before in some programming bugs." - -#~ msgid "" -#~ "`bpo-26198 `__: ValueError is now " -#~ "raised instead of TypeError on buffer overflow in parsing \"es#\" and " -#~ "\"et#\" format units. SystemError is now raised instead of TypeError on " -#~ "programmical error in parsing format string." -#~ msgstr "" -#~ "`bpo-26198 `__: ValueError is now " -#~ "raised instead of TypeError on buffer overflow in parsing \"es#\" and " -#~ "\"et#\" format units. SystemError is now raised instead of TypeError on " -#~ "programmical error in parsing format string." - -#~ msgid "Python 3.5.3" -#~ msgstr "Python 3.5.3" - -#~ msgid "Release date: 2017-01-17" -#~ msgstr "Date de sortie : 2014-01-26" - -#~ msgid "Python 3.5.3 release candidate 1" -#~ msgstr "Python 3.5.3 release candidate 1" - -#~ msgid "Release date: 2017-01-02" -#~ msgstr "Date de sortie : 05-01-2014" - -#~ msgid "" -#~ "`bpo-29073 `__: bytearray formatting " -#~ "no longer truncates on first null byte." -#~ msgstr "" -#~ "`bpo-29073 `__: bytearray formatting " -#~ "no longer truncates on first null byte." - -#~ msgid "" -#~ "`bpo-28147 `__: Fix a memory leak in " -#~ "split-table dictionaries: setattr() must not convert combined table into " -#~ "split table." -#~ msgstr "" -#~ "`bpo-28147 `__: Fix a memory leak in " -#~ "split-table dictionaries: setattr() must not convert combined table into " -#~ "split table." - -#~ msgid "" -#~ "`bpo-28991 `__: functools." -#~ "lru_cache() was susceptible to an obscure reentrancy bug caused by a " -#~ "monkey-patched len() function." -#~ msgstr "" -#~ "`bpo-28991 `__: functools." -#~ "lru_cache() was susceptible to an obscure reentrancy bug caused by a " -#~ "monkey-patched len() function." - -#~ msgid "" -#~ "`bpo-28203 `__: Fix incorrect type in " -#~ "error message from ``complex(1.0, {2:3})``. Patch by Soumya Sharma." -#~ msgstr "" -#~ "`bpo-28203 `__: Fix incorrect type in " -#~ "error message from ``complex(1.0, {2:3})``. Patch by Soumya Sharma." - -#~ msgid "" -#~ "`bpo-28189 `__: dictitems_contains no " -#~ "longer swallows compare errors. (Patch by Xiang Zhang)" -#~ msgstr "" -#~ "`bpo-28189 `__: dictitems_contains no " -#~ "longer swallows compare errors. (Patch by Xiang Zhang)" - -#~ msgid "" -#~ "`bpo-26020 `__: set literal " -#~ "evaluation order did not match documented behaviour." -#~ msgstr "" -#~ "`bpo-26020 `__: set literal " -#~ "evaluation order did not match documented behaviour." - -#~ msgid "" -#~ "`bpo-27419 `__: Standard __import__() " -#~ "no longer look up \"__import__\" in globals or builtins for importing " -#~ "submodules or \"from import\". Fixed handling an error of non-string " -#~ "package name." -#~ msgstr "" -#~ "`bpo-27419 `__: Standard __import__() " -#~ "no longer look up \"__import__\" in globals or builtins for importing " -#~ "submodules or \"from import\". Fixed handling an error of non-string " -#~ "package name." - -#~ msgid "" -#~ "`bpo-20191 `__: Fixed a crash in " -#~ "resource.prlimit() when pass a sequence that doesn't own its elements as " -#~ "limits." -#~ msgstr "" -#~ "`bpo-20191 `__: Fixed a crash in " -#~ "resource.prlimit() when pass a sequence that doesn't own its elements as " -#~ "limits." - -#~ msgid "" -#~ "`bpo-28488 `__: shutil.make_archive() " -#~ "no longer add entry \"./\" to ZIP archive." -#~ msgstr "" -#~ "`bpo-28488 `__: shutil.make_archive() " -#~ "no longer add entry \"./\" to ZIP archive." - -#~ msgid "" -#~ "`bpo-27611 `__: Fixed support of " -#~ "default root window in the tkinter.tix module." -#~ msgstr "" -#~ "`bpo-27611 `__: Fixed support of " -#~ "default root window in the tkinter.tix module." - -#~ msgid "" -#~ "`bpo-19003 `__:m email.generator now " -#~ "replaces only ``\\r`` and/or ``\\n`` line endings, per the RFC, instead " -#~ "of all unicode line endings." -#~ msgstr "" -#~ "`bpo-19003 `__:m email.generator now " -#~ "replaces only ``\\r`` and/or ``\\n`` line endings, per the RFC, instead " -#~ "of all unicode line endings." - -#~ msgid "" -#~ "`bpo-26750 `__: unittest.mock." -#~ "create_autospec() now works properly for subclasses of property() and " -#~ "other data descriptors." -#~ msgstr "" -#~ "`bpo-26750 `__: unittest.mock." -#~ "create_autospec() now works properly for subclasses of property() and " -#~ "other data descriptors." - -#~ msgid "" -#~ "`bpo-26664 `__: Fix activate.fish by " -#~ "removing mis-use of ``$``." -#~ msgstr "" -#~ "`bpo-26664 `__: Fix activate.fish by " -#~ "removing mis-use of ``$``." - -#~ msgid "" -#~ "`bpo-22115 `__: Fixed tracing Tkinter " -#~ "variables: trace_vdelete() with wrong mode no longer break tracing, " -#~ "trace_vinfo() now always returns a list of pairs of strings, tracing in " -#~ "the \"u\" mode now works." -#~ msgstr "" -#~ "`bpo-22115 `__: Fixed tracing Tkinter " -#~ "variables: trace_vdelete() with wrong mode no longer break tracing, " -#~ "trace_vinfo() now always returns a list of pairs of strings, tracing in " -#~ "the \"u\" mode now works." - -#~ msgid "" -#~ "`bpo-28600 `__: Optimize loop." -#~ "call_soon()." -#~ msgstr "" -#~ "`bpo-28600 `__: Optimize loop." -#~ "call_soon()." - -#~ msgid "" -#~ "`bpo-24142 `__: Reading a corrupt " -#~ "config file left the parser in an invalid state. Original patch by " -#~ "Florian Höch." -#~ msgstr "" -#~ "`bpo-24142 `__: Reading a corrupt " -#~ "config file left the parser in an invalid state. Original patch by " -#~ "Florian Höch." - -#~ msgid "" -#~ "`bpo-28990 `__: Fix SSL hanging if " -#~ "connection is closed before handshake completed. (Patch by HoHo-Ho)" -#~ msgstr "" -#~ "`bpo-28990 `__: Fix SSL hanging if " -#~ "connection is closed before handshake completed. (Patch by HoHo-Ho)" - -#~ msgid "" -#~ "`bpo-26754 `__: PyUnicode_FSDecoder() " -#~ "accepted a filename argument encoded as an iterable of integers. Now only " -#~ "strings and bytes-like objects are accepted." -#~ msgstr "" -#~ "`bpo-26754 `__: PyUnicode_FSDecoder() " -#~ "accepted a filename argument encoded as an iterable of integers. Now only " -#~ "strings and bytes-like objects are accepted." - -#~ msgid "" -#~ "`bpo-28950 `__: Disallow -j0 to be " -#~ "combined with -T/-l/-M in regrtest command line arguments." -#~ msgstr "" -#~ "`bpo-28950 `__: Disallow -j0 to be " -#~ "combined with -T/-l/-M in regrtest command line arguments." - -#~ msgid "" -#~ "`bpo-27309 `__: Enabled proper " -#~ "Windows styles in python[w].exe manifest." -#~ msgstr "" -#~ "`bpo-27309 `__: Enabled proper " -#~ "Windows styles in python[w].exe manifest." - -#~ msgid "" -#~ "`bpo-26359 `__: Add the --with-" -#~ "optimizations configure flag." -#~ msgstr "" -#~ "`bpo-26359 `__: Add the --with-" -#~ "optimizations configure flag." - -#~ msgid "" -#~ "`bpo-25825 `__: Correct the " -#~ "references to Modules/python.exp and ld_so_aix, which are required on " -#~ "AIX. This updates references to an installation path that was changed in " -#~ "3.2a4, and undoes changed references to the build tree that were made in " -#~ "3.5.0a1." -#~ msgstr "" -#~ "`bpo-25825 `__: Correct the " -#~ "references to Modules/python.exp and ld_so_aix, which are required on " -#~ "AIX. This updates references to an installation path that was changed in " -#~ "3.2a4, and undoes changed references to the build tree that were made in " -#~ "3.5.0a1." - -#~ msgid "Python 3.5.2" -#~ msgstr "Python 3.5.2" - -#~ msgid "Release date: 2016-06-26" -#~ msgstr "Date de sortie : 2016-06-26" - -#~ msgid "" -#~ "`bpo-26867 `__: Ubuntu's openssl " -#~ "OP_NO_SSLv3 is forced on by default; fix test." -#~ msgstr "" -#~ "`bpo-26867 `__: Ubuntu's openssl " -#~ "OP_NO_SSLv3 is forced on by default; fix test." - -#~ msgid "" -#~ "`bpo-27365 `__: Allow non-ascii in " -#~ "idlelib/NEWS.txt - minimal part for 3.5.2." -#~ msgstr "" -#~ "`bpo-27365 `__: Allow non-ascii in " -#~ "idlelib/NEWS.txt - minimal part for 3.5.2." - -#~ msgid "Python 3.5.2 release candidate 1" -#~ msgstr "Python 3.5.2 release candidate 1" - -#~ msgid "Release date: 2016-06-12" -#~ msgstr "Date de sortie : 2016-06-12" - -#~ msgid "" -#~ "`bpo-27039 `__: Fixed bytearray." -#~ "remove() for values greater than 127. Patch by Joe Jevnik." -#~ msgstr "" -#~ "`bpo-27039 `__: Fixed bytearray." -#~ "remove() for values greater than 127. Patch by Joe Jevnik." - -#~ msgid "" -#~ "`bpo-26194 `__: Deque.insert() gave " -#~ "odd results for bounded deques that had reached their maximum size. Now " -#~ "an IndexError will be raised when attempting to insert into a full deque." -#~ msgstr "" -#~ "`bpo-26194 `__: Deque.insert() gave " -#~ "odd results for bounded deques that had reached their maximum size. Now " -#~ "an IndexError will be raised when attempting to insert into a full deque." - -#~ msgid "" -#~ "`bpo-25843 `__: When compiling code, " -#~ "don't merge constants if they are equal but have a different types. For " -#~ "example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " -#~ "two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " -#~ "returns ``1.0`` (``int``), even if ``1`` and ``1.0`` are equal." -#~ msgstr "" -#~ "`bpo-25843 `__: When compiling code, " -#~ "don't merge constants if they are equal but have a different types. For " -#~ "example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " -#~ "two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " -#~ "returns ``1.0`` (``int``), even if ``1`` and ``1.0`` are equal." - -#~ msgid "" -#~ "`bpo-21925 `__: :func:`warnings." -#~ "formatwarning` now catches exceptions on ``linecache.getline(...)`` to be " -#~ "able to log :exc:`ResourceWarning` emitted late during the Python " -#~ "shutdown process." -#~ msgstr "" -#~ "`bpo-21925 `__: :func:`warnings." -#~ "formatwarning` now catches exceptions on ``linecache.getline(...)`` to be " -#~ "able to log :exc:`ResourceWarning` emitted late during the Python " -#~ "shutdown process." - -#~ msgid "" -#~ "`bpo-15068 `__: Got rid of excessive " -#~ "buffering in the fileinput module. The bufsize parameter is no longer " -#~ "used." -#~ msgstr "" -#~ "`bpo-15068 `__: Got rid of excessive " -#~ "buffering in the fileinput module. The bufsize parameter is no longer " -#~ "used." - -#~ msgid "" -#~ "`bpo-26367 `__: importlib." -#~ "__import__() raises SystemError like builtins.__import__() when ``level`` " -#~ "is specified but without an accompanying package specified." -#~ msgstr "" -#~ "`bpo-26367 `__: importlib." -#~ "__import__() raises SystemError like builtins.__import__() when ``level`` " -#~ "is specified but without an accompanying package specified." - -#~ msgid "" -#~ "`bpo-17633 `__: Improve zipimport's " -#~ "support for namespace packages." -#~ msgstr "" -#~ "`bpo-17633 `__: Improve zipimport's " -#~ "support for namespace packages." - -#~ msgid "" -#~ "`bpo-25447 `__: Copying the " -#~ "lru_cache() wrapper object now always works, independedly from the type " -#~ "of the wrapped object (by returning the original object unchanged)." -#~ msgstr "" -#~ "`bpo-25447 `__: Copying the " -#~ "lru_cache() wrapper object now always works, independedly from the type " -#~ "of the wrapped object (by returning the original object unchanged)." - -#~ msgid "" -#~ "`bpo-27223 `__: asyncio: Fix " -#~ "_read_ready and _write_ready to respect _conn_lost. Patch by Łukasz Langa." -#~ msgstr "" -#~ "`bpo-27223 `__: asyncio: Fix " -#~ "_read_ready and _write_ready to respect _conn_lost. Patch by Łukasz Langa." - -#~ msgid "" -#~ "`bpo-22970 `__: asyncio: Fix " -#~ "inconsistency cancelling Condition.wait. Patch by David Coles." -#~ msgstr "" -#~ "`bpo-22970 `__: asyncio: Fix " -#~ "inconsistency cancelling Condition.wait. Patch by David Coles." - -#~ msgid "" -#~ "`bpo-21703 `__: Add test for IDLE's " -#~ "undo delegator. Original patch by Saimadhav Heblikar ." -#~ msgstr "" -#~ "`bpo-21703 `__: Add test for IDLE's " -#~ "undo delegator. Original patch by Saimadhav Heblikar ." - -#~ msgid "" -#~ "`bpo-25500 `__: Fix documentation to " -#~ "not claim that __import__ is searched for in the global scope." -#~ msgstr "" -#~ "`bpo-25500 `__: Fix documentation to " -#~ "not claim that __import__ is searched for in the global scope." - -#~ msgid "" -#~ "`bpo-25940 `__: Changed test_ssl to " -#~ "use self-signed.pythontest.net. This avoids relying on svn.python.org, " -#~ "which recently changed root certificate." -#~ msgstr "" -#~ "`bpo-25940 `__: Changed test_ssl to " -#~ "use self-signed.pythontest.net. This avoids relying on svn.python.org, " -#~ "which recently changed root certificate." - -#~ msgid "" -#~ "`bpo-21668 `__: Link audioop, " -#~ "_datetime, _ctypes_test modules to libm, except on Mac OS X. Patch " -#~ "written by Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-21668 `__: Link audioop, " -#~ "_datetime, _ctypes_test modules to libm, except on Mac OS X. Patch " -#~ "written by Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-25348 `__: Added ``--pgo`` and " -#~ "``--pgo-job`` arguments to ``PCbuild\\build.bat`` for building with " -#~ "Profile-Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script " -#~ "is now deprecated, and simply calls ``PCbuild\\build.bat --pgo %*``." -#~ msgstr "" -#~ "`bpo-25348 `__: Added ``--pgo`` and " -#~ "``--pgo-job`` arguments to ``PCbuild\\build.bat`` for building with " -#~ "Profile-Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script " -#~ "is now deprecated, and simply calls ``PCbuild\\build.bat --pgo %*``." - -#~ msgid "Python 3.5.1 final" -#~ msgstr "Python 3.5.1 final" - -#~ msgid "Release date: 2015-12-06" -#~ msgstr "Date de sortie : 2015-12-06" - -#~ msgid "" -#~ "`bpo-25715 `__: Python 3.5.1 " -#~ "installer shows wrong upgrade path and incorrect logic for launcher " -#~ "detection." -#~ msgstr "" -#~ "`bpo-25715 `__: Python 3.5.1 " -#~ "installer shows wrong upgrade path and incorrect logic for launcher " -#~ "detection." - -#~ msgid "Python 3.5.1 release candidate 1" -#~ msgstr "Python 3.5.1 release candidate 1" - -#~ msgid "Release date: 2015-11-22" -#~ msgstr "Date de sortie : 2015-11-22" - -#~ msgid "" -#~ "`bpo-25182 `__: The stdprinter (used " -#~ "as sys.stderr before the io module is imported at startup) now uses the " -#~ "backslashreplace error handler." -#~ msgstr "" -#~ "`bpo-25182 `__: The stdprinter (used " -#~ "as sys.stderr before the io module is imported at startup) now uses the " -#~ "backslashreplace error handler." - -#~ msgid "" -#~ "`bpo-25131 `__: Make the line number " -#~ "and column offset of set/dict literals and comprehensions correspond to " -#~ "the opening brace." -#~ msgstr "" -#~ "`bpo-25131 `__: Make the line number " -#~ "and column offset of set/dict literals and comprehensions correspond to " -#~ "the opening brace." - -#~ msgid "" -#~ "`bpo-25150 `__: Hide the private " -#~ "_Py_atomic_xxx symbols from the public Python.h header to fix a " -#~ "compilation error with OpenMP. PyThreadState_GET() becomes an alias to " -#~ "PyThreadState_Get() to avoid ABI incompatibilies." -#~ msgstr "" -#~ "`bpo-25150 `__: Hide the private " -#~ "_Py_atomic_xxx symbols from the public Python.h header to fix a " -#~ "compilation error with OpenMP. PyThreadState_GET() becomes an alias to " -#~ "PyThreadState_Get() to avoid ABI incompatibilies." - -#~ msgid "" -#~ "`bpo-25590 `__: In the Readline " -#~ "completer, only call getattr() once per attribute." -#~ msgstr "" -#~ "`bpo-25590 `__: In the Readline " -#~ "completer, only call getattr() once per attribute." - -#~ msgid "" -#~ "`bpo-24483 `__: C implementation of " -#~ "functools.lru_cache() now calculates key's hash only once." -#~ msgstr "" -#~ "`bpo-24483 `__: C implementation of " -#~ "functools.lru_cache() now calculates key's hash only once." - -#~ msgid "" -#~ "`bpo-22958 `__: Constructor and " -#~ "update method of weakref.WeakValueDictionary now accept the self and the " -#~ "dict keyword arguments." -#~ msgstr "" -#~ "`bpo-22958 `__: Constructor and " -#~ "update method of weakref.WeakValueDictionary now accept the self and the " -#~ "dict keyword arguments." - -#~ msgid "" -#~ "`bpo-22609 `__: Constructor of " -#~ "collections.UserDict now accepts the self keyword argument." -#~ msgstr "" -#~ "`bpo-22609 `__: Constructor of " -#~ "collections.UserDict now accepts the self keyword argument." - -#~ msgid "" -#~ "`bpo-25111 `__: Fixed comparison of " -#~ "traceback.FrameSummary." -#~ msgstr "" -#~ "`bpo-25111 `__: Fixed comparison of " -#~ "traceback.FrameSummary." - -#~ msgid "" -#~ "`bpo-25262 `__: Added support for " -#~ "BINBYTES8 opcode in Python implementation of unpickler. Highest 32 bits " -#~ "of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently " -#~ "ignored on 32-bit platforms in C implementation." -#~ msgstr "" -#~ "`bpo-25262 `__: Added support for " -#~ "BINBYTES8 opcode in Python implementation of unpickler. Highest 32 bits " -#~ "of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently " -#~ "ignored on 32-bit platforms in C implementation." - -#~ msgid "" -#~ "`bpo-25034 `__: Fix string.Formatter " -#~ "problem with auto-numbering and nested format_specs. Patch by Anthon van " -#~ "der Neut." -#~ msgstr "" -#~ "`bpo-25034 `__: Fix string.Formatter " -#~ "problem with auto-numbering and nested format_specs. Patch by Anthon van " -#~ "der Neut." - -#~ msgid "" -#~ "`bpo-25233 `__: Rewrite the guts of " -#~ "asyncio.Queue and asyncio.Semaphore to be more understandable and correct." -#~ msgstr "" -#~ "`bpo-25233 `__: Rewrite the guts of " -#~ "asyncio.Queue and asyncio.Semaphore to be more understandable and correct." - -#~ msgid "" -#~ "`bpo-23329 `__: Allow the ssl module " -#~ "to be built with older versions of LibreSSL." -#~ msgstr "" -#~ "`bpo-23329 `__: Allow the ssl module " -#~ "to be built with older versions of LibreSSL." - -#~ msgid "" -#~ "`bpo-25047 `__: The XML encoding " -#~ "declaration written by Element Tree now respects the letter case given by " -#~ "the user. This restores the ability to write encoding names in uppercase " -#~ "like \"UTF-8\", which worked in Python 2." -#~ msgstr "" -#~ "`bpo-25047 `__: The XML encoding " -#~ "declaration written by Element Tree now respects the letter case given by " -#~ "the user. This restores the ability to write encoding names in uppercase " -#~ "like \"UTF-8\", which worked in Python 2." - -#~ msgid "" -#~ "`bpo-25135 `__: Make deque_clear() " -#~ "safer by emptying the deque before clearing. This helps avoid possible " -#~ "reentrancy issues." -#~ msgstr "" -#~ "`bpo-25135 `__: Make deque_clear() " -#~ "safer by emptying the deque before clearing. This helps avoid possible " -#~ "reentrancy issues." - -#~ msgid "" -#~ "`bpo-19143 `__: platform module now " -#~ "reads Windows version from kernel32.dll to avoid compatibility shims." -#~ msgstr "" -#~ "`bpo-19143 `__: platform module now " -#~ "reads Windows version from kernel32.dll to avoid compatibility shims." - -#~ msgid "" -#~ "`bpo-25092 `__: Fix datetime." -#~ "strftime() failure when errno was already set to EINVAL." -#~ msgstr "" -#~ "`bpo-25092 `__: Fix datetime." -#~ "strftime() failure when errno was already set to EINVAL." - -#~ msgid "" -#~ "`bpo-23517 `__: Fix rounding in " -#~ "fromtimestamp() and utcfromtimestamp() methods of datetime.datetime: " -#~ "microseconds are now rounded to nearest with ties going to nearest even " -#~ "integer (ROUND_HALF_EVEN), instead of being rounding towards minus " -#~ "infinity (ROUND_FLOOR). It's important that these methods use the same " -#~ "rounding mode than datetime.timedelta to keep the property: " -#~ "(datetime(1970,1,1) + timedelta(seconds=t)) == datetime." -#~ "utcfromtimestamp(t). It also the rounding mode used by round(float) for " -#~ "example." -#~ msgstr "" -#~ "`bpo-23517 `__: Fix rounding in " -#~ "fromtimestamp() and utcfromtimestamp() methods of datetime.datetime: " -#~ "microseconds are now rounded to nearest with ties going to nearest even " -#~ "integer (ROUND_HALF_EVEN), instead of being rounding towards minus " -#~ "infinity (ROUND_FLOOR). It's important that these methods use the same " -#~ "rounding mode than datetime.timedelta to keep the property: " -#~ "(datetime(1970,1,1) + timedelta(seconds=t)) == datetime." -#~ "utcfromtimestamp(t). It also the rounding mode used by round(float) for " -#~ "example." - -#~ msgid "" -#~ "`bpo-25155 `__: Fix datetime.datetime." -#~ "now() and datetime.datetime.utcnow() on Windows to support date after " -#~ "year 2038. It was a regression introduced in Python 3.5.0." -#~ msgstr "" -#~ "`bpo-25155 `__: Fix datetime.datetime." -#~ "now() and datetime.datetime.utcnow() on Windows to support date after " -#~ "year 2038. It was a regression introduced in Python 3.5.0." - -#~ msgid "" -#~ "`bpo-25108 `__: Omitted internal " -#~ "frames in traceback functions print_stack(), format_stack(), and " -#~ "extract_stack() called without arguments." -#~ msgstr "" -#~ "`bpo-25108 `__: Omitted internal " -#~ "frames in traceback functions print_stack(), format_stack(), and " -#~ "extract_stack() called without arguments." - -#~ msgid "" -#~ "`bpo-25118 `__: Fix a regression of " -#~ "Python 3.5.0 in os.waitpid() on Windows." -#~ msgstr "" -#~ "`bpo-25118 `__: Fix a regression of " -#~ "Python 3.5.0 in os.waitpid() on Windows." - -#~ msgid "" -#~ "`bpo-24684 `__: socket.socket." -#~ "getaddrinfo() now calls PyUnicode_AsEncodedString() instead of calling " -#~ "the encode() method of the host, to handle correctly custom string with " -#~ "an encode() method which doesn't return a byte string. The encoder of the " -#~ "IDNA codec is now called directly instead of calling the encode() method " -#~ "of the string." -#~ msgstr "" -#~ "`bpo-24684 `__: socket.socket." -#~ "getaddrinfo() now calls PyUnicode_AsEncodedString() instead of calling " -#~ "the encode() method of the host, to handle correctly custom string with " -#~ "an encode() method which doesn't return a byte string. The encoder of the " -#~ "IDNA codec is now called directly instead of calling the encode() method " -#~ "of the string." - -#~ msgid "" -#~ "`bpo-25060 `__: Correctly compute " -#~ "stack usage of the BUILD_MAP opcode." -#~ msgstr "" -#~ "`bpo-25060 `__: Correctly compute " -#~ "stack usage of the BUILD_MAP opcode." - -#~ msgid "" -#~ "`bpo-24857 `__: Comparing call_args " -#~ "to a long sequence now correctly returns a boolean result instead of " -#~ "raising an exception. Patch by A Kaptur." -#~ msgstr "" -#~ "`bpo-24857 `__: Comparing call_args " -#~ "to a long sequence now correctly returns a boolean result instead of " -#~ "raising an exception. Patch by A Kaptur." - -#~ msgid "" -#~ "`bpo-23144 `__: Make sure that " -#~ "HTMLParser.feed() returns all the data, even when convert_charrefs is " -#~ "True." -#~ msgstr "" -#~ "`bpo-23144 `__: Make sure that " -#~ "HTMLParser.feed() returns all the data, even when convert_charrefs is " -#~ "True." - -#~ msgid "" -#~ "`bpo-24982 `__: shutil.make_archive() " -#~ "with the \"zip\" format now adds entries for directories (including empty " -#~ "directories) in ZIP file." -#~ msgstr "" -#~ "`bpo-24982 `__: shutil.make_archive() " -#~ "with the \"zip\" format now adds entries for directories (including empty " -#~ "directories) in ZIP file." - -#~ msgid "" -#~ "`bpo-25019 `__: Fixed a crash caused " -#~ "by setting non-string key of expat parser. Based on patch by John Leitch." -#~ msgstr "" -#~ "`bpo-25019 `__: Fixed a crash caused " -#~ "by setting non-string key of expat parser. Based on patch by John Leitch." - -#~ msgid "" -#~ "`bpo-16180 `__: Exit pdb if file has " -#~ "syntax error, instead of trapping user in an infinite loop. Patch by " -#~ "Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-16180 `__: Exit pdb if file has " -#~ "syntax error, instead of trapping user in an infinite loop. Patch by " -#~ "Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-24891 `__: Fix a race condition " -#~ "at Python startup if the file descriptor of stdin (0), stdout (1) or " -#~ "stderr (2) is closed while Python is creating sys.stdin, sys.stdout and " -#~ "sys.stderr objects. These attributes are now set to None if the creation " -#~ "of the object failed, instead of raising an OSError exception. Initial " -#~ "patch written by Marco Paolini." -#~ msgstr "" -#~ "`bpo-24891 `__: Fix a race condition " -#~ "at Python startup if the file descriptor of stdin (0), stdout (1) or " -#~ "stderr (2) is closed while Python is creating sys.stdin, sys.stdout and " -#~ "sys.stderr objects. These attributes are now set to None if the creation " -#~ "of the object failed, instead of raising an OSError exception. Initial " -#~ "patch written by Marco Paolini." - -#~ msgid "" -#~ "`bpo-24992 `__: Fix error handling " -#~ "and a race condition (related to garbage collection) in collections." -#~ "OrderedDict constructor." -#~ msgstr "" -#~ "`bpo-24992 `__: Fix error handling " -#~ "and a race condition (related to garbage collection) in collections." -#~ "OrderedDict constructor." - -#~ msgid "" -#~ "`bpo-24881 `__: Fixed setting binary " -#~ "mode in Python implementation of FileIO on Windows and Cygwin. Patch " -#~ "from Akira Li." -#~ msgstr "" -#~ "`bpo-24881 `__: Fixed setting binary " -#~ "mode in Python implementation of FileIO on Windows and Cygwin. Patch " -#~ "from Akira Li." - -#~ msgid "" -#~ "`bpo-21112 `__: Fix regression in " -#~ "unittest.expectedFailure on subclasses. Patch from Berker Peksag." -#~ msgstr "" -#~ "`bpo-21112 `__: Fix regression in " -#~ "unittest.expectedFailure on subclasses. Patch from Berker Peksag." - -#~ msgid "" -#~ "`bpo-24764 `__: cgi.FieldStorage." -#~ "read_multi() now ignores the Content-Length header in part headers. Patch " -#~ "written by Peter Landry and reviewed by Pierre Quentel." -#~ msgstr "" -#~ "`bpo-24764 `__: cgi.FieldStorage." -#~ "read_multi() now ignores the Content-Length header in part headers. Patch " -#~ "written by Peter Landry and reviewed by Pierre Quentel." - -#~ msgid "" -#~ "`bpo-24913 `__: Fix overrun error in " -#~ "deque.index(). Found by John Leitch and Bryce Darling." -#~ msgstr "" -#~ "`bpo-24913 `__: Fix overrun error in " -#~ "deque.index(). Found by John Leitch and Bryce Darling." - -#~ msgid "" -#~ "`bpo-24774 `__: Fix docstring in http." -#~ "server.test. Patch from Chiu-Hsiang Hsu." -#~ msgstr "" -#~ "`bpo-24774 `__: Fix docstring in http." -#~ "server.test. Patch from Chiu-Hsiang Hsu." - -#~ msgid "" -#~ "`bpo-21159 `__: Improve message in " -#~ "configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." -#~ msgstr "" -#~ "`bpo-21159 `__: Improve message in " -#~ "configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." - -#~ msgid "" -#~ "`bpo-20362 `__: Honour TestCase." -#~ "longMessage correctly in assertRegex. Patch from Ilia Kurenkov." -#~ msgstr "" -#~ "`bpo-20362 `__: Honour TestCase." -#~ "longMessage correctly in assertRegex. Patch from Ilia Kurenkov." - -#~ msgid "" -#~ "`bpo-23572 `__: Fixed functools." -#~ "singledispatch on classes with falsy metaclasses. Patch by Ethan Furman." -#~ msgstr "" -#~ "`bpo-23572 `__: Fixed functools." -#~ "singledispatch on classes with falsy metaclasses. Patch by Ethan Furman." - -#~ msgid "" -#~ "`bpo-16893 `__: Replace help.txt with " -#~ "help.html for Idle doc display. The new idlelib/help.html is rstripped " -#~ "Doc/build/html/library/idle.html. It looks better than help.txt and will " -#~ "better document Idle as released. The tkinter html viewer that works for " -#~ "this file was written by Mark Roseman. The now unused EditorWindow." -#~ "HelpDialog class and helt.txt file are deprecated." -#~ msgstr "" -#~ "`bpo-16893 `__: Replace help.txt with " -#~ "help.html for Idle doc display. The new idlelib/help.html is rstripped " -#~ "Doc/build/html/library/idle.html. It looks better than help.txt and will " -#~ "better document Idle as released. The tkinter html viewer that works for " -#~ "this file was written by Mark Roseman. The now unused EditorWindow." -#~ "HelpDialog class and helt.txt file are deprecated." - -#~ msgid "" -#~ "`bpo-12067 `__: Rewrite Comparisons " -#~ "section in the Expressions chapter of the language reference. Some of the " -#~ "details of comparing mixed types were incorrect or ambiguous. " -#~ "NotImplemented is only relevant at a lower level than the Expressions " -#~ "chapter. Added details of comparing range() objects, and default " -#~ "behaviour and consistency suggestions for user-defined classes. Patch " -#~ "from Andy Maier." -#~ msgstr "" -#~ "`bpo-12067 `__: Rewrite Comparisons " -#~ "section in the Expressions chapter of the language reference. Some of the " -#~ "details of comparing mixed types were incorrect or ambiguous. " -#~ "NotImplemented is only relevant at a lower level than the Expressions " -#~ "chapter. Added details of comparing range() objects, and default " -#~ "behaviour and consistency suggestions for user-defined classes. Patch " -#~ "from Andy Maier." - -#~ msgid "" -#~ "`bpo-23725 `__: Overhaul tempfile " -#~ "docs. Note deprecated status of mktemp. Patch from Zbigniew Jędrzejewski-" -#~ "Szmek." -#~ msgstr "" -#~ "`bpo-23725 `__: Overhaul tempfile " -#~ "docs. Note deprecated status of mktemp. Patch from Zbigniew Jędrzejewski-" -#~ "Szmek." - -#~ msgid "" -#~ "`bpo-24808 `__: Update the types of " -#~ "some PyTypeObject fields. Patch by Joseph Weston." -#~ msgstr "" -#~ "`bpo-24808 `__: Update the types of " -#~ "some PyTypeObject fields. Patch by Joseph Weston." - -#~ msgid "" -#~ "`bpo-22812 `__: Fix unittest " -#~ "discovery examples. Patch from Pam McA'Nulty." -#~ msgstr "" -#~ "`bpo-22812 `__: Fix unittest " -#~ "discovery examples. Patch from Pam McA'Nulty." - -#~ msgid "" -#~ "`bpo-25099 `__: Make test_compileall " -#~ "not fail when an entry on sys.path cannot be written to (commonly seen in " -#~ "administrative installs on Windows)." -#~ msgstr "" -#~ "`bpo-25099 `__: Make test_compileall " -#~ "not fail when an entry on sys.path cannot be written to (commonly seen in " -#~ "administrative installs on Windows)." - -#~ msgid "" -#~ "`bpo-23919 `__: Prevents assert " -#~ "dialogs appearing in the test suite." -#~ msgstr "" -#~ "`bpo-23919 `__: Prevents assert " -#~ "dialogs appearing in the test suite." - -#~ msgid "" -#~ "`bpo-24915 `__: Add LLVM support for " -#~ "PGO builds and use the test suite to generate the profile data. Initial " -#~ "patch by Alecsandru Patrascu of Intel." -#~ msgstr "" -#~ "`bpo-24915 `__: Add LLVM support for " -#~ "PGO builds and use the test suite to generate the profile data. Initial " -#~ "patch by Alecsandru Patrascu of Intel." - -#~ msgid "" -#~ "`bpo-24910 `__: Windows MSIs now have " -#~ "unique display names." -#~ msgstr "" -#~ "`bpo-24910 `__: Windows MSIs now have " -#~ "unique display names." - -#~ msgid "" -#~ "`bpo-25450 `__: Updates shortcuts to " -#~ "start Python in installation directory." -#~ msgstr "" -#~ "`bpo-25450 `__: Updates shortcuts to " -#~ "start Python in installation directory." - -#~ msgid "" -#~ "`bpo-25164 `__: Changes default all-" -#~ "users install directory to match per-user directory." -#~ msgstr "" -#~ "`bpo-25164 `__: Changes default all-" -#~ "users install directory to match per-user directory." - -#~ msgid "" -#~ "`bpo-25143 `__: Improves installer " -#~ "error messages for unsupported platforms." -#~ msgstr "" -#~ "`bpo-25143 `__: Improves installer " -#~ "error messages for unsupported platforms." - -#~ msgid "" -#~ "`bpo-25163 `__: Display correct " -#~ "directory in installer when using non-default settings." -#~ msgstr "" -#~ "`bpo-25163 `__: Display correct " -#~ "directory in installer when using non-default settings." - -#~ msgid "" -#~ "`bpo-25361 `__: Disables use of SSE2 " -#~ "instructions in Windows 32-bit build" -#~ msgstr "" -#~ "`bpo-25361 `__: Disables use of SSE2 " -#~ "instructions in Windows 32-bit build" - -#~ msgid "" -#~ "`bpo-25089 `__: Adds logging to " -#~ "installer for case where launcher is not selected on upgrade." -#~ msgstr "" -#~ "`bpo-25089 `__: Adds logging to " -#~ "installer for case where launcher is not selected on upgrade." - -#~ msgid "" -#~ "`bpo-25165 `__: Windows " -#~ "uninstallation should not remove launcher if other versions remain" -#~ msgstr "" -#~ "`bpo-25165 `__: Windows " -#~ "uninstallation should not remove launcher if other versions remain" - -#~ msgid "" -#~ "`bpo-25112 `__: py.exe launcher is " -#~ "missing icons" -#~ msgstr "" -#~ "`bpo-25112 `__: py.exe launcher is " -#~ "missing icons" - -#~ msgid "" -#~ "`bpo-25102 `__: Windows installer " -#~ "does not precompile for -O or -OO." -#~ msgstr "" -#~ "`bpo-25102 `__: Windows installer " -#~ "does not precompile for -O or -OO." - -#~ msgid "" -#~ "`bpo-25081 `__: Makes Back button in " -#~ "installer go back to upgrade page when upgrading." -#~ msgstr "" -#~ "`bpo-25081 `__: Makes Back button in " -#~ "installer go back to upgrade page when upgrading." - -#~ msgid "" -#~ "`bpo-25091 `__: Increases font size " -#~ "of the installer." -#~ msgstr "" -#~ "`bpo-25091 `__: Increases font size " -#~ "of the installer." - -#~ msgid "" -#~ "`bpo-25126 `__: Clarifies that the " -#~ "non-web installer will download some components." -#~ msgstr "" -#~ "`bpo-25126 `__: Clarifies that the " -#~ "non-web installer will download some components." - -#~ msgid "" -#~ "`bpo-25213 `__: Restores " -#~ "requestedExecutionLevel to manifest to disable UAC virtualization." -#~ msgstr "" -#~ "`bpo-25213 `__: Restores " -#~ "requestedExecutionLevel to manifest to disable UAC virtualization." - -#~ msgid "Python 3.5.0 final" -#~ msgstr "Python 3.5.0 final" - -#~ msgid "Release date: 2015-09-13" -#~ msgstr "Date de sortie : 2015-09-13" - -#~ msgid "" -#~ "`bpo-25071 `__: Windows installer " -#~ "should not require TargetDir parameter when installing quietly." -#~ msgstr "" -#~ "`bpo-25071 `__: Windows installer " -#~ "should not require TargetDir parameter when installing quietly." - -#~ msgid "Python 3.5.0 release candidate 4" -#~ msgstr "Python 3.5.0 release candidate 4" - -#~ msgid "Release date: 2015-09-09" -#~ msgstr "Date de sortie : 2015-09-09" - -#~ msgid "" -#~ "`bpo-25029 `__: Fixes MemoryError in " -#~ "test_strptime." -#~ msgstr "" -#~ "`bpo-25029 `__: Fixes MemoryError in " -#~ "test_strptime." - -#~ msgid "" -#~ "`bpo-25027 `__: Reverts partial-" -#~ "static build options and adds vcruntime140.dll to Windows installation." -#~ msgstr "" -#~ "`bpo-25027 `__: Reverts partial-" -#~ "static build options and adds vcruntime140.dll to Windows installation." - -#~ msgid "Python 3.5.0 release candidate 3" -#~ msgstr "Python 3.5.0 release candidate 3" - -#~ msgid "Release date: 2015-09-07" -#~ msgstr "Date de sortie : 2015-09-07" - -#~ msgid "" -#~ "`bpo-24305 `__: Prevent import " -#~ "subsystem stack frames from being counted by the warnings." -#~ "warn(stacklevel=) parameter." -#~ msgstr "" -#~ "`bpo-24305 `__: Prevent import " -#~ "subsystem stack frames from being counted by the warnings." -#~ "warn(stacklevel=) parameter." - -#~ msgid "" -#~ "`bpo-24912 `__: Prevent __class__ " -#~ "assignment to immutable built-in objects." -#~ msgstr "" -#~ "`bpo-24912 `__: Prevent __class__ " -#~ "assignment to immutable built-in objects." - -#~ msgid "" -#~ "`bpo-24975 `__: Fix AST compilation " -#~ "for PEP 448 syntax." -#~ msgstr "" -#~ "`bpo-24975 `__: Fix AST compilation " -#~ "for PEP 448 syntax." - -#~ msgid "" -#~ "`bpo-24917 `__: time_strftime() " -#~ "buffer over-read." -#~ msgstr "" -#~ "`bpo-24917 `__: time_strftime() " -#~ "buffer over-read." - -#~ msgid "" -#~ "`bpo-24748 `__: To resolve a " -#~ "compatibility problem found with py2exe and pywin32, imp.load_dynamic() " -#~ "once again ignores previously loaded modules to support Python modules " -#~ "replacing themselves with extension modules. Patch by Petr Viktorin." -#~ msgstr "" -#~ "`bpo-24748 `__: To resolve a " -#~ "compatibility problem found with py2exe and pywin32, imp.load_dynamic() " -#~ "once again ignores previously loaded modules to support Python modules " -#~ "replacing themselves with extension modules. Patch by Petr Viktorin." - -#~ msgid "" -#~ "`bpo-24635 `__: Fixed a bug in typing." -#~ "py where isinstance([], typing.Iterable) would return True once, then " -#~ "False on subsequent calls." -#~ msgstr "" -#~ "`bpo-24635 `__: Fixed a bug in typing." -#~ "py where isinstance([], typing.Iterable) would return True once, then " -#~ "False on subsequent calls." - -#~ msgid "" -#~ "`bpo-24989 `__: Fixed buffer overread " -#~ "in BytesIO.readline() if a position is set beyond size. Based on patch " -#~ "by John Leitch." -#~ msgstr "" -#~ "`bpo-24989 `__: Fixed buffer overread " -#~ "in BytesIO.readline() if a position is set beyond size. Based on patch " -#~ "by John Leitch." - -#~ msgid "Python 3.5.0 release candidate 2" -#~ msgstr "Python 3.5.0 release candidate 2" - -#~ msgid "Release date: 2015-08-25" -#~ msgstr "Date de sortie : 2015-08-25" - -#~ msgid "" -#~ "`bpo-24769 `__: Interpreter now " -#~ "starts properly when dynamic loading is disabled. Patch by Petr Viktorin." -#~ msgstr "" -#~ "`bpo-24769 `__: Interpreter now " -#~ "starts properly when dynamic loading is disabled. Patch by Petr Viktorin." - -#~ msgid "" -#~ "`bpo-21167 `__: NAN operations are " -#~ "now handled correctly when python is compiled with ICC even if -fp-model " -#~ "strict is not specified." -#~ msgstr "" -#~ "`bpo-21167 `__: NAN operations are " -#~ "now handled correctly when python is compiled with ICC even if -fp-model " -#~ "strict is not specified." - -#~ msgid "" -#~ "`bpo-24492 `__: A \"package\" lacking " -#~ "a __name__ attribute when trying to perform a ``from .. import ...`` " -#~ "statement will trigger an ImportError instead of an AttributeError." -#~ msgstr "" -#~ "`bpo-24492 `__: A \"package\" lacking " -#~ "a __name__ attribute when trying to perform a ``from .. import ...`` " -#~ "statement will trigger an ImportError instead of an AttributeError." - -#~ msgid "" -#~ "`bpo-24847 `__: Removes vcruntime140." -#~ "dll dependency from Tcl/Tk." -#~ msgstr "" -#~ "`bpo-24847 `__: Removes vcruntime140." -#~ "dll dependency from Tcl/Tk." - -#~ msgid "" -#~ "`bpo-24839 `__: platform._syscmd_ver " -#~ "raises DeprecationWarning" -#~ msgstr "" -#~ "`bpo-24839 `__: platform._syscmd_ver " -#~ "raises DeprecationWarning" - -#~ msgid "" -#~ "`bpo-24867 `__: Fix Task.get_stack() " -#~ "for 'async def' coroutines" -#~ msgstr "" -#~ "`bpo-24867 `__: Fix Task.get_stack() " -#~ "for 'async def' coroutines" - -#~ msgid "Python 3.5.0 release candidate 1" -#~ msgstr "Python 3.5.0 release candidate 1" - -#~ msgid "Release date: 2015-08-09" -#~ msgstr "Date de sortie : 2015-08-09" - -#~ msgid "" -#~ "`bpo-24667 `__: Resize odict in all " -#~ "cases that the underlying dict resizes." -#~ msgstr "" -#~ "`bpo-24667 `__: Resize odict in all " -#~ "cases that the underlying dict resizes." - -#~ msgid "" -#~ "`bpo-24824 `__: Signatures of codecs." -#~ "encode() and codecs.decode() now are compatible with pydoc." -#~ msgstr "" -#~ "`bpo-24824 `__: Signatures of codecs." -#~ "encode() and codecs.decode() now are compatible with pydoc." - -#~ msgid "" -#~ "`bpo-24634 `__: Importing uuid should " -#~ "not try to load libc on Windows" -#~ msgstr "" -#~ "`bpo-24634 `__: Importing uuid should " -#~ "not try to load libc on Windows" - -#~ msgid "" -#~ "`bpo-24798 `__: _msvccompiler.py " -#~ "doesn't properly support manifests" -#~ msgstr "" -#~ "`bpo-24798 `__: _msvccompiler.py " -#~ "doesn't properly support manifests" - -#~ msgid "" -#~ "`bpo-4395 `__: Better testing and " -#~ "documentation of binary operators. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-4395 `__: Better testing and " -#~ "documentation of binary operators. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-23973 `__: Update typing.py from " -#~ "GitHub repo." -#~ msgstr "" -#~ "`bpo-23973 `__: Update typing.py from " -#~ "GitHub repo." - -#~ msgid "" -#~ "`bpo-23004 `__: mock_open() now reads " -#~ "binary data correctly when the type of read_data is bytes. Initial patch " -#~ "by Aaron Hill." -#~ msgstr "" -#~ "`bpo-23004 `__: mock_open() now reads " -#~ "binary data correctly when the type of read_data is bytes. Initial patch " -#~ "by Aaron Hill." - -#~ msgid "" -#~ "`bpo-23888 `__: Handle fractional " -#~ "time in cookie expiry. Patch by ssh." -#~ msgstr "" -#~ "`bpo-23888 `__: Handle fractional " -#~ "time in cookie expiry. Patch by ssh." - -#~ msgid "" -#~ "`bpo-23652 `__: Make it possible to " -#~ "compile the select module against the libc headers from the Linux " -#~ "Standard Base, which do not include some EPOLL macros. Patch by Matt " -#~ "Frank." -#~ msgstr "" -#~ "`bpo-23652 `__: Make it possible to " -#~ "compile the select module against the libc headers from the Linux " -#~ "Standard Base, which do not include some EPOLL macros. Patch by Matt " -#~ "Frank." - -#~ msgid "" -#~ "`bpo-22932 `__: Fix timezones in " -#~ "email.utils.formatdate. Patch from Dmitry Shachnev." -#~ msgstr "" -#~ "`bpo-22932 `__: Fix timezones in " -#~ "email.utils.formatdate. Patch from Dmitry Shachnev." - -#~ msgid "" -#~ "`bpo-23779 `__: imaplib raises " -#~ "TypeError if authenticator tries to abort. Patch from Craig Holmquist." -#~ msgstr "" -#~ "`bpo-23779 `__: imaplib raises " -#~ "TypeError if authenticator tries to abort. Patch from Craig Holmquist." - -#~ msgid "" -#~ "`bpo-23319 `__: Fix ctypes." -#~ "BigEndianStructure, swap correctly bytes. Patch written by Matthieu " -#~ "Gautier." -#~ msgstr "" -#~ "`bpo-23319 `__: Fix ctypes." -#~ "BigEndianStructure, swap correctly bytes. Patch written by Matthieu " -#~ "Gautier." - -#~ msgid "" -#~ "`bpo-23254 `__: Document how to close " -#~ "the TCPServer listening socket. Patch from Martin Panter." -#~ msgstr "" -#~ "`bpo-23254 `__: Document how to close " -#~ "the TCPServer listening socket. Patch from Martin Panter." - -#~ msgid "" -#~ "`bpo-19450 `__: Update Windows and OS " -#~ "X installer builds to use SQLite 3.8.11." -#~ msgstr "" -#~ "`bpo-19450 `__: Update Windows and OS " -#~ "X installer builds to use SQLite 3.8.11." - -#~ msgid "" -#~ "`bpo-17527 `__: Add PATCH to wsgiref." -#~ "validator. Patch from Luca Sbardella." -#~ msgstr "" -#~ "`bpo-17527 `__: Add PATCH to wsgiref." -#~ "validator. Patch from Luca Sbardella." - -#~ msgid "" -#~ "`bpo-24791 `__: Fix grammar " -#~ "regression for call syntax: 'g(\\*a or b)'." -#~ msgstr "" -#~ "`bpo-24791 `__: Fix grammar " -#~ "regression for call syntax: 'g(\\*a or b)'." - -#~ msgid "" -#~ "`bpo-23672 `__: Allow Idle to edit " -#~ "and run files with astral chars in name. Patch by Mohd Sanad Zaki Rizvi." -#~ msgstr "" -#~ "`bpo-23672 `__: Allow Idle to edit " -#~ "and run files with astral chars in name. Patch by Mohd Sanad Zaki Rizvi." - -#~ msgid "" -#~ "`bpo-24745 `__: Idle editor default " -#~ "font. Switch from Courier to platform-sensitive TkFixedFont. This should " -#~ "not affect current customized font selections. If there is a problem, " -#~ "edit $HOME/.idlerc/config-main.cfg and remove 'fontxxx' entries from " -#~ "[Editor Window]. Patch by Mark Roseman." -#~ msgstr "" -#~ "`bpo-24745 `__: Idle editor default " -#~ "font. Switch from Courier to platform-sensitive TkFixedFont. This should " -#~ "not affect current customized font selections. If there is a problem, " -#~ "edit $HOME/.idlerc/config-main.cfg and remove 'fontxxx' entries from " -#~ "[Editor Window]. Patch by Mark Roseman." - -#~ msgid "" -#~ "`bpo-21192 `__: Idle editor. When a " -#~ "file is run, put its name in the restart bar. Do not print false prompts. " -#~ "Original patch by Adnan Umer." -#~ msgstr "" -#~ "`bpo-21192 `__: Idle editor. When a " -#~ "file is run, put its name in the restart bar. Do not print false prompts. " -#~ "Original patch by Adnan Umer." - -#~ msgid "" -#~ "`bpo-13884 `__: Idle menus. Remove " -#~ "tearoff lines. Patch by Roger Serwy." -#~ msgstr "" -#~ "`bpo-13884 `__: Idle menus. Remove " -#~ "tearoff lines. Patch by Roger Serwy." - -#~ msgid "" -#~ "`bpo-24129 `__: Clarify the reference " -#~ "documentation for name resolution. This includes removing the assumption " -#~ "that readers will be familiar with the name resolution scheme Python used " -#~ "prior to the introduction of lexical scoping for function namespaces. " -#~ "Patch by Ivan Levkivskyi." -#~ msgstr "" -#~ "`bpo-24129 `__: Clarify the reference " -#~ "documentation for name resolution. This includes removing the assumption " -#~ "that readers will be familiar with the name resolution scheme Python used " -#~ "prior to the introduction of lexical scoping for function namespaces. " -#~ "Patch by Ivan Levkivskyi." - -#~ msgid "" -#~ "`bpo-20769 `__: Improve reload() " -#~ "docs. Patch by Dorian Pula." -#~ msgstr "" -#~ "`bpo-20769 `__: Improve reload() " -#~ "docs. Patch by Dorian Pula." - -#~ msgid "" -#~ "`bpo-23589 `__: Remove duplicate " -#~ "sentence from the FAQ. Patch by Yongzhi Pan." -#~ msgstr "" -#~ "`bpo-23589 `__: Remove duplicate " -#~ "sentence from the FAQ. Patch by Yongzhi Pan." - -#~ msgid "" -#~ "`bpo-24729 `__: Correct IO tutorial " -#~ "to match implementation regarding encoding parameter to open function." -#~ msgstr "" -#~ "`bpo-24729 `__: Correct IO tutorial " -#~ "to match implementation regarding encoding parameter to open function." - -#~ msgid "" -#~ "`bpo-24751 `__: When running regrtest " -#~ "with the ``-w`` command line option, a test run is no longer marked as a " -#~ "failure if all tests succeed when re-run." -#~ msgstr "" -#~ "`bpo-24751 `__: When running regrtest " -#~ "with the ``-w`` command line option, a test run is no longer marked as a " -#~ "failure if all tests succeed when re-run." - -#~ msgid "Python 3.5.0 beta 4" -#~ msgstr "Python 3.5.0 beta 4" - -#~ msgid "Release date: 2015-07-26" -#~ msgstr "Date de sortie : 2015-07-26" - -#~ msgid "" -#~ "`bpo-23573 `__: Restored optimization " -#~ "of bytes.rfind() and bytearray.rfind() for single-byte argument on Linux." -#~ msgstr "" -#~ "`bpo-23573 `__: Restored optimization " -#~ "of bytes.rfind() and bytearray.rfind() for single-byte argument on Linux." - -#~ msgid "" -#~ "`bpo-24569 `__: Make PEP 448 " -#~ "dictionary evaluation more consistent." -#~ msgstr "" -#~ "`bpo-24569 `__: Make PEP 448 " -#~ "dictionary evaluation more consistent." - -#~ msgid "" -#~ "`bpo-24583 `__: Fix crash when set is " -#~ "mutated while being updated." -#~ msgstr "" -#~ "`bpo-24583 `__: Fix crash when set is " -#~ "mutated while being updated." - -#~ msgid "" -#~ "`bpo-24407 `__: Fix crash when dict " -#~ "is mutated while being updated." -#~ msgstr "" -#~ "`bpo-24407 `__: Fix crash when dict " -#~ "is mutated while being updated." - -#~ msgid "" -#~ "`bpo-24619 `__: New approach for " -#~ "tokenizing async/await. As a consequence, it is now possible to have one-" -#~ "line 'async def foo(): await ..' functions." -#~ msgstr "" -#~ "`bpo-24619 `__: New approach for " -#~ "tokenizing async/await. As a consequence, it is now possible to have one-" -#~ "line 'async def foo(): await ..' functions." - -#~ msgid "" -#~ "`bpo-24687 `__: Plug refleak on " -#~ "SyntaxError in function parameters annotations." -#~ msgstr "" -#~ "`bpo-24687 `__: Plug refleak on " -#~ "SyntaxError in function parameters annotations." - -#~ msgid "" -#~ "`bpo-15944 `__: memoryview: Allow " -#~ "arbitrary formats when casting to bytes. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-15944 `__: memoryview: Allow " -#~ "arbitrary formats when casting to bytes. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-23441 `__: rcompleter now prints " -#~ "a tab character instead of displaying possible completions for an empty " -#~ "word. Initial patch by Martin Sekera." -#~ msgstr "" -#~ "`bpo-23441 `__: rcompleter now prints " -#~ "a tab character instead of displaying possible completions for an empty " -#~ "word. Initial patch by Martin Sekera." - -#~ msgid "" -#~ "`bpo-24683 `__: Fixed crashes in " -#~ "_json functions called with arguments of inappropriate type." -#~ msgstr "" -#~ "`bpo-24683 `__: Fixed crashes in " -#~ "_json functions called with arguments of inappropriate type." - -#~ msgid "" -#~ "`bpo-21697 `__: shutil.copytree() now " -#~ "correctly handles symbolic links that point to directories. Patch by " -#~ "Eduardo Seabra and Thomas Kluyver." -#~ msgstr "" -#~ "`bpo-21697 `__: shutil.copytree() now " -#~ "correctly handles symbolic links that point to directories. Patch by " -#~ "Eduardo Seabra and Thomas Kluyver." - -#~ msgid "" -#~ "`bpo-14373 `__: Fixed segmentation " -#~ "fault when gc.collect() is called during constructing lru_cache (C " -#~ "implementation)." -#~ msgstr "" -#~ "`bpo-14373 `__: Fixed segmentation " -#~ "fault when gc.collect() is called during constructing lru_cache (C " -#~ "implementation)." - -#~ msgid "" -#~ "`bpo-24695 `__: Fix a regression in " -#~ "traceback.print_exception(). If exc_traceback is None we shouldn't print " -#~ "a traceback header like described in the documentation." -#~ msgstr "" -#~ "`bpo-24695 `__: Fix a regression in " -#~ "traceback.print_exception(). If exc_traceback is None we shouldn't print " -#~ "a traceback header like described in the documentation." - -#~ msgid "" -#~ "`bpo-24620 `__: Random.setstate() now " -#~ "validates the value of state last element." -#~ msgstr "" -#~ "`bpo-24620 `__: Random.setstate() now " -#~ "validates the value of state last element." - -#~ msgid "" -#~ "`bpo-22485 `__: Fixed an issue that " -#~ "caused `inspect.getsource` to return incorrect results on nested " -#~ "functions." -#~ msgstr "" -#~ "`bpo-22485 `__: Fixed an issue that " -#~ "caused `inspect.getsource` to return incorrect results on nested " -#~ "functions." - -#~ msgid "" -#~ "`bpo-22153 `__: Improve unittest " -#~ "docs. Patch from Martin Panter and evilzero." -#~ msgstr "" -#~ "`bpo-22153 `__: Improve unittest " -#~ "docs. Patch from Martin Panter and evilzero." - -#~ msgid "" -#~ "`bpo-24580 `__: Symbolic group " -#~ "references to open group in re patterns now are explicitly forbidden as " -#~ "well as numeric group references." -#~ msgstr "" -#~ "`bpo-24580 `__: Symbolic group " -#~ "references to open group in re patterns now are explicitly forbidden as " -#~ "well as numeric group references." - -#~ msgid "" -#~ "`bpo-24206 `__: Fixed __eq__ and " -#~ "__ne__ methods of inspect classes." -#~ msgstr "" -#~ "`bpo-24206 `__: Fixed __eq__ and " -#~ "__ne__ methods of inspect classes." - -#~ msgid "" -#~ "`bpo-24631 `__: Fixed regression in " -#~ "the timeit module with multiline setup." -#~ msgstr "" -#~ "`bpo-24631 `__: Fixed regression in " -#~ "the timeit module with multiline setup." - -#~ msgid "" -#~ "`bpo-24608 `__: chunk.Chunk.read() " -#~ "now always returns bytes, not str." -#~ msgstr "" -#~ "`bpo-24608 `__: chunk.Chunk.read() " -#~ "now always returns bytes, not str." - -#~ msgid "" -#~ "`bpo-18684 `__: Fixed reading out of " -#~ "the buffer in the re module." -#~ msgstr "" -#~ "`bpo-18684 `__: Fixed reading out of " -#~ "the buffer in the re module." - -#~ msgid "" -#~ "`bpo-24259 `__: tarfile now raises a " -#~ "ReadError if an archive is truncated inside a data segment." -#~ msgstr "" -#~ "`bpo-24259 `__: tarfile now raises a " -#~ "ReadError if an archive is truncated inside a data segment." - -#~ msgid "" -#~ "`bpo-15014 `__: SMTP.auth() and SMTP." -#~ "login() now support RFC 4954's optional initial-response argument to the " -#~ "SMTP AUTH command." -#~ msgstr "" -#~ "`bpo-15014 `__: SMTP.auth() and SMTP." -#~ "login() now support RFC 4954's optional initial-response argument to the " -#~ "SMTP AUTH command." - -#~ msgid "" -#~ "`bpo-24669 `__: Fix inspect." -#~ "getsource() for 'async def' functions. Patch by Kai Groner." -#~ msgstr "" -#~ "`bpo-24669 `__: Fix inspect." -#~ "getsource() for 'async def' functions. Patch by Kai Groner." - -#~ msgid "" -#~ "`bpo-24688 `__: ast.get_docstring() " -#~ "for 'async def' functions." -#~ msgstr "" -#~ "`bpo-24688 `__: ast.get_docstring() " -#~ "for 'async def' functions." - -#~ msgid "" -#~ "`bpo-24603 `__: Update Windows builds " -#~ "and OS X 10.5 installer to use OpenSSL 1.0.2d." -#~ msgstr "" -#~ "`bpo-24603 `__: Update Windows builds " -#~ "and OS X 10.5 installer to use OpenSSL 1.0.2d." - -#~ msgid "Python 3.5.0 beta 3" -#~ msgstr "Python 3.5.0 beta 3" - -#~ msgid "Release date: 2015-07-05" -#~ msgstr "Date de sortie : 2015-07-05" - -#~ msgid "" -#~ "`bpo-24467 `__: Fixed possible buffer " -#~ "over-read in bytearray. The bytearray object now always allocates place " -#~ "for trailing null byte and it's buffer now is always null-terminated." -#~ msgstr "" -#~ "`bpo-24467 `__: Fixed possible buffer " -#~ "over-read in bytearray. The bytearray object now always allocates place " -#~ "for trailing null byte and it's buffer now is always null-terminated." - -#~ msgid "Upgrade to Unicode 8.0.0." -#~ msgstr "Upgrade to Unicode 8.0.0." - -#~ msgid "" -#~ "`bpo-24345 `__: Add Py_tp_finalize " -#~ "slot for the stable ABI." -#~ msgstr "" -#~ "`bpo-24345 `__: Add Py_tp_finalize " -#~ "slot for the stable ABI." - -#~ msgid "" -#~ "`bpo-24400 `__: Introduce a distinct " -#~ "type for PEP 492 coroutines; add types.CoroutineType, inspect." -#~ "getcoroutinestate, inspect.getcoroutinelocals; coroutines no longer use " -#~ "CO_GENERATOR flag; sys.set_coroutine_wrapper works only for 'async def' " -#~ "coroutines; inspect.iscoroutine no longer uses collections.abc.Coroutine, " -#~ "it's intended to test for pure 'async def' coroutines only; add new " -#~ "opcode: GET_YIELD_FROM_ITER; fix generators wrapper used in types." -#~ "coroutine to be instance of collections.abc.Generator; collections.abc." -#~ "Awaitable and collections.abc.Coroutine can no longer be used to detect " -#~ "generator-based coroutines--use inspect.isawaitable instead." -#~ msgstr "" -#~ "`bpo-24400 `__: Introduce a distinct " -#~ "type for PEP 492 coroutines; add types.CoroutineType, inspect." -#~ "getcoroutinestate, inspect.getcoroutinelocals; coroutines no longer use " -#~ "CO_GENERATOR flag; sys.set_coroutine_wrapper works only for 'async def' " -#~ "coroutines; inspect.iscoroutine no longer uses collections.abc.Coroutine, " -#~ "it's intended to test for pure 'async def' coroutines only; add new " -#~ "opcode: GET_YIELD_FROM_ITER; fix generators wrapper used in types." -#~ "coroutine to be instance of collections.abc.Generator; collections.abc." -#~ "Awaitable and collections.abc.Coroutine can no longer be used to detect " -#~ "generator-based coroutines--use inspect.isawaitable instead." - -#~ msgid "" -#~ "`bpo-24450 `__: Add gi_yieldfrom to " -#~ "generators and cr_await to coroutines. Contributed by Benno Leslie and " -#~ "Yury Selivanov." -#~ msgstr "" -#~ "`bpo-24450 `__: Add gi_yieldfrom to " -#~ "generators and cr_await to coroutines. Contributed by Benno Leslie and " -#~ "Yury Selivanov." - -#~ msgid "" -#~ "`bpo-19235 `__: Add new " -#~ "RecursionError exception. Patch by Georg Brandl." -#~ msgstr "" -#~ "`bpo-19235 `__: Add new " -#~ "RecursionError exception. Patch by Georg Brandl." - -#~ msgid "" -#~ "`bpo-21750 `__: mock_open.read_data " -#~ "can now be read from each instance, as it could in Python 3.3." -#~ msgstr "" -#~ "`bpo-21750 `__: mock_open.read_data " -#~ "can now be read from each instance, as it could in Python 3.3." - -#~ msgid "" -#~ "`bpo-24552 `__: Fix use after free in " -#~ "an error case of the _pickle module." -#~ msgstr "" -#~ "`bpo-24552 `__: Fix use after free in " -#~ "an error case of the _pickle module." - -#~ msgid "" -#~ "`bpo-24514 `__: tarfile now tolerates " -#~ "number fields consisting of only whitespace." -#~ msgstr "" -#~ "`bpo-24514 `__: tarfile now tolerates " -#~ "number fields consisting of only whitespace." - -#~ msgid "" -#~ "`bpo-19176 `__: Fixed doctype() " -#~ "related bugs in C implementation of ElementTree. A deprecation warning no " -#~ "longer issued by XMLParser subclass with default doctype() method. " -#~ "Direct call of doctype() now issues a warning. Parser's doctype() now is " -#~ "not called if target's doctype() is called. Based on patch by Martin " -#~ "Panter." -#~ msgstr "" -#~ "`bpo-19176 `__: Fixed doctype() " -#~ "related bugs in C implementation of ElementTree. A deprecation warning no " -#~ "longer issued by XMLParser subclass with default doctype() method. " -#~ "Direct call of doctype() now issues a warning. Parser's doctype() now is " -#~ "not called if target's doctype() is called. Based on patch by Martin " -#~ "Panter." - -#~ msgid "" -#~ "`bpo-20387 `__: Restore semantic " -#~ "round-trip correctness in tokenize/untokenize for tab-indented blocks." -#~ msgstr "" -#~ "`bpo-20387 `__: Restore semantic " -#~ "round-trip correctness in tokenize/untokenize for tab-indented blocks." - -#~ msgid "" -#~ "`bpo-24456 `__: Fixed possible buffer " -#~ "over-read in adpcm2lin() and lin2adpcm() functions of the audioop module." -#~ msgstr "" -#~ "`bpo-24456 `__: Fixed possible buffer " -#~ "over-read in adpcm2lin() and lin2adpcm() functions of the audioop module." - -#~ msgid "" -#~ "`bpo-24336 `__: The contextmanager " -#~ "decorator now works with functions with keyword arguments called \"func\" " -#~ "and \"self\". Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-24336 `__: The contextmanager " -#~ "decorator now works with functions with keyword arguments called \"func\" " -#~ "and \"self\". Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-24522 `__: Fix possible integer " -#~ "overflow in json accelerator module." -#~ msgstr "" -#~ "`bpo-24522 `__: Fix possible integer " -#~ "overflow in json accelerator module." - -#~ msgid "" -#~ "`bpo-24489 `__: ensure a previously " -#~ "set C errno doesn't disturb cmath.polar()." -#~ msgstr "" -#~ "`bpo-24489 `__: ensure a previously " -#~ "set C errno doesn't disturb cmath.polar()." - -#~ msgid "" -#~ "`bpo-24408 `__: Fixed AttributeError " -#~ "in measure() and metrics() methods of tkinter.Font." -#~ msgstr "" -#~ "`bpo-24408 `__: Fixed AttributeError " -#~ "in measure() and metrics() methods of tkinter.Font." - -#~ msgid "" -#~ "`bpo-14373 `__: C implementation of " -#~ "functools.lru_cache() now can be used with methods." -#~ msgstr "" -#~ "`bpo-14373 `__: C implementation of " -#~ "functools.lru_cache() now can be used with methods." - -#~ msgid "" -#~ "`bpo-24347 `__: Set KeyError if " -#~ "PyDict_GetItemWithError returns NULL." -#~ msgstr "" -#~ "`bpo-24347 `__: Set KeyError if " -#~ "PyDict_GetItemWithError returns NULL." - -#~ msgid "" -#~ "`bpo-24348 `__: Drop superfluous " -#~ "incref/decref." -#~ msgstr "" -#~ "`bpo-24348 `__: Drop superfluous " -#~ "incref/decref." - -#~ msgid "" -#~ "`bpo-24359 `__: Check for changed " -#~ "OrderedDict size during iteration." -#~ msgstr "" -#~ "`bpo-24359 `__: Check for changed " -#~ "OrderedDict size during iteration." - -#~ msgid "" -#~ "`bpo-24368 `__: Support keyword " -#~ "arguments in OrderedDict methods." -#~ msgstr "" -#~ "`bpo-24368 `__: Support keyword " -#~ "arguments in OrderedDict methods." - -#~ msgid "" -#~ "`bpo-24362 `__: Simplify the C " -#~ "OrderedDict fast nodes resize logic." -#~ msgstr "" -#~ "`bpo-24362 `__: Simplify the C " -#~ "OrderedDict fast nodes resize logic." - -#~ msgid "" -#~ "`bpo-24377 `__: Fix a ref leak in " -#~ "OrderedDict.__repr__." -#~ msgstr "" -#~ "`bpo-24377 `__: Fix a ref leak in " -#~ "OrderedDict.__repr__." - -#~ msgid "" -#~ "`bpo-24369 `__: Defend against key-" -#~ "changes during iteration." -#~ msgstr "" -#~ "`bpo-24369 `__: Defend against key-" -#~ "changes during iteration." - -#~ msgid "" -#~ "`bpo-24373 `__: _testmultiphase and " -#~ "xxlimited now use tp_traverse and tp_finalize to avoid reference leaks " -#~ "encountered when combining tp_dealloc with PyType_FromSpec (see " -#~ "`bpo-16690 `__ for details)" -#~ msgstr "" -#~ "`bpo-24373 `__: _testmultiphase and " -#~ "xxlimited now use tp_traverse and tp_finalize to avoid reference leaks " -#~ "encountered when combining tp_dealloc with PyType_FromSpec (see " -#~ "`bpo-16690 `__ for details)" - -#~ msgid "" -#~ "`bpo-24458 `__: Update documentation " -#~ "to cover multi-phase initialization for extension modules (PEP 489). " -#~ "Patch by Petr Viktorin." -#~ msgstr "" -#~ "`bpo-24458 `__: Update documentation " -#~ "to cover multi-phase initialization for extension modules (PEP 489). " -#~ "Patch by Petr Viktorin." - -#~ msgid "" -#~ "`bpo-24351 `__: Clarify what is meant " -#~ "by \"identifier\" in the context of string.Template instances." -#~ msgstr "" -#~ "`bpo-24351 `__: Clarify what is meant " -#~ "by \"identifier\" in the context of string.Template instances." - -#~ msgid "" -#~ "`bpo-24432 `__: Update Windows builds " -#~ "and OS X 10.5 installer to use OpenSSL 1.0.2c." -#~ msgstr "" -#~ "`bpo-24432 `__: Update Windows builds " -#~ "and OS X 10.5 installer to use OpenSSL 1.0.2c." - -#~ msgid "Python 3.5.0 beta 2" -#~ msgstr "Python 3.5.0 beta 2" - -#~ msgid "Release date: 2015-05-31" -#~ msgstr "Date de sortie : 2015-05-31" - -#~ msgid "" -#~ "`bpo-24284 `__: The startswith and " -#~ "endswith methods of the str class no longer return True when finding the " -#~ "empty string and the indexes are completely out of range." -#~ msgstr "" -#~ "`bpo-24284 `__: The startswith and " -#~ "endswith methods of the str class no longer return True when finding the " -#~ "empty string and the indexes are completely out of range." - -#~ msgid "" -#~ "`bpo-24115 `__: Update uses of " -#~ "PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(), " -#~ "PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle " -#~ "errors correctly." -#~ msgstr "" -#~ "`bpo-24115 `__: Update uses of " -#~ "PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(), " -#~ "PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle " -#~ "errors correctly." - -#~ msgid "" -#~ "`bpo-24328 `__: Fix importing one " -#~ "character extension modules." -#~ msgstr "" -#~ "`bpo-24328 `__: Fix importing one " -#~ "character extension modules." - -#~ msgid "" -#~ "`bpo-11205 `__: In dictionary " -#~ "displays, evaluate the key before the value." -#~ msgstr "" -#~ "`bpo-11205 `__: In dictionary " -#~ "displays, evaluate the key before the value." - -#~ msgid "" -#~ "`bpo-24285 `__: Fixed regression that " -#~ "prevented importing extension modules from inside packages. Patch by Petr " -#~ "Viktorin." -#~ msgstr "" -#~ "`bpo-24285 `__: Fixed regression that " -#~ "prevented importing extension modules from inside packages. Patch by Petr " -#~ "Viktorin." - -#~ msgid "" -#~ "`bpo-23247 `__: Fix a crash in the " -#~ "StreamWriter.reset() of CJK codecs." -#~ msgstr "" -#~ "`bpo-23247 `__: Fix a crash in the " -#~ "StreamWriter.reset() of CJK codecs." - -#~ msgid "" -#~ "`bpo-24270 `__: Add math.isclose() " -#~ "and cmath.isclose() functions as per PEP 485. Contributed by Chris Barker " -#~ "and Tal Einat." -#~ msgstr "" -#~ "`bpo-24270 `__: Add math.isclose() " -#~ "and cmath.isclose() functions as per PEP 485. Contributed by Chris Barker " -#~ "and Tal Einat." - -#~ msgid "" -#~ "`bpo-5633 `__: Fixed timeit when the " -#~ "statement is a string and the setup is not." -#~ msgstr "" -#~ "`bpo-5633 `__: Fixed timeit when the " -#~ "statement is a string and the setup is not." - -#~ msgid "" -#~ "`bpo-24326 `__: Fixed audioop." -#~ "ratecv() with non-default weightB argument. Original patch by David Moore." -#~ msgstr "" -#~ "`bpo-24326 `__: Fixed audioop." -#~ "ratecv() with non-default weightB argument. Original patch by David Moore." - -#~ msgid "" -#~ "`bpo-16991 `__: Add a C " -#~ "implementation of OrderedDict." -#~ msgstr "" -#~ "`bpo-16991 `__: Add a C " -#~ "implementation of OrderedDict." - -#~ msgid "" -#~ "`bpo-23934 `__: Fix inspect.signature " -#~ "to fail correctly for builtin types lacking signature information. " -#~ "Initial patch by James Powell." -#~ msgstr "" -#~ "`bpo-23934 `__: Fix inspect.signature " -#~ "to fail correctly for builtin types lacking signature information. " -#~ "Initial patch by James Powell." - -#~ msgid "Python 3.5.0 beta 1" -#~ msgstr "Python 3.5.0 beta 1" - -#~ msgid "Release date: 2015-05-24" -#~ msgstr "Date de sortie : 2015-05-24" - -#~ msgid "" -#~ "`bpo-24276 `__: Fixed optimization of " -#~ "property descriptor getter." -#~ msgstr "" -#~ "`bpo-24276 `__: Fixed optimization of " -#~ "property descriptor getter." - -#~ msgid "" -#~ "`bpo-24268 `__: PEP 489: Multi-phase " -#~ "extension module initialization. Patch by Petr Viktorin." -#~ msgstr "" -#~ "`bpo-24268 `__: PEP 489: Multi-phase " -#~ "extension module initialization. Patch by Petr Viktorin." - -#~ msgid "" -#~ "`bpo-23955 `__: Add pyvenv.cfg option " -#~ "to suppress registry/environment lookup for generating sys.path on " -#~ "Windows." -#~ msgstr "" -#~ "`bpo-23955 `__: Add pyvenv.cfg option " -#~ "to suppress registry/environment lookup for generating sys.path on " -#~ "Windows." - -#~ msgid "" -#~ "`bpo-24257 `__: Fixed system error in " -#~ "the comparison of faked types.SimpleNamespace." -#~ msgstr "" -#~ "`bpo-24257 `__: Fixed system error in " -#~ "the comparison of faked types.SimpleNamespace." - -#~ msgid "" -#~ "`bpo-22939 `__: Fixed integer " -#~ "overflow in iterator object. Patch by Clement Rouault." -#~ msgstr "" -#~ "`bpo-22939 `__: Fixed integer " -#~ "overflow in iterator object. Patch by Clement Rouault." - -#~ msgid "" -#~ "`bpo-23985 `__: Fix a possible buffer " -#~ "overrun when deleting a slice from the front of a bytearray and then " -#~ "appending some other bytes data." -#~ msgstr "" -#~ "`bpo-23985 `__: Fix a possible buffer " -#~ "overrun when deleting a slice from the front of a bytearray and then " -#~ "appending some other bytes data." - -#~ msgid "" -#~ "`bpo-24102 `__: Fixed exception type " -#~ "checking in standard error handlers." -#~ msgstr "" -#~ "`bpo-24102 `__: Fixed exception type " -#~ "checking in standard error handlers." - -#~ msgid "" -#~ "`bpo-15027 `__: The UTF-32 encoder is " -#~ "now 3x to 7x faster." -#~ msgstr "" -#~ "`bpo-15027 `__: The UTF-32 encoder is " -#~ "now 3x to 7x faster." - -#~ msgid "" -#~ "`bpo-23290 `__: Optimize set_merge() " -#~ "for cases where the target is empty. (Contributed by Serhiy Storchaka.)" -#~ msgstr "" -#~ "`bpo-23290 `__: Optimize set_merge() " -#~ "for cases where the target is empty. (Contributed by Serhiy Storchaka.)" - -#~ msgid "" -#~ "`bpo-2292 `__: PEP 448: Additional " -#~ "Unpacking Generalizations." -#~ msgstr "" -#~ "`bpo-2292 `__: PEP 448: Additional " -#~ "Unpacking Generalizations." - -#~ msgid "" -#~ "`bpo-24096 `__: Make warnings." -#~ "warn_explicit more robust against mutation of the warnings.filters list." -#~ msgstr "" -#~ "`bpo-24096 `__: Make warnings." -#~ "warn_explicit more robust against mutation of the warnings.filters list." - -#~ msgid "" -#~ "`bpo-23996 `__: Avoid a crash when a " -#~ "delegated generator raises an unnormalized StopIteration exception. " -#~ "Patch by Stefan Behnel." -#~ msgstr "" -#~ "`bpo-23996 `__: Avoid a crash when a " -#~ "delegated generator raises an unnormalized StopIteration exception. " -#~ "Patch by Stefan Behnel." - -#~ msgid "" -#~ "`bpo-23910 `__: Optimize property() " -#~ "getter calls. Patch by Joe Jevnik." -#~ msgstr "" -#~ "`bpo-23910 `__: Optimize property() " -#~ "getter calls. Patch by Joe Jevnik." - -#~ msgid "" -#~ "`bpo-23911 `__: Move path-based " -#~ "importlib bootstrap code to a separate frozen module." -#~ msgstr "" -#~ "`bpo-23911 `__: Move path-based " -#~ "importlib bootstrap code to a separate frozen module." - -#~ msgid "" -#~ "`bpo-24192 `__: Fix namespace package " -#~ "imports." -#~ msgstr "" -#~ "`bpo-24192 `__: Fix namespace package " -#~ "imports." - -#~ msgid "" -#~ "`bpo-24022 `__: Fix tokenizer crash " -#~ "when processing undecodable source code." -#~ msgstr "" -#~ "`bpo-24022 `__: Fix tokenizer crash " -#~ "when processing undecodable source code." - -#~ msgid "" -#~ "`bpo-9951 `__: Added a hex() method to " -#~ "bytes, bytearray, and memoryview." -#~ msgstr "" -#~ "`bpo-9951 `__: Added a hex() method to " -#~ "bytes, bytearray, and memoryview." - -#~ msgid "" -#~ "`bpo-22906 `__: PEP 479: Change " -#~ "StopIteration handling inside generators." -#~ msgstr "" -#~ "`bpo-22906 `__: PEP 479: Change " -#~ "StopIteration handling inside generators." - -#~ msgid "" -#~ "`bpo-24017 `__: PEP 492: Coroutines " -#~ "with async and await syntax." -#~ msgstr "" -#~ "`bpo-24017 `__: PEP 492: Coroutines " -#~ "with async and await syntax." - -#~ msgid "" -#~ "`bpo-14373 `__: Added C " -#~ "implementation of functools.lru_cache(). Based on patches by Matt Joiner " -#~ "and Alexey Kachayev." -#~ msgstr "" -#~ "`bpo-14373 `__: Added C " -#~ "implementation of functools.lru_cache(). Based on patches by Matt Joiner " -#~ "and Alexey Kachayev." - -#~ msgid "" -#~ "`bpo-24230 `__: The tempfile module " -#~ "now accepts bytes for prefix, suffix and dir parameters and returns bytes " -#~ "in such situations (matching the os module APIs)." -#~ msgstr "" -#~ "`bpo-24230 `__: The tempfile module " -#~ "now accepts bytes for prefix, suffix and dir parameters and returns bytes " -#~ "in such situations (matching the os module APIs)." - -#~ msgid "" -#~ "`bpo-22189 `__: collections." -#~ "UserString now supports __getnewargs__(), __rmod__(), casefold(), " -#~ "format_map(), isprintable(), and maketrans(). Patch by Joe Jevnik." -#~ msgstr "" -#~ "`bpo-22189 `__: collections." -#~ "UserString now supports __getnewargs__(), __rmod__(), casefold(), " -#~ "format_map(), isprintable(), and maketrans(). Patch by Joe Jevnik." - -#~ msgid "" -#~ "`bpo-24244 `__: Prevents termination " -#~ "when an invalid format string is encountered on Windows in strftime." -#~ msgstr "" -#~ "`bpo-24244 `__: Prevents termination " -#~ "when an invalid format string is encountered on Windows in strftime." - -#~ msgid "" -#~ "`bpo-23973 `__: PEP 484: Add the " -#~ "typing module." -#~ msgstr "" -#~ "`bpo-23973 `__: PEP 484: Add the " -#~ "typing module." - -#~ msgid "" -#~ "`bpo-23086 `__: The collections.abc." -#~ "Sequence() abstract base class added *start* and *stop* parameters to the " -#~ "index() mixin. Patch by Devin Jeanpierre." -#~ msgstr "" -#~ "`bpo-23086 `__: The collections.abc." -#~ "Sequence() abstract base class added *start* and *stop* parameters to the " -#~ "index() mixin. Patch by Devin Jeanpierre." - -#~ msgid "" -#~ "`bpo-20035 `__: Replaced the " -#~ "``tkinter._fix`` module used for setting up the Tcl/Tk environment on " -#~ "Windows with a private function in the ``_tkinter`` module that makes no " -#~ "permanent changes to the environment." -#~ msgstr "" -#~ "`bpo-20035 `__: Replaced the " -#~ "``tkinter._fix`` module used for setting up the Tcl/Tk environment on " -#~ "Windows with a private function in the ``_tkinter`` module that makes no " -#~ "permanent changes to the environment." - -#~ msgid "" -#~ "`bpo-24257 `__: Fixed segmentation " -#~ "fault in sqlite3.Row constructor with faked cursor type." -#~ msgstr "" -#~ "`bpo-24257 `__: Fixed segmentation " -#~ "fault in sqlite3.Row constructor with faked cursor type." - -#~ msgid "" -#~ "`bpo-15836 `__: assertRaises(), " -#~ "assertRaisesRegex(), assertWarns() and assertWarnsRegex() assertments now " -#~ "check the type of the first argument to prevent possible user error. " -#~ "Based on patch by Daniel Wagner-Hall." -#~ msgstr "" -#~ "`bpo-15836 `__: assertRaises(), " -#~ "assertRaisesRegex(), assertWarns() and assertWarnsRegex() assertments now " -#~ "check the type of the first argument to prevent possible user error. " -#~ "Based on patch by Daniel Wagner-Hall." - -#~ msgid "" -#~ "`bpo-9858 `__: Add missing method " -#~ "stubs to _io.RawIOBase. Patch by Laura Rupprecht." -#~ msgstr "" -#~ "`bpo-9858 `__: Add missing method " -#~ "stubs to _io.RawIOBase. Patch by Laura Rupprecht." - -#~ msgid "" -#~ "`bpo-22955 `__: attrgetter, " -#~ "itemgetter and methodcaller objects in the operator module now support " -#~ "pickling. Added readable and evaluable repr for these objects. Based on " -#~ "patch by Josh Rosenberg." -#~ msgstr "" -#~ "`bpo-22955 `__: attrgetter, " -#~ "itemgetter and methodcaller objects in the operator module now support " -#~ "pickling. Added readable and evaluable repr for these objects. Based on " -#~ "patch by Josh Rosenberg." - -#~ msgid "" -#~ "`bpo-22107 `__: tempfile.gettempdir() " -#~ "and tempfile.mkdtemp() now try again when a directory with the chosen " -#~ "name already exists on Windows as well as on Unix. tempfile.mkstemp() " -#~ "now fails early if parent directory is not valid (not exists or is a " -#~ "file) on Windows." -#~ msgstr "" -#~ "`bpo-22107 `__: tempfile.gettempdir() " -#~ "and tempfile.mkdtemp() now try again when a directory with the chosen " -#~ "name already exists on Windows as well as on Unix. tempfile.mkstemp() " -#~ "now fails early if parent directory is not valid (not exists or is a " -#~ "file) on Windows." - -#~ msgid "" -#~ "`bpo-23780 `__: Improved error " -#~ "message in os.path.join() with single argument." -#~ msgstr "" -#~ "`bpo-23780 `__: Improved error " -#~ "message in os.path.join() with single argument." - -#~ msgid "" -#~ "`bpo-6598 `__: Increased time " -#~ "precision and random number range in email.utils.make_msgid() to " -#~ "strengthen the uniqueness of the message ID." -#~ msgstr "" -#~ "`bpo-6598 `__: Increased time " -#~ "precision and random number range in email.utils.make_msgid() to " -#~ "strengthen the uniqueness of the message ID." - -#~ msgid "" -#~ "`bpo-24091 `__: Fixed various crashes " -#~ "in corner cases in C implementation of ElementTree." -#~ msgstr "" -#~ "`bpo-24091 `__: Fixed various crashes " -#~ "in corner cases in C implementation of ElementTree." - -#~ msgid "" -#~ "`bpo-21931 `__: msilib.FCICreate() " -#~ "now raises TypeError in the case of a bad argument instead of a " -#~ "ValueError with a bogus FCI error number. Patch by Jeffrey Armstrong." -#~ msgstr "" -#~ "`bpo-21931 `__: msilib.FCICreate() " -#~ "now raises TypeError in the case of a bad argument instead of a " -#~ "ValueError with a bogus FCI error number. Patch by Jeffrey Armstrong." - -#~ msgid "" -#~ "`bpo-13866 `__: *quote_via* argument " -#~ "added to urllib.parse.urlencode." -#~ msgstr "" -#~ "`bpo-13866 `__: *quote_via* argument " -#~ "added to urllib.parse.urlencode." - -#~ msgid "" -#~ "`bpo-20098 `__: New mangle_from " -#~ "policy option for email, default True for compat32, but False for all " -#~ "other policies." -#~ msgstr "" -#~ "`bpo-20098 `__: New mangle_from " -#~ "policy option for email, default True for compat32, but False for all " -#~ "other policies." - -#~ msgid "" -#~ "`bpo-24211 `__: The email library now " -#~ "supports RFC 6532: it can generate headers using utf-8 instead of encoded " -#~ "words." -#~ msgstr "" -#~ "`bpo-24211 `__: The email library now " -#~ "supports RFC 6532: it can generate headers using utf-8 instead of encoded " -#~ "words." - -#~ msgid "" -#~ "`bpo-16314 `__: Added support for the " -#~ "LZMA compression in distutils." -#~ msgstr "" -#~ "`bpo-16314 `__: Added support for the " -#~ "LZMA compression in distutils." - -#~ msgid "" -#~ "`bpo-21804 `__: poplib now supports " -#~ "RFC 6856 (UTF8)." -#~ msgstr "" -#~ "`bpo-21804 `__: poplib now supports " -#~ "RFC 6856 (UTF8)." - -#~ msgid "" -#~ "`bpo-18682 `__: Optimized pprint " -#~ "functions for builtin scalar types." -#~ msgstr "" -#~ "`bpo-18682 `__: Optimized pprint " -#~ "functions for builtin scalar types." - -#~ msgid "" -#~ "`bpo-22027 `__: smtplib now supports " -#~ "RFC 6531 (SMTPUTF8)." -#~ msgstr "" -#~ "`bpo-22027 `__: smtplib now supports " -#~ "RFC 6531 (SMTPUTF8)." - -#~ msgid "" -#~ "`bpo-23488 `__: Random generator " -#~ "objects now consume 2x less memory on 64-bit." -#~ msgstr "" -#~ "`bpo-23488 `__: Random generator " -#~ "objects now consume 2x less memory on 64-bit." - -#~ msgid "" -#~ "`bpo-1322 `__: platform.dist() and " -#~ "platform.linux_distribution() functions are now deprecated. Initial " -#~ "patch by Vajrasky Kok." -#~ msgstr "" -#~ "`bpo-1322 `__: platform.dist() and " -#~ "platform.linux_distribution() functions are now deprecated. Initial " -#~ "patch by Vajrasky Kok." - -#~ msgid "" -#~ "`bpo-22486 `__: Added the math.gcd() " -#~ "function. The fractions.gcd() function now is deprecated. Based on " -#~ "patch by Mark Dickinson." -#~ msgstr "" -#~ "`bpo-22486 `__: Added the math.gcd() " -#~ "function. The fractions.gcd() function now is deprecated. Based on " -#~ "patch by Mark Dickinson." - -#~ msgid "" -#~ "`bpo-24064 `__: Property() docstrings " -#~ "are now writeable. (Patch by Berker Peksag.)" -#~ msgstr "" -#~ "`bpo-24064 `__: Property() docstrings " -#~ "are now writeable. (Patch by Berker Peksag.)" - -#~ msgid "" -#~ "`bpo-22681 `__: Added support for the " -#~ "koi8_t encoding." -#~ msgstr "" -#~ "`bpo-22681 `__: Added support for the " -#~ "koi8_t encoding." - -#~ msgid "" -#~ "`bpo-22682 `__: Added support for the " -#~ "kz1048 encoding." -#~ msgstr "" -#~ "`bpo-22682 `__: Added support for the " -#~ "kz1048 encoding." - -#~ msgid "" -#~ "`bpo-23796 `__: peek and read1 " -#~ "methods of BufferedReader now raise ValueError if they called on a closed " -#~ "object. Patch by John Hergenroeder." -#~ msgstr "" -#~ "`bpo-23796 `__: peek and read1 " -#~ "methods of BufferedReader now raise ValueError if they called on a closed " -#~ "object. Patch by John Hergenroeder." - -#~ msgid "" -#~ "`bpo-21795 `__: smtpd now supports " -#~ "the 8BITMIME extension whenever the new *decode_data* constructor " -#~ "argument is set to False." -#~ msgstr "" -#~ "`bpo-21795 `__: smtpd now supports " -#~ "the 8BITMIME extension whenever the new *decode_data* constructor " -#~ "argument is set to False." - -#~ msgid "" -#~ "`bpo-24155 `__: optimize heapq." -#~ "heapify() for better cache performance when heapifying large lists." -#~ msgstr "" -#~ "`bpo-24155 `__: optimize heapq." -#~ "heapify() for better cache performance when heapifying large lists." - -#~ msgid "" -#~ "`bpo-21800 `__: imaplib now supports " -#~ "RFC 5161 (enable), RFC 6855 (utf8/internationalized email) and " -#~ "automatically encodes non-ASCII usernames and passwords to UTF8." -#~ msgstr "" -#~ "`bpo-21800 `__: imaplib now supports " -#~ "RFC 5161 (enable), RFC 6855 (utf8/internationalized email) and " -#~ "automatically encodes non-ASCII usernames and passwords to UTF8." - -#~ msgid "" -#~ "`bpo-20274 `__: When calling a " -#~ "_sqlite.Connection, it now complains if passed any keyword arguments. " -#~ "Previously it silently ignored them." -#~ msgstr "" -#~ "`bpo-20274 `__: When calling a " -#~ "_sqlite.Connection, it now complains if passed any keyword arguments. " -#~ "Previously it silently ignored them." - -#~ msgid "" -#~ "`bpo-20274 `__: Remove ignored and " -#~ "erroneous \"kwargs\" parameters from three METH_VARARGS methods on " -#~ "_sqlite.Connection." -#~ msgstr "" -#~ "`bpo-20274 `__: Remove ignored and " -#~ "erroneous \"kwargs\" parameters from three METH_VARARGS methods on " -#~ "_sqlite.Connection." - -#~ msgid "" -#~ "`bpo-24134 `__: assertRaises(), " -#~ "assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks now " -#~ "emits a deprecation warning when callable is None or keyword arguments " -#~ "except msg is passed in the context manager mode." -#~ msgstr "" -#~ "`bpo-24134 `__: assertRaises(), " -#~ "assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks now " -#~ "emits a deprecation warning when callable is None or keyword arguments " -#~ "except msg is passed in the context manager mode." - -#~ msgid "" -#~ "`bpo-24018 `__: Add a collections.abc." -#~ "Generator abstract base class. Contributed by Stefan Behnel." -#~ msgstr "" -#~ "`bpo-24018 `__: Add a collections.abc." -#~ "Generator abstract base class. Contributed by Stefan Behnel." - -#~ msgid "" -#~ "`bpo-23880 `__: Tkinter's getint() " -#~ "and getdouble() now support Tcl_Obj. Tkinter's getdouble() now supports " -#~ "any numbers (in particular int)." -#~ msgstr "" -#~ "`bpo-23880 `__: Tkinter's getint() " -#~ "and getdouble() now support Tcl_Obj. Tkinter's getdouble() now supports " -#~ "any numbers (in particular int)." - -#~ msgid "" -#~ "`bpo-22619 `__: Added negative limit " -#~ "support in the traceback module. Based on patch by Dmitry Kazakov." -#~ msgstr "" -#~ "`bpo-22619 `__: Added negative limit " -#~ "support in the traceback module. Based on patch by Dmitry Kazakov." - -#~ msgid "" -#~ "`bpo-24094 `__: Fix possible crash in " -#~ "json.encode with poorly behaved dict subclasses." -#~ msgstr "" -#~ "`bpo-24094 `__: Fix possible crash in " -#~ "json.encode with poorly behaved dict subclasses." - -#~ msgid "" -#~ "`bpo-9246 `__: On POSIX, os.getcwd() " -#~ "now supports paths longer than 1025 bytes. Patch written by William Orr." -#~ msgstr "" -#~ "`bpo-9246 `__: On POSIX, os.getcwd() " -#~ "now supports paths longer than 1025 bytes. Patch written by William Orr." - -#~ msgid "" -#~ "`bpo-17445 `__: add difflib." -#~ "diff_bytes() to support comparison of byte strings (fixes a regression " -#~ "from Python 2)." -#~ msgstr "" -#~ "`bpo-17445 `__: add difflib." -#~ "diff_bytes() to support comparison of byte strings (fixes a regression " -#~ "from Python 2)." - -#~ msgid "" -#~ "`bpo-23917 `__: Fall back to " -#~ "sequential compilation when ProcessPoolExecutor doesn't exist. Patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`bpo-23917 `__: Fall back to " -#~ "sequential compilation when ProcessPoolExecutor doesn't exist. Patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`bpo-23008 `__: Fixed resolving " -#~ "attributes with boolean value is False in pydoc." -#~ msgstr "" -#~ "`bpo-23008 `__: Fixed resolving " -#~ "attributes with boolean value is False in pydoc." - -#~ msgid "" -#~ "`bpo-23908 `__: os functions now " -#~ "reject paths with embedded null character on Windows instead of silently " -#~ "truncating them." -#~ msgstr "" -#~ "`bpo-23908 `__: os functions now " -#~ "reject paths with embedded null character on Windows instead of silently " -#~ "truncating them." - -#~ msgid "" -#~ "`bpo-23728 `__: binascii.crc_hqx() " -#~ "could return an integer outside of the range 0-0xffff for empty data." -#~ msgstr "" -#~ "`bpo-23728 `__: binascii.crc_hqx() " -#~ "could return an integer outside of the range 0-0xffff for empty data." - -#~ msgid "" -#~ "`bpo-23887 `__: urllib.error." -#~ "HTTPError now has a proper repr() representation. Patch by Berker Peksag." -#~ msgstr "" -#~ "`bpo-23887 `__: urllib.error." -#~ "HTTPError now has a proper repr() representation. Patch by Berker Peksag." - -#~ msgid "" -#~ "`bpo-24178 `__: asyncio.Lock, " -#~ "Condition, Semaphore, and BoundedSemaphore support new 'async with' " -#~ "syntax. Contributed by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-24178 `__: asyncio.Lock, " -#~ "Condition, Semaphore, and BoundedSemaphore support new 'async with' " -#~ "syntax. Contributed by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-24179 `__: Support 'async for' " -#~ "for asyncio.StreamReader. Contributed by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-24179 `__: Support 'async for' " -#~ "for asyncio.StreamReader. Contributed by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-24184 `__: Add AsyncIterator and " -#~ "AsyncIterable ABCs to collections.abc. Contributed by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-24184 `__: Add AsyncIterator and " -#~ "AsyncIterable ABCs to collections.abc. Contributed by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-22547 `__: Implement informative " -#~ "__repr__ for inspect.BoundArguments. Contributed by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-22547 `__: Implement informative " -#~ "__repr__ for inspect.BoundArguments. Contributed by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-24190 `__: Implement inspect." -#~ "BoundArgument.apply_defaults() method. Contributed by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-24190 `__: Implement inspect." -#~ "BoundArgument.apply_defaults() method. Contributed by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-20691 `__: Add 'follow_wrapped' " -#~ "argument to inspect.Signature.from_callable() and inspect.signature(). " -#~ "Contributed by Yury Selivanov." -#~ msgstr "" -#~ "`bpo-20691 `__: Add 'follow_wrapped' " -#~ "argument to inspect.Signature.from_callable() and inspect.signature(). " -#~ "Contributed by Yury Selivanov." - -#~ msgid "" -#~ "`bpo-24248 `__: Deprecate inspect." -#~ "Signature.from_function() and inspect.Signature.from_builtin()." -#~ msgstr "" -#~ "`bpo-24248 `__: Deprecate inspect." -#~ "Signature.from_function() and inspect.Signature.from_builtin()." - -#~ msgid "" -#~ "`bpo-23898 `__: Fix inspect." -#~ "classify_class_attrs() to support attributes with overloaded __eq__ and " -#~ "__bool__. Patch by Mike Bayer." -#~ msgstr "" -#~ "`bpo-23898 `__: Fix inspect." -#~ "classify_class_attrs() to support attributes with overloaded __eq__ and " -#~ "__bool__. Patch by Mike Bayer." - -#~ msgid "" -#~ "`bpo-24298 `__: Fix inspect." -#~ "signature() to correctly unwrap wrappers around bound methods." -#~ msgstr "" -#~ "`bpo-24298 `__: Fix inspect." -#~ "signature() to correctly unwrap wrappers around bound methods." - -#~ msgid "" -#~ "`bpo-23184 `__: remove unused names " -#~ "and imports in idlelib. Initial patch by Al Sweigart." -#~ msgstr "" -#~ "`bpo-23184 `__: remove unused names " -#~ "and imports in idlelib. Initial patch by Al Sweigart." - -#~ msgid "" -#~ "`bpo-21520 `__: test_zipfile no " -#~ "longer fails if the word 'bad' appears anywhere in the name of the " -#~ "current directory." -#~ msgstr "" -#~ "`bpo-21520 `__: test_zipfile no " -#~ "longer fails if the word 'bad' appears anywhere in the name of the " -#~ "current directory." - -#~ msgid "" -#~ "`bpo-9517 `__: Move script_helper into " -#~ "the support package. Patch by Christie Wilson." -#~ msgstr "" -#~ "`bpo-9517 `__: Move script_helper into " -#~ "the support package. Patch by Christie Wilson." - -#~ msgid "" -#~ "`bpo-22155 `__: Add File Handlers " -#~ "subsection with createfilehandler to tkinter doc. Remove obsolete " -#~ "example from FAQ. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-22155 `__: Add File Handlers " -#~ "subsection with createfilehandler to tkinter doc. Remove obsolete " -#~ "example from FAQ. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-24029 `__: Document the name " -#~ "binding behavior for submodule imports." -#~ msgstr "" -#~ "`bpo-24029 `__: Document the name " -#~ "binding behavior for submodule imports." - -#~ msgid "" -#~ "`bpo-24077 `__: Fix typo in man page " -#~ "for -I command option: -s, not -S" -#~ msgstr "" -#~ "`bpo-24077 `__: Fix typo in man page " -#~ "for -I command option: -s, not -S" - -#~ msgid "" -#~ "`bpo-24000 `__: Improved Argument " -#~ "Clinic's mapping of converters to legacy \"format units\". Updated the " -#~ "documentation to match." -#~ msgstr "" -#~ "`bpo-24000 `__: Improved Argument " -#~ "Clinic's mapping of converters to legacy \"format units\". Updated the " -#~ "documentation to match." - -#~ msgid "" -#~ "`bpo-24001 `__: Argument Clinic " -#~ "converters now use accept={type} instead of types={'type'} to specify the " -#~ "types the converter accepts." -#~ msgstr "" -#~ "`bpo-24001 `__: Argument Clinic " -#~ "converters now use accept={type} instead of types={'type'} to specify the " -#~ "types the converter accepts." - -#~ msgid "" -#~ "`bpo-23330 `__: h2py now supports " -#~ "arbitrary filenames in #include." -#~ msgstr "" -#~ "`bpo-23330 `__: h2py now supports " -#~ "arbitrary filenames in #include." - -#~ msgid "" -#~ "`bpo-24031 `__: make patchcheck now " -#~ "supports git checkouts, too." -#~ msgstr "" -#~ "`bpo-24031 `__: make patchcheck now " -#~ "supports git checkouts, too." - -#~ msgid "Python 3.5.0 alpha 4" -#~ msgstr "Python 3.5.0 alpha 4" - -#~ msgid "Release date: 2015-04-19" -#~ msgstr "Date de sortie : 2015-04-19" - -#~ msgid "" -#~ "`bpo-22980 `__: Under Linux, GNU/" -#~ "KFreeBSD and the Hurd, C extensions now include the architecture triplet " -#~ "in the extension name, to make it easy to test builds for different ABIs " -#~ "in the same working tree. Under OS X, the extension name now includes " -#~ "PEP 3149-style information." -#~ msgstr "" -#~ "`bpo-22980 `__: Under Linux, GNU/" -#~ "KFreeBSD and the Hurd, C extensions now include the architecture triplet " -#~ "in the extension name, to make it easy to test builds for different ABIs " -#~ "in the same working tree. Under OS X, the extension name now includes " -#~ "PEP 3149-style information." - -#~ msgid "" -#~ "`bpo-22631 `__: Added Linux-specific " -#~ "socket constant CAN_RAW_FD_FRAMES. Patch courtesy of Joe Jevnik." -#~ msgstr "" -#~ "`bpo-22631 `__: Added Linux-specific " -#~ "socket constant CAN_RAW_FD_FRAMES. Patch courtesy of Joe Jevnik." - -#~ msgid "" -#~ "`bpo-23731 `__: Implement PEP 488: " -#~ "removal of .pyo files." -#~ msgstr "" -#~ "`bpo-23731 `__: Implement PEP 488: " -#~ "removal of .pyo files." - -#~ msgid "" -#~ "`bpo-23726 `__: Don't enable GC for " -#~ "user subclasses of non-GC types that don't add any new fields. Patch by " -#~ "Eugene Toder." -#~ msgstr "" -#~ "`bpo-23726 `__: Don't enable GC for " -#~ "user subclasses of non-GC types that don't add any new fields. Patch by " -#~ "Eugene Toder." - -#~ msgid "" -#~ "`bpo-23309 `__: Avoid a deadlock at " -#~ "shutdown if a daemon thread is aborted while it is holding a lock to a " -#~ "buffered I/O object, and the main thread tries to use the same I/O object " -#~ "(typically stdout or stderr). A fatal error is emitted instead." -#~ msgstr "" -#~ "`bpo-23309 `__: Avoid a deadlock at " -#~ "shutdown if a daemon thread is aborted while it is holding a lock to a " -#~ "buffered I/O object, and the main thread tries to use the same I/O object " -#~ "(typically stdout or stderr). A fatal error is emitted instead." - -#~ msgid "" -#~ "`bpo-22977 `__: Fixed formatting " -#~ "Windows error messages on Wine. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-22977 `__: Fixed formatting " -#~ "Windows error messages on Wine. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-23466 `__: %c, %o, %x, and %X in " -#~ "bytes formatting now raise TypeError on non-integer input." -#~ msgstr "" -#~ "`bpo-23466 `__: %c, %o, %x, and %X in " -#~ "bytes formatting now raise TypeError on non-integer input." - -#~ msgid "" -#~ "`bpo-24044 `__: Fix possible null " -#~ "pointer dereference in list.sort in out of memory conditions." -#~ msgstr "" -#~ "`bpo-24044 `__: Fix possible null " -#~ "pointer dereference in list.sort in out of memory conditions." - -#~ msgid "" -#~ "`bpo-21354 `__: PyCFunction_New " -#~ "function is exposed by python DLL again." -#~ msgstr "" -#~ "`bpo-21354 `__: PyCFunction_New " -#~ "function is exposed by python DLL again." - -#~ msgid "" -#~ "`bpo-23840 `__: tokenize.open() now " -#~ "closes the temporary binary file on error to fix a resource warning." -#~ msgstr "" -#~ "`bpo-23840 `__: tokenize.open() now " -#~ "closes the temporary binary file on error to fix a resource warning." - -#~ msgid "" -#~ "`bpo-16914 `__: new debuglevel 2 in " -#~ "smtplib adds timestamps to debug output." -#~ msgstr "" -#~ "`bpo-16914 `__: new debuglevel 2 in " -#~ "smtplib adds timestamps to debug output." - -#~ msgid "" -#~ "`bpo-7159 `__: urllib.request now " -#~ "supports sending auth credentials automatically after the first 401. " -#~ "This enhancement is a superset of the enhancement from `bpo-19494 " -#~ "`__ and supersedes that change." -#~ msgstr "" -#~ "`bpo-7159 `__: urllib.request now " -#~ "supports sending auth credentials automatically after the first 401. " -#~ "This enhancement is a superset of the enhancement from `bpo-19494 " -#~ "`__ and supersedes that change." - -#~ msgid "" -#~ "`bpo-23703 `__: Fix a regression in " -#~ "urljoin() introduced in 901e4e52b20a. Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-23703 `__: Fix a regression in " -#~ "urljoin() introduced in 901e4e52b20a. Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-4254 `__: Adds _curses." -#~ "update_lines_cols(). Patch by Arnon Yaari" -#~ msgstr "" -#~ "`bpo-4254 `__: Adds _curses." -#~ "update_lines_cols(). Patch by Arnon Yaari" - -#~ msgid "" -#~ "`bpo-19933 `__: Provide default " -#~ "argument for ndigits in round. Patch by Vajrasky Kok." -#~ msgstr "" -#~ "`bpo-19933 `__: Provide default " -#~ "argument for ndigits in round. Patch by Vajrasky Kok." - -#~ msgid "" -#~ "`bpo-23193 `__: Add a numeric_owner " -#~ "parameter to tarfile.TarFile.extract and tarfile.TarFile.extractall. " -#~ "Patch by Michael Vogt and Eric Smith." -#~ msgstr "" -#~ "`bpo-23193 `__: Add a numeric_owner " -#~ "parameter to tarfile.TarFile.extract and tarfile.TarFile.extractall. " -#~ "Patch by Michael Vogt and Eric Smith." - -#~ msgid "" -#~ "`bpo-23342 `__: Add a subprocess." -#~ "run() function than returns a CalledProcess instance for a more " -#~ "consistent API than the existing call* functions." -#~ msgstr "" -#~ "`bpo-23342 `__: Add a subprocess." -#~ "run() function than returns a CalledProcess instance for a more " -#~ "consistent API than the existing call* functions." - -#~ msgid "" -#~ "`bpo-21217 `__: inspect." -#~ "getsourcelines() now tries to compute the start and end lines from the " -#~ "code object, fixing an issue when a lambda function is used as decorator " -#~ "argument. Patch by Thomas Ballinger and Allison Kaptur." -#~ msgstr "" -#~ "`bpo-21217 `__: inspect." -#~ "getsourcelines() now tries to compute the start and end lines from the " -#~ "code object, fixing an issue when a lambda function is used as decorator " -#~ "argument. Patch by Thomas Ballinger and Allison Kaptur." - -#~ msgid "" -#~ "`bpo-24521 `__: Fix possible integer " -#~ "overflows in the pickle module." -#~ msgstr "" -#~ "`bpo-24521 `__: Fix possible integer " -#~ "overflows in the pickle module." - -#~ msgid "" -#~ "`bpo-22931 `__: Allow '[' and ']' in " -#~ "cookie values." -#~ msgstr "" -#~ "`bpo-22931 `__: Allow '[' and ']' in " -#~ "cookie values." - -#~ msgid "" -#~ "`bpo-23811 `__: Add missing newline " -#~ "to the PyCompileError error message. Patch by Alex Shkop." -#~ msgstr "" -#~ "`bpo-23811 `__: Add missing newline " -#~ "to the PyCompileError error message. Patch by Alex Shkop." - -#~ msgid "" -#~ "`bpo-21116 `__: Avoid blowing memory " -#~ "when allocating a multiprocessing shared array that's larger than 50% of " -#~ "the available RAM. Patch by Médéric Boquien." -#~ msgstr "" -#~ "`bpo-21116 `__: Avoid blowing memory " -#~ "when allocating a multiprocessing shared array that's larger than 50% of " -#~ "the available RAM. Patch by Médéric Boquien." - -#~ msgid "" -#~ "`bpo-22982 `__: Improve BOM handling " -#~ "when seeking to multiple positions of a writable text file." -#~ msgstr "" -#~ "`bpo-22982 `__: Improve BOM handling " -#~ "when seeking to multiple positions of a writable text file." - -#~ msgid "" -#~ "`bpo-23464 `__: Removed deprecated " -#~ "asyncio JoinableQueue." -#~ msgstr "" -#~ "`bpo-23464 `__: Removed deprecated " -#~ "asyncio JoinableQueue." - -#~ msgid "" -#~ "`bpo-23529 `__: Limit the size of " -#~ "decompressed data when reading from GzipFile, BZ2File or LZMAFile. This " -#~ "defeats denial of service attacks using compressed bombs (i.e. compressed " -#~ "payloads which decompress to a huge size). Patch by Martin Panter and " -#~ "Nikolaus Rath." -#~ msgstr "" -#~ "`bpo-23529 `__: Limit the size of " -#~ "decompressed data when reading from GzipFile, BZ2File or LZMAFile. This " -#~ "defeats denial of service attacks using compressed bombs (i.e. compressed " -#~ "payloads which decompress to a huge size). Patch by Martin Panter and " -#~ "Nikolaus Rath." - -#~ msgid "" -#~ "`bpo-21859 `__: Added Python " -#~ "implementation of io.FileIO." -#~ msgstr "" -#~ "`bpo-21859 `__: Added Python " -#~ "implementation of io.FileIO." - -#~ msgid "" -#~ "`bpo-23865 `__: close() methods in " -#~ "multiple modules now are idempotent and more robust at shutdown. If they " -#~ "need to release multiple resources, all are released even if errors occur." -#~ msgstr "" -#~ "`bpo-23865 `__: close() methods in " -#~ "multiple modules now are idempotent and more robust at shutdown. If they " -#~ "need to release multiple resources, all are released even if errors occur." - -#~ msgid "" -#~ "`bpo-23400 `__: Raise same exception " -#~ "on both Python 2 and 3 if sem_open is not available. Patch by Davin " -#~ "Potts." -#~ msgstr "" -#~ "`bpo-23400 `__: Raise same exception " -#~ "on both Python 2 and 3 if sem_open is not available. Patch by Davin " -#~ "Potts." - -#~ msgid "" -#~ "`bpo-10838 `__: The subprocess now " -#~ "module includes SubprocessError and TimeoutError in its list of exported " -#~ "names for the users wild enough to use ``from subprocess import *``." -#~ msgstr "" -#~ "`bpo-10838 `__: The subprocess now " -#~ "module includes SubprocessError and TimeoutError in its list of exported " -#~ "names for the users wild enough to use ``from subprocess import *``." - -#~ msgid "" -#~ "`bpo-23411 `__: Added DefragResult, " -#~ "ParseResult, SplitResult, DefragResultBytes, ParseResultBytes, and " -#~ "SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-23411 `__: Added DefragResult, " -#~ "ParseResult, SplitResult, DefragResultBytes, ParseResultBytes, and " -#~ "SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-23881 `__: urllib.request." -#~ "ftpwrapper constructor now closes the socket if the FTP connection failed " -#~ "to fix a ResourceWarning." -#~ msgstr "" -#~ "`bpo-23881 `__: urllib.request." -#~ "ftpwrapper constructor now closes the socket if the FTP connection failed " -#~ "to fix a ResourceWarning." - -#~ msgid "" -#~ "`bpo-23853 `__: :meth:`socket.socket." -#~ "sendall` does no more reset the socket timeout each time data is sent " -#~ "successfully. The socket timeout is now the maximum total duration to " -#~ "send all data." -#~ msgstr "" -#~ "`bpo-23853 `__: :meth:`socket.socket." -#~ "sendall` does no more reset the socket timeout each time data is sent " -#~ "successfully. The socket timeout is now the maximum total duration to " -#~ "send all data." - -#~ msgid "" -#~ "`bpo-22721 `__: An order of multiline " -#~ "pprint output of set or dict containing orderable and non-orderable " -#~ "elements no longer depends on iteration order of set or dict." -#~ msgstr "" -#~ "`bpo-22721 `__: An order of multiline " -#~ "pprint output of set or dict containing orderable and non-orderable " -#~ "elements no longer depends on iteration order of set or dict." - -#~ msgid "" -#~ "`bpo-15133 `__: _tkinter.tkapp." -#~ "getboolean() now supports Tcl_Obj and always returns bool. tkinter." -#~ "BooleanVar now validates input values (accepted bool, int, str, and " -#~ "Tcl_Obj). tkinter.BooleanVar.get() now always returns bool." -#~ msgstr "" -#~ "`bpo-15133 `__: _tkinter.tkapp." -#~ "getboolean() now supports Tcl_Obj and always returns bool. tkinter." -#~ "BooleanVar now validates input values (accepted bool, int, str, and " -#~ "Tcl_Obj). tkinter.BooleanVar.get() now always returns bool." - -#~ msgid "" -#~ "`bpo-10590 `__: xml.sax.parseString() " -#~ "now supports string argument." -#~ msgstr "" -#~ "`bpo-10590 `__: xml.sax.parseString() " -#~ "now supports string argument." - -#~ msgid "" -#~ "`bpo-23338 `__: Fixed formatting " -#~ "ctypes error messages on Cygwin. Patch by Makoto Kato." -#~ msgstr "" -#~ "`bpo-23338 `__: Fixed formatting " -#~ "ctypes error messages on Cygwin. Patch by Makoto Kato." - -#~ msgid "" -#~ "`bpo-15582 `__: inspect.getdoc() now " -#~ "follows inheritance chains." -#~ msgstr "" -#~ "`bpo-15582 `__: inspect.getdoc() now " -#~ "follows inheritance chains." - -#~ msgid "" -#~ "`bpo-2175 `__: SAX parsers now support " -#~ "a character stream of InputSource object." -#~ msgstr "" -#~ "`bpo-2175 `__: SAX parsers now support " -#~ "a character stream of InputSource object." - -#~ msgid "" -#~ "`bpo-16840 `__: Tkinter now supports " -#~ "64-bit integers added in Tcl 8.4 and arbitrary precision integers added " -#~ "in Tcl 8.5." -#~ msgstr "" -#~ "`bpo-16840 `__: Tkinter now supports " -#~ "64-bit integers added in Tcl 8.4 and arbitrary precision integers added " -#~ "in Tcl 8.5." - -#~ msgid "" -#~ "`bpo-23834 `__: Fix socket.sendto(), " -#~ "use the C Py_ssize_t type to store the result of sendto() instead of the " -#~ "C int type." -#~ msgstr "" -#~ "`bpo-23834 `__: Fix socket.sendto(), " -#~ "use the C Py_ssize_t type to store the result of sendto() instead of the " -#~ "C int type." - -#~ msgid "" -#~ "`bpo-23618 `__: :meth:`socket.socket." -#~ "connect` now waits until the connection completes instead of raising :exc:" -#~ "`InterruptedError` if the connection is interrupted by signals, signal " -#~ "handlers don't raise an exception and the socket is blocking or has a " -#~ "timeout. :meth:`socket.socket.connect` still raise :exc:" -#~ "`InterruptedError` for non-blocking sockets." -#~ msgstr "" -#~ "`bpo-23618 `__: :meth:`socket.socket." -#~ "connect` now waits until the connection completes instead of raising :exc:" -#~ "`InterruptedError` if the connection is interrupted by signals, signal " -#~ "handlers don't raise an exception and the socket is blocking or has a " -#~ "timeout. :meth:`socket.socket.connect` still raise :exc:" -#~ "`InterruptedError` for non-blocking sockets." - -#~ msgid "" -#~ "`bpo-21526 `__: Tkinter now supports " -#~ "new boolean type in Tcl 8.5." -#~ msgstr "" -#~ "`bpo-21526 `__: Tkinter now supports " -#~ "new boolean type in Tcl 8.5." - -#~ msgid "" -#~ "`bpo-23836 `__: Fix the faulthandler " -#~ "module to handle reentrant calls to its signal handlers." -#~ msgstr "" -#~ "`bpo-23836 `__: Fix the faulthandler " -#~ "module to handle reentrant calls to its signal handlers." - -#~ msgid "" -#~ "`bpo-23838 `__: linecache now clears " -#~ "the cache and returns an empty result on MemoryError." -#~ msgstr "" -#~ "`bpo-23838 `__: linecache now clears " -#~ "the cache and returns an empty result on MemoryError." - -#~ msgid "" -#~ "`bpo-10395 `__: Added os.path." -#~ "commonpath(). Implemented in posixpath and ntpath. Based on patch by " -#~ "Rafik Draoui." -#~ msgstr "" -#~ "`bpo-10395 `__: Added os.path." -#~ "commonpath(). Implemented in posixpath and ntpath. Based on patch by " -#~ "Rafik Draoui." - -#~ msgid "" -#~ "`bpo-23611 `__: Serializing more " -#~ "\"lookupable\" objects (such as unbound methods or nested classes) now " -#~ "are supported with pickle protocols < 4." -#~ msgstr "" -#~ "`bpo-23611 `__: Serializing more " -#~ "\"lookupable\" objects (such as unbound methods or nested classes) now " -#~ "are supported with pickle protocols < 4." - -#~ msgid "" -#~ "`bpo-13583 `__: sqlite3.Row now " -#~ "supports slice indexing." -#~ msgstr "" -#~ "`bpo-13583 `__: sqlite3.Row now " -#~ "supports slice indexing." - -#~ msgid "" -#~ "`bpo-18473 `__: Fixed 2to3 and 3to2 " -#~ "compatible pickle mappings. Fixed ambigious reverse mappings. Added " -#~ "many new mappings. Import mapping is no longer applied to modules " -#~ "already mapped with full name mapping." -#~ msgstr "" -#~ "`bpo-18473 `__: Fixed 2to3 and 3to2 " -#~ "compatible pickle mappings. Fixed ambigious reverse mappings. Added " -#~ "many new mappings. Import mapping is no longer applied to modules " -#~ "already mapped with full name mapping." - -#~ msgid "" -#~ "`bpo-23485 `__: select.select() is " -#~ "now retried automatically with the recomputed timeout when interrupted by " -#~ "a signal, except if the signal handler raises an exception. This change " -#~ "is part of the PEP 475." -#~ msgstr "" -#~ "`bpo-23485 `__: select.select() is " -#~ "now retried automatically with the recomputed timeout when interrupted by " -#~ "a signal, except if the signal handler raises an exception. This change " -#~ "is part of the PEP 475." - -#~ msgid "" -#~ "`bpo-23752 `__: When built from an " -#~ "existing file descriptor, io.FileIO() now only calls fstat() once. Before " -#~ "fstat() was called twice, which was not necessary." -#~ msgstr "" -#~ "`bpo-23752 `__: When built from an " -#~ "existing file descriptor, io.FileIO() now only calls fstat() once. Before " -#~ "fstat() was called twice, which was not necessary." - -#~ msgid "" -#~ "`bpo-23704 `__: collections.deque() " -#~ "objects now support __add__, __mul__, and __imul__()." -#~ msgstr "" -#~ "`bpo-23704 `__: collections.deque() " -#~ "objects now support __add__, __mul__, and __imul__()." - -#~ msgid "" -#~ "`bpo-23171 `__: csv.Writer.writerow() " -#~ "now supports arbitrary iterables." -#~ msgstr "" -#~ "`bpo-23171 `__: csv.Writer.writerow() " -#~ "now supports arbitrary iterables." - -#~ msgid "" -#~ "`bpo-23745 `__: The new email header " -#~ "parser now handles duplicate MIME parameter names without error, similar " -#~ "to how get_param behaves." -#~ msgstr "" -#~ "`bpo-23745 `__: The new email header " -#~ "parser now handles duplicate MIME parameter names without error, similar " -#~ "to how get_param behaves." - -#~ msgid "" -#~ "`bpo-22117 `__: Fix os.utime(), it " -#~ "now rounds the timestamp towards minus infinity (-inf) instead of " -#~ "rounding towards zero." -#~ msgstr "" -#~ "`bpo-22117 `__: Fix os.utime(), it " -#~ "now rounds the timestamp towards minus infinity (-inf) instead of " -#~ "rounding towards zero." - -#~ msgid "" -#~ "`bpo-23310 `__: Fix MagicMock's " -#~ "initializer to work with __methods__, just like configure_mock(). Patch " -#~ "by Kasia Jachim." -#~ msgstr "" -#~ "`bpo-23310 `__: Fix MagicMock's " -#~ "initializer to work with __methods__, just like configure_mock(). Patch " -#~ "by Kasia Jachim." - -#~ msgid "" -#~ "`bpo-23817 `__: FreeBSD now uses " -#~ "\"1.0\" in the SOVERSION as other operating systems, instead of just " -#~ "\"1\"." -#~ msgstr "" -#~ "`bpo-23817 `__: FreeBSD now uses " -#~ "\"1.0\" in the SOVERSION as other operating systems, instead of just " -#~ "\"1\"." - -#~ msgid "" -#~ "`bpo-23501 `__: Argument Clinic now " -#~ "generates code into separate files by default." -#~ msgstr "" -#~ "`bpo-23501 `__: Argument Clinic now " -#~ "generates code into separate files by default." - -#~ msgid "" -#~ "`bpo-23799 `__: Added test.support." -#~ "start_threads() for running and cleaning up multiple threads." -#~ msgstr "" -#~ "`bpo-23799 `__: Added test.support." -#~ "start_threads() for running and cleaning up multiple threads." - -#~ msgid "" -#~ "`bpo-22390 `__: test.regrtest now " -#~ "emits a warning if temporary files or directories are left after running " -#~ "a test." -#~ msgstr "" -#~ "`bpo-22390 `__: test.regrtest now " -#~ "emits a warning if temporary files or directories are left after running " -#~ "a test." - -#~ msgid "" -#~ "`bpo-18128 `__: pygettext now uses " -#~ "standard +NNNN format in the POT-Creation-Date header." -#~ msgstr "" -#~ "`bpo-18128 `__: pygettext now uses " -#~ "standard +NNNN format in the POT-Creation-Date header." - -#~ msgid "" -#~ "`bpo-23935 `__: Argument Clinic's " -#~ "understanding of format units accepting bytes, bytearrays, and buffers is " -#~ "now consistent with both the documentation and the implementation." -#~ msgstr "" -#~ "`bpo-23935 `__: Argument Clinic's " -#~ "understanding of format units accepting bytes, bytearrays, and buffers is " -#~ "now consistent with both the documentation and the implementation." - -#~ msgid "" -#~ "`bpo-23944 `__: Argument Clinic now " -#~ "wraps long impl prototypes at column 78." -#~ msgstr "" -#~ "`bpo-23944 `__: Argument Clinic now " -#~ "wraps long impl prototypes at column 78." - -#~ msgid "" -#~ "`bpo-20586 `__: Argument Clinic now " -#~ "ensures that functions without docstrings have signatures." -#~ msgstr "" -#~ "`bpo-20586 `__: Argument Clinic now " -#~ "ensures that functions without docstrings have signatures." - -#~ msgid "" -#~ "`bpo-23492 `__: Argument Clinic now " -#~ "generates argument parsing code with PyArg_Parse instead of " -#~ "PyArg_ParseTuple if possible." -#~ msgstr "" -#~ "`bpo-23492 `__: Argument Clinic now " -#~ "generates argument parsing code with PyArg_Parse instead of " -#~ "PyArg_ParseTuple if possible." - -#~ msgid "" -#~ "`bpo-23500 `__: Argument Clinic is " -#~ "now smarter about generating the \"#ifndef\" (empty) definition of the " -#~ "methoddef macro: it's only generated once, even if Argument Clinic " -#~ "processes the same symbol multiple times, and it's emitted at the end of " -#~ "all processing rather than immediately after the first use." -#~ msgstr "" -#~ "`bpo-23500 `__: Argument Clinic is " -#~ "now smarter about generating the \"#ifndef\" (empty) definition of the " -#~ "methoddef macro: it's only generated once, even if Argument Clinic " -#~ "processes the same symbol multiple times, and it's emitted at the end of " -#~ "all processing rather than immediately after the first use." - -#~ msgid "" -#~ "`bpo-23998 `__: PyImport_ReInitLock() " -#~ "now checks for lock allocation error" -#~ msgstr "" -#~ "`bpo-23998 `__: PyImport_ReInitLock() " -#~ "now checks for lock allocation error" - -#~ msgid "Python 3.5.0 alpha 3" -#~ msgstr "Python 3.5.0 alpha 3" - -#~ msgid "Release date: 2015-03-28" -#~ msgstr "Date de sortie : 2015-03-28" - -#~ msgid "" -#~ "`bpo-23573 `__: Increased performance " -#~ "of string search operations (str.find, str.index, str.count, the in " -#~ "operator, str.split, str.partition) with arguments of different kinds " -#~ "(UCS1, UCS2, UCS4)." -#~ msgstr "" -#~ "`bpo-23573 `__: Increased performance " -#~ "of string search operations (str.find, str.index, str.count, the in " -#~ "operator, str.split, str.partition) with arguments of different kinds " -#~ "(UCS1, UCS2, UCS4)." - -#~ msgid "" -#~ "`bpo-23753 `__: Python doesn't " -#~ "support anymore platforms without stat() or fstat(), these functions are " -#~ "always required." -#~ msgstr "" -#~ "`bpo-23753 `__: Python doesn't " -#~ "support anymore platforms without stat() or fstat(), these functions are " -#~ "always required." - -#~ msgid "" -#~ "`bpo-23681 `__: The -b option now " -#~ "affects comparisons of bytes with int." -#~ msgstr "" -#~ "`bpo-23681 `__: The -b option now " -#~ "affects comparisons of bytes with int." - -#~ msgid "" -#~ "`bpo-23632 `__: Memoryviews now allow " -#~ "tuple indexing (including for multi-dimensional memoryviews)." -#~ msgstr "" -#~ "`bpo-23632 `__: Memoryviews now allow " -#~ "tuple indexing (including for multi-dimensional memoryviews)." - -#~ msgid "" -#~ "`bpo-23192 `__: Fixed generator " -#~ "lambdas. Patch by Bruno Cauet." -#~ msgstr "" -#~ "`bpo-23192 `__: Fixed generator " -#~ "lambdas. Patch by Bruno Cauet." - -#~ msgid "" -#~ "`bpo-23629 `__: Fix the default " -#~ "__sizeof__ implementation for variable-sized objects." -#~ msgstr "" -#~ "`bpo-23629 `__: Fix the default " -#~ "__sizeof__ implementation for variable-sized objects." - -#~ msgid "" -#~ "`bpo-14260 `__: The groupindex " -#~ "attribute of regular expression pattern object now is non-modifiable " -#~ "mapping." -#~ msgstr "" -#~ "`bpo-14260 `__: The groupindex " -#~ "attribute of regular expression pattern object now is non-modifiable " -#~ "mapping." - -#~ msgid "" -#~ "`bpo-23792 `__: Ignore " -#~ "KeyboardInterrupt when the pydoc pager is active. This mimics the " -#~ "behavior of the standard unix pagers, and prevents pipepager from " -#~ "shutting down while the pager itself is still running." -#~ msgstr "" -#~ "`bpo-23792 `__: Ignore " -#~ "KeyboardInterrupt when the pydoc pager is active. This mimics the " -#~ "behavior of the standard unix pagers, and prevents pipepager from " -#~ "shutting down while the pager itself is still running." - -#~ msgid "" -#~ "`bpo-23775 `__: pprint() of " -#~ "OrderedDict now outputs the same representation as repr()." -#~ msgstr "" -#~ "`bpo-23775 `__: pprint() of " -#~ "OrderedDict now outputs the same representation as repr()." - -#~ msgid "" -#~ "`bpo-23765 `__: Removed " -#~ "IsBadStringPtr calls in ctypes" -#~ msgstr "" -#~ "`bpo-23765 `__: Removed " -#~ "IsBadStringPtr calls in ctypes" - -#~ msgid "" -#~ "`bpo-22364 `__: Improved some re " -#~ "error messages using regex for hints." -#~ msgstr "" -#~ "`bpo-22364 `__: Improved some re " -#~ "error messages using regex for hints." - -#~ msgid "" -#~ "`bpo-23742 `__: ntpath.expandvars() " -#~ "no longer loses unbalanced single quotes." -#~ msgstr "" -#~ "`bpo-23742 `__: ntpath.expandvars() " -#~ "no longer loses unbalanced single quotes." - -#~ msgid "" -#~ "`bpo-21717 `__: The zipfile.ZipFile." -#~ "open function now supports 'x' (exclusive creation) mode." -#~ msgstr "" -#~ "`bpo-21717 `__: The zipfile.ZipFile." -#~ "open function now supports 'x' (exclusive creation) mode." - -#~ msgid "" -#~ "`bpo-21802 `__: The reader in " -#~ "BufferedRWPair now is closed even when closing writer failed in " -#~ "BufferedRWPair.close()." -#~ msgstr "" -#~ "`bpo-21802 `__: The reader in " -#~ "BufferedRWPair now is closed even when closing writer failed in " -#~ "BufferedRWPair.close()." - -#~ msgid "" -#~ "`bpo-23622 `__: Unknown escapes in " -#~ "regular expressions that consist of ``'\\'`` and ASCII letter now raise a " -#~ "deprecation warning and will be forbidden in Python 3.6." -#~ msgstr "" -#~ "`bpo-23622 `__: Unknown escapes in " -#~ "regular expressions that consist of ``'\\'`` and ASCII letter now raise a " -#~ "deprecation warning and will be forbidden in Python 3.6." - -#~ msgid "" -#~ "`bpo-23671 `__: string.Template now " -#~ "allows specifying the \"self\" parameter as a keyword argument. string." -#~ "Formatter now allows specifying the \"self\" and the \"format_string\" " -#~ "parameters as keyword arguments." -#~ msgstr "" -#~ "`bpo-23671 `__: string.Template now " -#~ "allows specifying the \"self\" parameter as a keyword argument. string." -#~ "Formatter now allows specifying the \"self\" and the \"format_string\" " -#~ "parameters as keyword arguments." - -#~ msgid "" -#~ "`bpo-23502 `__: The pprint module now " -#~ "supports mapping proxies." -#~ msgstr "" -#~ "`bpo-23502 `__: The pprint module now " -#~ "supports mapping proxies." - -#~ msgid "" -#~ "`bpo-17530 `__: pprint now wraps long " -#~ "bytes objects and bytearrays." -#~ msgstr "" -#~ "`bpo-17530 `__: pprint now wraps long " -#~ "bytes objects and bytearrays." - -#~ msgid "" -#~ "`bpo-22687 `__: Fixed some corner " -#~ "cases in breaking words in tetxtwrap. Got rid of quadratic complexity in " -#~ "breaking long words." -#~ msgstr "" -#~ "`bpo-22687 `__: Fixed some corner " -#~ "cases in breaking words in tetxtwrap. Got rid of quadratic complexity in " -#~ "breaking long words." - -#~ msgid "" -#~ "`bpo-4727 `__: The copy module now " -#~ "uses pickle protocol 4 (PEP 3154) and supports copying of instances of " -#~ "classes whose __new__ method takes keyword-only arguments." -#~ msgstr "" -#~ "`bpo-4727 `__: The copy module now " -#~ "uses pickle protocol 4 (PEP 3154) and supports copying of instances of " -#~ "classes whose __new__ method takes keyword-only arguments." - -#~ msgid "" -#~ "`bpo-23491 `__: Added a zipapp module " -#~ "to support creating executable zip file archives of Python code. " -#~ "Registered \".pyz\" and \".pyzw\" extensions on Windows for these " -#~ "archives (PEP 441)." -#~ msgstr "" -#~ "`bpo-23491 `__: Added a zipapp module " -#~ "to support creating executable zip file archives of Python code. " -#~ "Registered \".pyz\" and \".pyzw\" extensions on Windows for these " -#~ "archives (PEP 441)." - -#~ msgid "" -#~ "`bpo-23657 `__: Avoid explicit checks " -#~ "for str in zipapp, adding support for pathlib.Path objects as arguments." -#~ msgstr "" -#~ "`bpo-23657 `__: Avoid explicit checks " -#~ "for str in zipapp, adding support for pathlib.Path objects as arguments." - -#~ msgid "" -#~ "`bpo-23688 `__: Added support of " -#~ "arbitrary bytes-like objects and avoided unnecessary copying of " -#~ "memoryview in gzip.GzipFile.write(). Original patch by Wolfgang Maier." -#~ msgstr "" -#~ "`bpo-23688 `__: Added support of " -#~ "arbitrary bytes-like objects and avoided unnecessary copying of " -#~ "memoryview in gzip.GzipFile.write(). Original patch by Wolfgang Maier." - -#~ msgid "" -#~ "`bpo-23252 `__: Added support for " -#~ "writing ZIP files to unseekable streams." -#~ msgstr "" -#~ "`bpo-23252 `__: Added support for " -#~ "writing ZIP files to unseekable streams." - -#~ msgid "" -#~ "`bpo-23647 `__: Increase impalib's " -#~ "MAXLINE to accommodate modern mailbox sizes." -#~ msgstr "" -#~ "`bpo-23647 `__: Increase impalib's " -#~ "MAXLINE to accommodate modern mailbox sizes." - -#~ msgid "" -#~ "`bpo-23539 `__: If body is None, http." -#~ "client.HTTPConnection.request now sets Content-Length to 0 for PUT, POST, " -#~ "and PATCH headers to avoid 411 errors from some web servers." -#~ msgstr "" -#~ "`bpo-23539 `__: If body is None, http." -#~ "client.HTTPConnection.request now sets Content-Length to 0 for PUT, POST, " -#~ "and PATCH headers to avoid 411 errors from some web servers." - -#~ msgid "" -#~ "`bpo-22351 `__: The nntplib.NNTP " -#~ "constructor no longer leaves the connection and socket open until the " -#~ "garbage collector cleans them up. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-22351 `__: The nntplib.NNTP " -#~ "constructor no longer leaves the connection and socket open until the " -#~ "garbage collector cleans them up. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-23704 `__: collections.deque() " -#~ "objects now support methods for index(), insert(), and copy(). This " -#~ "allows deques to be registered as a MutableSequence and it improves their " -#~ "substitutability for lists." -#~ msgstr "" -#~ "`bpo-23704 `__: collections.deque() " -#~ "objects now support methods for index(), insert(), and copy(). This " -#~ "allows deques to be registered as a MutableSequence and it improves their " -#~ "substitutability for lists." - -#~ msgid "" -#~ "`bpo-23715 `__: :func:`signal." -#~ "sigwaitinfo` and :func:`signal.sigtimedwait` are now retried when " -#~ "interrupted by a signal not in the *sigset* parameter, if the signal " -#~ "handler does not raise an exception. signal.sigtimedwait() recomputes the " -#~ "timeout with a monotonic clock when it is retried." -#~ msgstr "" -#~ "`bpo-23715 `__: :func:`signal." -#~ "sigwaitinfo` and :func:`signal.sigtimedwait` are now retried when " -#~ "interrupted by a signal not in the *sigset* parameter, if the signal " -#~ "handler does not raise an exception. signal.sigtimedwait() recomputes the " -#~ "timeout with a monotonic clock when it is retried." - -#~ msgid "" -#~ "`bpo-23001 `__: Few functions in " -#~ "modules mmap, ossaudiodev, socket, ssl, and codecs, that accepted only " -#~ "read-only bytes-like object now accept writable bytes-like object too." -#~ msgstr "" -#~ "`bpo-23001 `__: Few functions in " -#~ "modules mmap, ossaudiodev, socket, ssl, and codecs, that accepted only " -#~ "read-only bytes-like object now accept writable bytes-like object too." - -#~ msgid "" -#~ "`bpo-23646 `__: If time.sleep() is " -#~ "interrupted by a signal, the sleep is now retried with the recomputed " -#~ "delay, except if the signal handler raises an exception (PEP 475)." -#~ msgstr "" -#~ "`bpo-23646 `__: If time.sleep() is " -#~ "interrupted by a signal, the sleep is now retried with the recomputed " -#~ "delay, except if the signal handler raises an exception (PEP 475)." - -#~ msgid "" -#~ "`bpo-23136 `__: _strptime now " -#~ "uniformly handles all days in week 0, including Dec 30 of previous year. " -#~ "Based on patch by Jim Carroll." -#~ msgstr "" -#~ "`bpo-23136 `__: _strptime now " -#~ "uniformly handles all days in week 0, including Dec 30 of previous year. " -#~ "Based on patch by Jim Carroll." - -#~ msgid "" -#~ "`bpo-23700 `__: Iterator of " -#~ "NamedTemporaryFile now keeps a reference to NamedTemporaryFile instance. " -#~ "Patch by Bohuslav Kabrda." -#~ msgstr "" -#~ "`bpo-23700 `__: Iterator of " -#~ "NamedTemporaryFile now keeps a reference to NamedTemporaryFile instance. " -#~ "Patch by Bohuslav Kabrda." - -#~ msgid "" -#~ "`bpo-22903 `__: The fake test case " -#~ "created by unittest.loader when it fails importing a test module is now " -#~ "picklable." -#~ msgstr "" -#~ "`bpo-22903 `__: The fake test case " -#~ "created by unittest.loader when it fails importing a test module is now " -#~ "picklable." - -#~ msgid "" -#~ "`bpo-22181 `__: On Linux, os." -#~ "urandom() now uses the new getrandom() syscall if available, syscall " -#~ "introduced in the Linux kernel 3.17. It is more reliable and more secure, " -#~ "because it avoids the need of a file descriptor and waits until the " -#~ "kernel has enough entropy." -#~ msgstr "" -#~ "`bpo-22181 `__: On Linux, os." -#~ "urandom() now uses the new getrandom() syscall if available, syscall " -#~ "introduced in the Linux kernel 3.17. It is more reliable and more secure, " -#~ "because it avoids the need of a file descriptor and waits until the " -#~ "kernel has enough entropy." - -#~ msgid "" -#~ "`bpo-2211 `__: Updated the " -#~ "implementation of the http.cookies.Morsel class. Setting attributes key, " -#~ "value and coded_value directly now is deprecated. update() and " -#~ "setdefault() now transform and check keys. Comparing for equality now " -#~ "takes into account attributes key, value and coded_value. copy() now " -#~ "returns a Morsel, not a dict. repr() now contains all attributes. " -#~ "Optimized checking keys and quoting values. Added new tests. Original " -#~ "patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-2211 `__: Updated the " -#~ "implementation of the http.cookies.Morsel class. Setting attributes key, " -#~ "value and coded_value directly now is deprecated. update() and " -#~ "setdefault() now transform and check keys. Comparing for equality now " -#~ "takes into account attributes key, value and coded_value. copy() now " -#~ "returns a Morsel, not a dict. repr() now contains all attributes. " -#~ "Optimized checking keys and quoting values. Added new tests. Original " -#~ "patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-18983 `__: Allow selection of " -#~ "output units in timeit. Patch by Julian Gindi." -#~ msgstr "" -#~ "`bpo-18983 `__: Allow selection of " -#~ "output units in timeit. Patch by Julian Gindi." - -#~ msgid "" -#~ "`bpo-23631 `__: Fix traceback." -#~ "format_list when a traceback has been mutated." -#~ msgstr "" -#~ "`bpo-23631 `__: Fix traceback." -#~ "format_list when a traceback has been mutated." - -#~ msgid "" -#~ "`bpo-23568 `__: Add rdivmod support " -#~ "to MagicMock() objects. Patch by Håkan Lövdahl." -#~ msgstr "" -#~ "`bpo-23568 `__: Add rdivmod support " -#~ "to MagicMock() objects. Patch by Håkan Lövdahl." - -#~ msgid "" -#~ "`bpo-2052 `__: Add charset parameter " -#~ "to HtmlDiff.make_file()." -#~ msgstr "" -#~ "`bpo-2052 `__: Add charset parameter " -#~ "to HtmlDiff.make_file()." - -#~ msgid "" -#~ "`bpo-23668 `__: Support os.truncate " -#~ "and os.ftruncate on Windows." -#~ msgstr "" -#~ "`bpo-23668 `__: Support os.truncate " -#~ "and os.ftruncate on Windows." - -#~ msgid "" -#~ "`bpo-23138 `__: Fixed parsing cookies " -#~ "with absent keys or values in cookiejar. Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-23138 `__: Fixed parsing cookies " -#~ "with absent keys or values in cookiejar. Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-23051 `__: multiprocessing.Pool " -#~ "methods imap() and imap_unordered() now handle exceptions raised by an " -#~ "iterator. Patch by Alon Diamant and Davin Potts." -#~ msgstr "" -#~ "`bpo-23051 `__: multiprocessing.Pool " -#~ "methods imap() and imap_unordered() now handle exceptions raised by an " -#~ "iterator. Patch by Alon Diamant and Davin Potts." - -#~ msgid "" -#~ "`bpo-23581 `__: Add matmul support to " -#~ "MagicMock. Patch by Håkan Lövdahl." -#~ msgstr "" -#~ "`bpo-23581 `__: Add matmul support to " -#~ "MagicMock. Patch by Håkan Lövdahl." - -#~ msgid "" -#~ "`bpo-23566 `__: enable(), register(), " -#~ "dump_traceback() and dump_traceback_later() functions of faulthandler now " -#~ "accept file descriptors. Patch by Wei Wu." -#~ msgstr "" -#~ "`bpo-23566 `__: enable(), register(), " -#~ "dump_traceback() and dump_traceback_later() functions of faulthandler now " -#~ "accept file descriptors. Patch by Wei Wu." - -#~ msgid "" -#~ "`bpo-22928 `__: Disabled HTTP header " -#~ "injections in http.client. Original patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-22928 `__: Disabled HTTP header " -#~ "injections in http.client. Original patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-23615 `__: Modules bz2, tarfile " -#~ "and tokenize now can be reloaded with imp.reload(). Patch by Thomas " -#~ "Kluyver." -#~ msgstr "" -#~ "`bpo-23615 `__: Modules bz2, tarfile " -#~ "and tokenize now can be reloaded with imp.reload(). Patch by Thomas " -#~ "Kluyver." - -#~ msgid "" -#~ "`bpo-23605 `__: os.walk() now calls " -#~ "os.scandir() instead of os.listdir(). The usage of os.scandir() reduces " -#~ "the number of calls to os.stat(). Initial patch written by Ben Hoyt." -#~ msgstr "" -#~ "`bpo-23605 `__: os.walk() now calls " -#~ "os.scandir() instead of os.listdir(). The usage of os.scandir() reduces " -#~ "the number of calls to os.stat(). Initial patch written by Ben Hoyt." - -#~ msgid "" -#~ "`bpo-23585 `__: make patchcheck will " -#~ "ensure the interpreter is built." -#~ msgstr "" -#~ "`bpo-23585 `__: make patchcheck will " -#~ "ensure the interpreter is built." - -#~ msgid "" -#~ "`bpo-23583 `__: Added tests for " -#~ "standard IO streams in IDLE." -#~ msgstr "" -#~ "`bpo-23583 `__: Added tests for " -#~ "standard IO streams in IDLE." - -#~ msgid "" -#~ "`bpo-22289 `__: Prevent " -#~ "test_urllib2net failures due to ftp connection timeout." -#~ msgstr "" -#~ "`bpo-22289 `__: Prevent " -#~ "test_urllib2net failures due to ftp connection timeout." - -#~ msgid "" -#~ "`bpo-22826 `__: The result of open() " -#~ "in Tools/freeze/bkfile.py is now better compatible with regular files (in " -#~ "particular it now supports the context management protocol)." -#~ msgstr "" -#~ "`bpo-22826 `__: The result of open() " -#~ "in Tools/freeze/bkfile.py is now better compatible with regular files (in " -#~ "particular it now supports the context management protocol)." - -#~ msgid "Python 3.5 alpha 2" -#~ msgstr "Python 3.5 alpha 2" - -#~ msgid "Release date: 2015-03-09" -#~ msgstr "Date de sortie : 2015-03-09" - -#~ msgid "" -#~ "`bpo-23571 `__: PyObject_Call() and " -#~ "PyCFunction_Call() now raise a SystemError if a function returns a result " -#~ "and raises an exception. The SystemError is chained to the previous " -#~ "exception." -#~ msgstr "" -#~ "`bpo-23571 `__: PyObject_Call() and " -#~ "PyCFunction_Call() now raise a SystemError if a function returns a result " -#~ "and raises an exception. The SystemError is chained to the previous " -#~ "exception." - -#~ msgid "" -#~ "`bpo-22524 `__: New os.scandir() " -#~ "function, part of the PEP 471: \"os.scandir() function -- a better and " -#~ "faster directory iterator\". Patch written by Ben Hoyt." -#~ msgstr "" -#~ "`bpo-22524 `__: New os.scandir() " -#~ "function, part of the PEP 471: \"os.scandir() function -- a better and " -#~ "faster directory iterator\". Patch written by Ben Hoyt." - -#~ msgid "" -#~ "`bpo-23103 `__: Reduced the memory " -#~ "consumption of IPv4Address and IPv6Address." -#~ msgstr "" -#~ "`bpo-23103 `__: Reduced the memory " -#~ "consumption of IPv4Address and IPv6Address." - -#~ msgid "" -#~ "`bpo-21793 `__: " -#~ "BaseHTTPRequestHandler again logs response code as numeric, not as " -#~ "stringified enum. Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-21793 `__: " -#~ "BaseHTTPRequestHandler again logs response code as numeric, not as " -#~ "stringified enum. Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-23476 `__: In the ssl module, " -#~ "enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST flag on certificate stores " -#~ "when it is available." -#~ msgstr "" -#~ "`bpo-23476 `__: In the ssl module, " -#~ "enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST flag on certificate stores " -#~ "when it is available." - -#~ msgid "" -#~ "`bpo-23576 `__: Avoid stalling in SSL " -#~ "reads when EOF has been reached in the SSL layer but the underlying " -#~ "connection hasn't been closed." -#~ msgstr "" -#~ "`bpo-23576 `__: Avoid stalling in SSL " -#~ "reads when EOF has been reached in the SSL layer but the underlying " -#~ "connection hasn't been closed." - -#~ msgid "" -#~ "`bpo-23504 `__: Added an __all__ to " -#~ "the types module." -#~ msgstr "" -#~ "`bpo-23504 `__: Added an __all__ to " -#~ "the types module." - -#~ msgid "" -#~ "`bpo-23563 `__: Optimized utility " -#~ "functions in urllib.parse." -#~ msgstr "" -#~ "`bpo-23563 `__: Optimized utility " -#~ "functions in urllib.parse." - -#~ msgid "" -#~ "`bpo-7830 `__: Flatten nested " -#~ "functools.partial." -#~ msgstr "" -#~ "`bpo-7830 `__: Flatten nested " -#~ "functools.partial." - -#~ msgid "" -#~ "`bpo-20204 `__: Added the __module__ " -#~ "attribute to _tkinter classes." -#~ msgstr "" -#~ "`bpo-20204 `__: Added the __module__ " -#~ "attribute to _tkinter classes." - -#~ msgid "" -#~ "`bpo-19980 `__: Improved help() for " -#~ "non-recognized strings. help('') now shows the help on str. " -#~ "help('help') now shows the help on help(). Original patch by Mark " -#~ "Lawrence." -#~ msgstr "" -#~ "`bpo-19980 `__: Improved help() for " -#~ "non-recognized strings. help('') now shows the help on str. " -#~ "help('help') now shows the help on help(). Original patch by Mark " -#~ "Lawrence." - -#~ msgid "" -#~ "`bpo-23521 `__: Corrected pure python " -#~ "implementation of timedelta division." -#~ msgstr "" -#~ "`bpo-23521 `__: Corrected pure python " -#~ "implementation of timedelta division." - -#~ msgid "" -#~ "`bpo-21619 `__: Popen objects no " -#~ "longer leave a zombie after exit in the with statement if the pipe was " -#~ "broken. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-21619 `__: Popen objects no " -#~ "longer leave a zombie after exit in the with statement if the pipe was " -#~ "broken. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-22936 `__: Make it possible to " -#~ "show local variables in tracebacks for both the traceback module and " -#~ "unittest." -#~ msgstr "" -#~ "`bpo-22936 `__: Make it possible to " -#~ "show local variables in tracebacks for both the traceback module and " -#~ "unittest." - -#~ msgid "" -#~ "`bpo-15955 `__: Add an option to " -#~ "limit the output size in bz2.decompress(). Patch by Nikolaus Rath." -#~ msgstr "" -#~ "`bpo-15955 `__: Add an option to " -#~ "limit the output size in bz2.decompress(). Patch by Nikolaus Rath." - -#~ msgid "" -#~ "`bpo-6639 `__: Module-level turtle " -#~ "functions no longer raise TclError after closing the window." -#~ msgstr "" -#~ "`bpo-6639 `__: Module-level turtle " -#~ "functions no longer raise TclError after closing the window." - -#~ msgid "" -#~ "`bpo-23215 `__: Multibyte codecs with " -#~ "custom error handlers that ignores errors consumed too much memory and " -#~ "raised SystemError or MemoryError. Original patch by Aleksi Torhamo." -#~ msgstr "" -#~ "`bpo-23215 `__: Multibyte codecs with " -#~ "custom error handlers that ignores errors consumed too much memory and " -#~ "raised SystemError or MemoryError. Original patch by Aleksi Torhamo." - -#~ msgid "" -#~ "`bpo-5700 `__: io.FileIO() called " -#~ "flush() after closing the file. flush() was not called in close() if " -#~ "closefd=False." -#~ msgstr "" -#~ "`bpo-5700 `__: io.FileIO() called " -#~ "flush() after closing the file. flush() was not called in close() if " -#~ "closefd=False." - -#~ msgid "" -#~ "`bpo-23374 `__: Fixed pydoc failure " -#~ "with non-ASCII files when stdout encoding differs from file system " -#~ "encoding (e.g. on Mac OS)." -#~ msgstr "" -#~ "`bpo-23374 `__: Fixed pydoc failure " -#~ "with non-ASCII files when stdout encoding differs from file system " -#~ "encoding (e.g. on Mac OS)." - -#~ msgid "" -#~ "`bpo-23481 `__: Remove RC4 from the " -#~ "SSL module's default cipher list." -#~ msgstr "" -#~ "`bpo-23481 `__: Remove RC4 from the " -#~ "SSL module's default cipher list." - -#~ msgid "" -#~ "`bpo-21548 `__: Fix pydoc.synopsis() " -#~ "and pydoc.apropos() on modules with empty docstrings." -#~ msgstr "" -#~ "`bpo-21548 `__: Fix pydoc.synopsis() " -#~ "and pydoc.apropos() on modules with empty docstrings." - -#~ msgid "" -#~ "`bpo-22885 `__: Fixed arbitrary code " -#~ "execution vulnerability in the dbm.dumb module. Original patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`bpo-22885 `__: Fixed arbitrary code " -#~ "execution vulnerability in the dbm.dumb module. Original patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`bpo-23239 `__: ssl.match_hostname() " -#~ "now supports matching of IP addresses." -#~ msgstr "" -#~ "`bpo-23239 `__: ssl.match_hostname() " -#~ "now supports matching of IP addresses." - -#~ msgid "" -#~ "`bpo-23146 `__: Fix mishandling of " -#~ "absolute Windows paths with forward slashes in pathlib." -#~ msgstr "" -#~ "`bpo-23146 `__: Fix mishandling of " -#~ "absolute Windows paths with forward slashes in pathlib." - -#~ msgid "" -#~ "`bpo-23096 `__: Pickle representation " -#~ "of floats with protocol 0 now is the same for both Python and C " -#~ "implementations." -#~ msgstr "" -#~ "`bpo-23096 `__: Pickle representation " -#~ "of floats with protocol 0 now is the same for both Python and C " -#~ "implementations." - -#~ msgid "" -#~ "`bpo-19105 `__: pprint now more " -#~ "efficiently uses free space at the right." -#~ msgstr "" -#~ "`bpo-19105 `__: pprint now more " -#~ "efficiently uses free space at the right." - -#~ msgid "" -#~ "`bpo-14910 `__: Add allow_abbrev " -#~ "parameter to argparse.ArgumentParser. Patch by Jonathan Paugh, Steven " -#~ "Bethard, paul j3 and Daniel Eriksson." -#~ msgstr "" -#~ "`bpo-14910 `__: Add allow_abbrev " -#~ "parameter to argparse.ArgumentParser. Patch by Jonathan Paugh, Steven " -#~ "Bethard, paul j3 and Daniel Eriksson." - -#~ msgid "" -#~ "`bpo-21717 `__: tarfile.open() now " -#~ "supports 'x' (exclusive creation) mode." -#~ msgstr "" -#~ "`bpo-21717 `__: tarfile.open() now " -#~ "supports 'x' (exclusive creation) mode." - -#~ msgid "" -#~ "`bpo-23344 `__: marshal.dumps() is " -#~ "now 20-25% faster on average." -#~ msgstr "" -#~ "`bpo-23344 `__: marshal.dumps() is " -#~ "now 20-25% faster on average." - -#~ msgid "" -#~ "`bpo-20416 `__: marshal.dumps() with " -#~ "protocols 3 and 4 is now 40-50% faster on average." -#~ msgstr "" -#~ "`bpo-20416 `__: marshal.dumps() with " -#~ "protocols 3 and 4 is now 40-50% faster on average." - -#~ msgid "" -#~ "`bpo-23421 `__: Fixed compression in " -#~ "tarfile CLI. Patch by wdv4758h." -#~ msgstr "" -#~ "`bpo-23421 `__: Fixed compression in " -#~ "tarfile CLI. Patch by wdv4758h." - -#~ msgid "" -#~ "`bpo-23367 `__: Fix possible " -#~ "overflows in the unicodedata module." -#~ msgstr "" -#~ "`bpo-23367 `__: Fix possible " -#~ "overflows in the unicodedata module." - -#~ msgid "" -#~ "`bpo-23361 `__: Fix possible overflow " -#~ "in Windows subprocess creation code." -#~ msgstr "" -#~ "`bpo-23361 `__: Fix possible overflow " -#~ "in Windows subprocess creation code." - -#~ msgid "" -#~ "`bpo-19705 `__: turtledemo now has a " -#~ "visual sorting algorithm demo. Original patch from Jason Yeo." -#~ msgstr "" -#~ "`bpo-19705 `__: turtledemo now has a " -#~ "visual sorting algorithm demo. Original patch from Jason Yeo." - -#~ msgid "" -#~ "`bpo-23801 `__: Fix issue where cgi." -#~ "FieldStorage did not always ignore the entire preamble to a multipart " -#~ "body." -#~ msgstr "" -#~ "`bpo-23801 `__: Fix issue where cgi." -#~ "FieldStorage did not always ignore the entire preamble to a multipart " -#~ "body." - -#~ msgid "" -#~ "`bpo-23445 `__: pydebug builds now " -#~ "use \"gcc -Og\" where possible, to make the resulting executable faster." -#~ msgstr "" -#~ "`bpo-23445 `__: pydebug builds now " -#~ "use \"gcc -Og\" where possible, to make the resulting executable faster." - -#~ msgid "" -#~ "`bpo-23686 `__: Update OS X 10.5 " -#~ "installer build to use OpenSSL 1.0.2a." -#~ msgstr "" -#~ "`bpo-23686 `__: Update OS X 10.5 " -#~ "installer build to use OpenSSL 1.0.2a." - -#~ msgid "" -#~ "`bpo-20204 `__: Deprecation warning " -#~ "is now raised for builtin types without the __module__ attribute." -#~ msgstr "" -#~ "`bpo-20204 `__: Deprecation warning " -#~ "is now raised for builtin types without the __module__ attribute." - -#~ msgid "" -#~ "`bpo-23465 `__: Implement PEP 486 - " -#~ "Make the Python Launcher aware of virtual environments. Patch by Paul " -#~ "Moore." -#~ msgstr "" -#~ "`bpo-23465 `__: Implement PEP 486 - " -#~ "Make the Python Launcher aware of virtual environments. Patch by Paul " -#~ "Moore." - -#~ msgid "" -#~ "`bpo-23437 `__: Make user scripts " -#~ "directory versioned on Windows. Patch by Paul Moore." -#~ msgstr "" -#~ "`bpo-23437 `__: Make user scripts " -#~ "directory versioned on Windows. Patch by Paul Moore." - -#~ msgid "Python 3.5 alpha 1" -#~ msgstr "Python 3.5 alpha 1" - -#~ msgid "Release date: 2015-02-08" -#~ msgstr "Date de sortie : 2015-02-08" - -#~ msgid "" -#~ "`bpo-23285 `__: PEP 475 - EINTR " -#~ "handling." -#~ msgstr "" -#~ "`bpo-23285 `__: PEP 475 - EINTR " -#~ "handling." - -#~ msgid "" -#~ "`bpo-22735 `__: Fix many edge cases " -#~ "(including crashes) involving custom mro() implementations." -#~ msgstr "" -#~ "`bpo-22735 `__: Fix many edge cases " -#~ "(including crashes) involving custom mro() implementations." - -#~ msgid "" -#~ "`bpo-22896 `__: Avoid using " -#~ "PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " -#~ "PyObject_AsWriteBuffer()." -#~ msgstr "" -#~ "`bpo-22896 `__: Avoid using " -#~ "PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " -#~ "PyObject_AsWriteBuffer()." - -#~ msgid "" -#~ "`bpo-21295 `__: Revert some changes " -#~ "(`bpo-16795 `__) to AST line numbers " -#~ "and column offsets that constituted a regression." -#~ msgstr "" -#~ "`bpo-21295 `__: Revert some changes " -#~ "(`bpo-16795 `__) to AST line numbers " -#~ "and column offsets that constituted a regression." - -#~ msgid "" -#~ "`bpo-22986 `__: Allow changing an " -#~ "object's __class__ between a dynamic type and static type in some cases." -#~ msgstr "" -#~ "`bpo-22986 `__: Allow changing an " -#~ "object's __class__ between a dynamic type and static type in some cases." - -#~ msgid "" -#~ "`bpo-15859 `__: " -#~ "PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and " -#~ "PyUnicode_EncodeCodePage() now raise an exception if the object is not a " -#~ "Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case " -#~ "on platforms other than Windows. Patch written by Campbell Barton." -#~ msgstr "" -#~ "`bpo-15859 `__: " -#~ "PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and " -#~ "PyUnicode_EncodeCodePage() now raise an exception if the object is not a " -#~ "Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case " -#~ "on platforms other than Windows. Patch written by Campbell Barton." - -#~ msgid "" -#~ "`bpo-21408 `__: The default __ne__() " -#~ "now returns NotImplemented if __eq__() returned NotImplemented. Original " -#~ "patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-21408 `__: The default __ne__() " -#~ "now returns NotImplemented if __eq__() returned NotImplemented. Original " -#~ "patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-23321 `__: Fixed a crash in str." -#~ "decode() when error handler returned replacment string longer than " -#~ "mailformed input data." -#~ msgstr "" -#~ "`bpo-23321 `__: Fixed a crash in str." -#~ "decode() when error handler returned replacment string longer than " -#~ "mailformed input data." - -#~ msgid "" -#~ "`bpo-22286 `__: The \"backslashreplace" -#~ "\" error handlers now works with decoding and translating." -#~ msgstr "" -#~ "`bpo-22286 `__: The \"backslashreplace" -#~ "\" error handlers now works with decoding and translating." - -#~ msgid "" -#~ "`bpo-23253 `__: Delay-load " -#~ "ShellExecute[AW] in os.startfile for reduced startup overhead on Windows." -#~ msgstr "" -#~ "`bpo-23253 `__: Delay-load " -#~ "ShellExecute[AW] in os.startfile for reduced startup overhead on Windows." - -#~ msgid "" -#~ "`bpo-22038 `__: pyatomic.h now uses " -#~ "stdatomic.h or GCC built-in functions for atomic memory access if " -#~ "available. Patch written by Vitor de Lima and Gustavo Temple." -#~ msgstr "" -#~ "`bpo-22038 `__: pyatomic.h now uses " -#~ "stdatomic.h or GCC built-in functions for atomic memory access if " -#~ "available. Patch written by Vitor de Lima and Gustavo Temple." - -#~ msgid "" -#~ "`bpo-20284 `__: %-interpolation (aka " -#~ "printf) formatting added for bytes and bytearray." -#~ msgstr "" -#~ "`bpo-20284 `__: %-interpolation (aka " -#~ "printf) formatting added for bytes and bytearray." - -#~ msgid "" -#~ "`bpo-23048 `__: Fix jumping out of an " -#~ "infinite while loop in the pdb." -#~ msgstr "" -#~ "`bpo-23048 `__: Fix jumping out of an " -#~ "infinite while loop in the pdb." - -#~ msgid "" -#~ "`bpo-20335 `__: bytes constructor now " -#~ "raises TypeError when encoding or errors is specified with non-string " -#~ "argument. Based on patch by Renaud Blanch." -#~ msgstr "" -#~ "`bpo-20335 `__: bytes constructor now " -#~ "raises TypeError when encoding or errors is specified with non-string " -#~ "argument. Based on patch by Renaud Blanch." - -#~ msgid "" -#~ "`bpo-22834 `__: If the current " -#~ "working directory ends up being set to a non-existent directory then " -#~ "import will no longer raise FileNotFoundError." -#~ msgstr "" -#~ "`bpo-22834 `__: If the current " -#~ "working directory ends up being set to a non-existent directory then " -#~ "import will no longer raise FileNotFoundError." - -#~ msgid "" -#~ "`bpo-22869 `__: Move the interpreter " -#~ "startup & shutdown code to a new dedicated pylifecycle.c module" -#~ msgstr "" -#~ "`bpo-22869 `__: Move the interpreter " -#~ "startup & shutdown code to a new dedicated pylifecycle.c module" - -#~ msgid "" -#~ "`bpo-22847 `__: Improve method cache " -#~ "efficiency." -#~ msgstr "" -#~ "`bpo-22847 `__: Improve method cache " -#~ "efficiency." - -#~ msgid "" -#~ "`bpo-22335 `__: Fix crash when trying " -#~ "to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform." -#~ msgstr "" -#~ "`bpo-22335 `__: Fix crash when trying " -#~ "to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform." - -#~ msgid "" -#~ "`bpo-22653 `__: Fix an assertion " -#~ "failure in debug mode when doing a reentrant dict insertion in debug mode." -#~ msgstr "" -#~ "`bpo-22653 `__: Fix an assertion " -#~ "failure in debug mode when doing a reentrant dict insertion in debug mode." - -#~ msgid "" -#~ "`bpo-22643 `__: Fix integer overflow " -#~ "in Unicode case operations (upper, lower, title, swapcase, casefold)." -#~ msgstr "" -#~ "`bpo-22643 `__: Fix integer overflow " -#~ "in Unicode case operations (upper, lower, title, swapcase, casefold)." - -#~ msgid "" -#~ "`bpo-17636 `__: Circular imports " -#~ "involving relative imports are now supported." -#~ msgstr "" -#~ "`bpo-17636 `__: Circular imports " -#~ "involving relative imports are now supported." - -#~ msgid "" -#~ "`bpo-22604 `__: Fix assertion error " -#~ "in debug mode when dividing a complex number by (nan+0j)." -#~ msgstr "" -#~ "`bpo-22604 `__: Fix assertion error " -#~ "in debug mode when dividing a complex number by (nan+0j)." - -#~ msgid "" -#~ "`bpo-21052 `__: Do not raise " -#~ "ImportWarning when sys.path_hooks or sys.meta_path are set to None." -#~ msgstr "" -#~ "`bpo-21052 `__: Do not raise " -#~ "ImportWarning when sys.path_hooks or sys.meta_path are set to None." - -#~ msgid "" -#~ "`bpo-16518 `__: Use 'bytes-like " -#~ "object required' in error messages that previously used the far more " -#~ "cryptic \"'x' does not support the buffer protocol." -#~ msgstr "" -#~ "`bpo-16518 `__: Use 'bytes-like " -#~ "object required' in error messages that previously used the far more " -#~ "cryptic \"'x' does not support the buffer protocol." - -#~ msgid "" -#~ "`bpo-22470 `__: Fixed integer " -#~ "overflow issues in \"backslashreplace\", \"xmlcharrefreplace\", and " -#~ "\"surrogatepass\" error handlers." -#~ msgstr "" -#~ "`bpo-22470 `__: Fixed integer " -#~ "overflow issues in \"backslashreplace\", \"xmlcharrefreplace\", and " -#~ "\"surrogatepass\" error handlers." - -#~ msgid "" -#~ "`bpo-22540 `__: speed up " -#~ "`PyObject_IsInstance` and `PyObject_IsSubclass` in the common case that " -#~ "the second argument has metaclass `type`." -#~ msgstr "" -#~ "`bpo-22540 `__: speed up " -#~ "`PyObject_IsInstance` and `PyObject_IsSubclass` in the common case that " -#~ "the second argument has metaclass `type`." - -#~ msgid "" -#~ "`bpo-18711 `__: Add a new " -#~ "`PyErr_FormatV` function, similar to `PyErr_Format` but accepting a " -#~ "`va_list` argument." -#~ msgstr "" -#~ "`bpo-18711 `__: Add a new " -#~ "`PyErr_FormatV` function, similar to `PyErr_Format` but accepting a " -#~ "`va_list` argument." - -#~ msgid "" -#~ "`bpo-22520 `__: Fix overflow checking " -#~ "when generating the repr of a unicode object." -#~ msgstr "" -#~ "`bpo-22520 `__: Fix overflow checking " -#~ "when generating the repr of a unicode object." - -#~ msgid "" -#~ "`bpo-22519 `__: Fix overflow checking " -#~ "in PyBytes_Repr." -#~ msgstr "" -#~ "`bpo-22519 `__: Fix overflow checking " -#~ "in PyBytes_Repr." - -#~ msgid "" -#~ "`bpo-22518 `__: Fix integer overflow " -#~ "issues in latin-1 encoding." -#~ msgstr "" -#~ "`bpo-22518 `__: Fix integer overflow " -#~ "issues in latin-1 encoding." - -#~ msgid "" -#~ "`bpo-16324 `__: _charset parameter of " -#~ "MIMEText now also accepts email.charset.Charset instances. Initial patch " -#~ "by Claude Paroz." -#~ msgstr "" -#~ "`bpo-16324 `__: _charset parameter of " -#~ "MIMEText now also accepts email.charset.Charset instances. Initial patch " -#~ "by Claude Paroz." - -#~ msgid "" -#~ "`bpo-1764286 `__: Fix inspect." -#~ "getsource() to support decorated functions. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-1764286 `__: Fix inspect." -#~ "getsource() to support decorated functions. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-18554 `__: os.__all__ includes " -#~ "posix functions." -#~ msgstr "" -#~ "`bpo-18554 `__: os.__all__ includes " -#~ "posix functions." - -#~ msgid "" -#~ "`bpo-21391 `__: Use os.path.abspath " -#~ "in the shutil module." -#~ msgstr "" -#~ "`bpo-21391 `__: Use os.path.abspath " -#~ "in the shutil module." - -#~ msgid "" -#~ "`bpo-11471 `__: avoid generating a " -#~ "JUMP_FORWARD instruction at the end of an if-block if there is no else-" -#~ "clause. Original patch by Eugene Toder." -#~ msgstr "" -#~ "`bpo-11471 `__: avoid generating a " -#~ "JUMP_FORWARD instruction at the end of an if-block if there is no else-" -#~ "clause. Original patch by Eugene Toder." - -#~ msgid "" -#~ "`bpo-22215 `__: Now ValueError is " -#~ "raised instead of TypeError when str or bytes argument contains not " -#~ "permitted null character or byte." -#~ msgstr "" -#~ "`bpo-22215 `__: Now ValueError is " -#~ "raised instead of TypeError when str or bytes argument contains not " -#~ "permitted null character or byte." - -#~ msgid "" -#~ "`bpo-22258 `__: Fix the internal " -#~ "function set_inheritable() on Illumos. This platform exposes the function " -#~ "``ioctl(FIOCLEX)``, but calling it fails with errno is ENOTTY: " -#~ "\"Inappropriate ioctl for device\". set_inheritable() now falls back to " -#~ "the slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``)." -#~ msgstr "" -#~ "`bpo-22258 `__: Fix the internal " -#~ "function set_inheritable() on Illumos. This platform exposes the function " -#~ "``ioctl(FIOCLEX)``, but calling it fails with errno is ENOTTY: " -#~ "\"Inappropriate ioctl for device\". set_inheritable() now falls back to " -#~ "the slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``)." - -#~ msgid "" -#~ "`bpo-21389 `__: Displaying the " -#~ "__qualname__ of the underlying function in the repr of a bound method." -#~ msgstr "" -#~ "`bpo-21389 `__: Displaying the " -#~ "__qualname__ of the underlying function in the repr of a bound method." - -#~ msgid "" -#~ "`bpo-22206 `__: Using pthread, " -#~ "PyThread_create_key() now sets errno to ENOMEM and returns -1 (error) on " -#~ "integer overflow." -#~ msgstr "" -#~ "`bpo-22206 `__: Using pthread, " -#~ "PyThread_create_key() now sets errno to ENOMEM and returns -1 (error) on " -#~ "integer overflow." - -#~ msgid "" -#~ "`bpo-20184 `__: Argument Clinic based " -#~ "signature introspection added for 30 of the builtin functions." -#~ msgstr "" -#~ "`bpo-20184 `__: Argument Clinic based " -#~ "signature introspection added for 30 of the builtin functions." - -#~ msgid "" -#~ "`bpo-22116 `__: C functions and " -#~ "methods (of the 'builtin_function_or_method' type) can now be " -#~ "weakref'ed. Patch by Wei Wu." -#~ msgstr "" -#~ "`bpo-22116 `__: C functions and " -#~ "methods (of the 'builtin_function_or_method' type) can now be " -#~ "weakref'ed. Patch by Wei Wu." - -#~ msgid "" -#~ "`bpo-22077 `__: Improve index error " -#~ "messages for bytearrays, bytes, lists, and tuples by adding 'or slices'. " -#~ "Added ', not ' for bytearrays. Original patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-22077 `__: Improve index error " -#~ "messages for bytearrays, bytes, lists, and tuples by adding 'or slices'. " -#~ "Added ', not ' for bytearrays. Original patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-20179 `__: Apply Argument Clinic " -#~ "to bytes and bytearray. Patch by Tal Einat." -#~ msgstr "" -#~ "`bpo-20179 `__: Apply Argument Clinic " -#~ "to bytes and bytearray. Patch by Tal Einat." - -#~ msgid "" -#~ "`bpo-22082 `__: Clear interned " -#~ "strings in slotdefs." -#~ msgstr "" -#~ "`bpo-22082 `__: Clear interned " -#~ "strings in slotdefs." - -#~ msgid "" -#~ "`bpo-21897 `__: Fix a crash with the " -#~ "f_locals attribute with closure variables when frame.clear() has been " -#~ "called." -#~ msgstr "" -#~ "`bpo-21897 `__: Fix a crash with the " -#~ "f_locals attribute with closure variables when frame.clear() has been " -#~ "called." - -#~ msgid "" -#~ "`bpo-21205 `__: Add a new " -#~ "``__qualname__`` attribute to generator, the qualified name, and use it " -#~ "in the representation of a generator (``repr(gen)``). The default name of " -#~ "the generator (``__name__`` attribute) is now get from the function " -#~ "instead of the code. Use ``gen.gi_code.co_name`` to get the name of the " -#~ "code." -#~ msgstr "" -#~ "`bpo-21205 `__: Add a new " -#~ "``__qualname__`` attribute to generator, the qualified name, and use it " -#~ "in the representation of a generator (``repr(gen)``). The default name of " -#~ "the generator (``__name__`` attribute) is now get from the function " -#~ "instead of the code. Use ``gen.gi_code.co_name`` to get the name of the " -#~ "code." - -#~ msgid "" -#~ "`bpo-21669 `__: With the aid of " -#~ "heuristics in SyntaxError.__init__, the parser now attempts to generate " -#~ "more meaningful (or at least more search engine friendly) error messages " -#~ "when \"exec\" and \"print\" are used as statements." -#~ msgstr "" -#~ "`bpo-21669 `__: With the aid of " -#~ "heuristics in SyntaxError.__init__, the parser now attempts to generate " -#~ "more meaningful (or at least more search engine friendly) error messages " -#~ "when \"exec\" and \"print\" are used as statements." - -#~ msgid "" -#~ "`bpo-21642 `__: In the conditional if-" -#~ "else expression, allow an integer written with no space between itself " -#~ "and the ``else`` keyword (e.g. ``True if 42else False``) to be valid " -#~ "syntax." -#~ msgstr "" -#~ "`bpo-21642 `__: In the conditional if-" -#~ "else expression, allow an integer written with no space between itself " -#~ "and the ``else`` keyword (e.g. ``True if 42else False``) to be valid " -#~ "syntax." - -#~ msgid "" -#~ "`bpo-21523 `__: Fix over-pessimistic " -#~ "computation of the stack effect of some opcodes in the compiler. This " -#~ "also fixes a quadratic compilation time issue noticeable when compiling " -#~ "code with a large number of \"and\" and \"or\" operators." -#~ msgstr "" -#~ "`bpo-21523 `__: Fix over-pessimistic " -#~ "computation of the stack effect of some opcodes in the compiler. This " -#~ "also fixes a quadratic compilation time issue noticeable when compiling " -#~ "code with a large number of \"and\" and \"or\" operators." - -#~ msgid "" -#~ "`bpo-21418 `__: Fix a crash in the " -#~ "builtin function super() when called without argument and without current " -#~ "frame (ex: embedded Python)." -#~ msgstr "" -#~ "`bpo-21418 `__: Fix a crash in the " -#~ "builtin function super() when called without argument and without current " -#~ "frame (ex: embedded Python)." - -#~ msgid "" -#~ "`bpo-21425 `__: Fix flushing of " -#~ "standard streams in the interactive interpreter." -#~ msgstr "" -#~ "`bpo-21425 `__: Fix flushing of " -#~ "standard streams in the interactive interpreter." - -#~ msgid "" -#~ "`bpo-21435 `__: In rare cases, when " -#~ "running finalizers on objects in cyclic trash a bad pointer dereference " -#~ "could occur due to a subtle flaw in internal iteration logic." -#~ msgstr "" -#~ "`bpo-21435 `__: In rare cases, when " -#~ "running finalizers on objects in cyclic trash a bad pointer dereference " -#~ "could occur due to a subtle flaw in internal iteration logic." - -#~ msgid "" -#~ "`bpo-21377 `__: PyBytes_Concat() now " -#~ "tries to concatenate in-place when the first argument has a reference " -#~ "count of 1. Patch by Nikolaus Rath." -#~ msgstr "" -#~ "`bpo-21377 `__: PyBytes_Concat() now " -#~ "tries to concatenate in-place when the first argument has a reference " -#~ "count of 1. Patch by Nikolaus Rath." - -#~ msgid "" -#~ "`bpo-20355 `__: -W command line " -#~ "options now have higher priority than the PYTHONWARNINGS environment " -#~ "variable. Patch by Arfrever." -#~ msgstr "" -#~ "`bpo-20355 `__: -W command line " -#~ "options now have higher priority than the PYTHONWARNINGS environment " -#~ "variable. Patch by Arfrever." - -#~ msgid "" -#~ "`bpo-21274 `__: Define PATH_MAX for " -#~ "GNU/Hurd in Python/pythonrun.c." -#~ msgstr "" -#~ "`bpo-21274 `__: Define PATH_MAX for " -#~ "GNU/Hurd in Python/pythonrun.c." - -#~ msgid "" -#~ "`bpo-20904 `__: Support setting FPU " -#~ "precision on m68k." -#~ msgstr "" -#~ "`bpo-20904 `__: Support setting FPU " -#~ "precision on m68k." - -#~ msgid "" -#~ "`bpo-21209 `__: Fix sending tuples to " -#~ "custom generator objects with the yield from syntax." -#~ msgstr "" -#~ "`bpo-21209 `__: Fix sending tuples to " -#~ "custom generator objects with the yield from syntax." - -#~ msgid "" -#~ "`bpo-21193 `__: pow(a, b, c) now " -#~ "raises ValueError rather than TypeError when b is negative. Patch by " -#~ "Josh Rosenberg." -#~ msgstr "" -#~ "`bpo-21193 `__: pow(a, b, c) now " -#~ "raises ValueError rather than TypeError when b is negative. Patch by " -#~ "Josh Rosenberg." - -#~ msgid "" -#~ "PEP 465 and `bpo-21176 `__: Add the " -#~ "'@' operator for matrix multiplication." -#~ msgstr "" -#~ "PEP 465 and `bpo-21176 `__: Add the " -#~ "'@' operator for matrix multiplication." - -#~ msgid "" -#~ "`bpo-21134 `__: Fix segfault when str " -#~ "is called on an uninitialized UnicodeEncodeError, UnicodeDecodeError, or " -#~ "UnicodeTranslateError object." -#~ msgstr "" -#~ "`bpo-21134 `__: Fix segfault when str " -#~ "is called on an uninitialized UnicodeEncodeError, UnicodeDecodeError, or " -#~ "UnicodeTranslateError object." - -#~ msgid "" -#~ "`bpo-19537 `__: Fix PyUnicode_DATA() " -#~ "alignment under m68k. Patch by Andreas Schwab." -#~ msgstr "" -#~ "`bpo-19537 `__: Fix PyUnicode_DATA() " -#~ "alignment under m68k. Patch by Andreas Schwab." - -#~ msgid "" -#~ "`bpo-20929 `__: Add a type cast to " -#~ "avoid shifting a negative number." -#~ msgstr "" -#~ "`bpo-20929 `__: Add a type cast to " -#~ "avoid shifting a negative number." - -#~ msgid "" -#~ "`bpo-20731 `__: Properly position in " -#~ "source code files even if they are opened in text mode. Patch by Serhiy " -#~ "Storchaka." -#~ msgstr "" -#~ "`bpo-20731 `__: Properly position in " -#~ "source code files even if they are opened in text mode. Patch by Serhiy " -#~ "Storchaka." - -#~ msgid "" -#~ "`bpo-20637 `__: Key-sharing now also " -#~ "works for instance dictionaries of subclasses. Patch by Peter " -#~ "Ingebretson." -#~ msgstr "" -#~ "`bpo-20637 `__: Key-sharing now also " -#~ "works for instance dictionaries of subclasses. Patch by Peter " -#~ "Ingebretson." - -#~ msgid "" -#~ "`bpo-8297 `__: Attributes missing from " -#~ "modules now include the module name in the error text. Original patch by " -#~ "ysj.ray." -#~ msgstr "" -#~ "`bpo-8297 `__: Attributes missing from " -#~ "modules now include the module name in the error text. Original patch by " -#~ "ysj.ray." - -#~ msgid "" -#~ "`bpo-19995 `__: %c, %o, %x, and %X " -#~ "now raise TypeError on non-integer input." -#~ msgstr "" -#~ "`bpo-19995 `__: %c, %o, %x, and %X " -#~ "now raise TypeError on non-integer input." - -#~ msgid "" -#~ "`bpo-19655 `__: The ASDL parser - " -#~ "used by the build process to generate code for managing the Python AST in " -#~ "C - was rewritten. The new parser is self contained and does not require " -#~ "to carry long the spark.py parser-generator library; spark.py was removed " -#~ "from the source base." -#~ msgstr "" -#~ "`bpo-19655 `__: The ASDL parser - " -#~ "used by the build process to generate code for managing the Python AST in " -#~ "C - was rewritten. The new parser is self contained and does not require " -#~ "to carry long the spark.py parser-generator library; spark.py was removed " -#~ "from the source base." - -#~ msgid "" -#~ "`bpo-12546 `__: Allow ``\\x00`` to be " -#~ "used as a fill character when using str, int, float, and complex " -#~ "__format__ methods." -#~ msgstr "" -#~ "`bpo-12546 `__: Allow ``\\x00`` to be " -#~ "used as a fill character when using str, int, float, and complex " -#~ "__format__ methods." - -#~ msgid "" -#~ "`bpo-20480 `__: Add ipaddress." -#~ "reverse_pointer. Patch by Leon Weber." -#~ msgstr "" -#~ "`bpo-20480 `__: Add ipaddress." -#~ "reverse_pointer. Patch by Leon Weber." - -#~ msgid "" -#~ "`bpo-13598 `__: Modify string." -#~ "Formatter to support auto-numbering of replacement fields. It now matches " -#~ "the behavior of str.format() in this regard. Patches by Phil Elson and " -#~ "Ramchandra Apte." -#~ msgstr "" -#~ "`bpo-13598 `__: Modify string." -#~ "Formatter to support auto-numbering of replacement fields. It now matches " -#~ "the behavior of str.format() in this regard. Patches by Phil Elson and " -#~ "Ramchandra Apte." - -#~ msgid "" -#~ "`bpo-8931 `__: Make alternate " -#~ "formatting ('#') for type 'c' raise an exception. In versions prior to " -#~ "3.5, '#' with 'c' had no effect. Now specifying it is an error. Patch by " -#~ "Torsten Landschoff." -#~ msgstr "" -#~ "`bpo-8931 `__: Make alternate " -#~ "formatting ('#') for type 'c' raise an exception. In versions prior to " -#~ "3.5, '#' with 'c' had no effect. Now specifying it is an error. Patch by " -#~ "Torsten Landschoff." - -#~ msgid "" -#~ "`bpo-23165 `__: Perform overflow " -#~ "checks before allocating memory in the _Py_char2wchar function." -#~ msgstr "" -#~ "`bpo-23165 `__: Perform overflow " -#~ "checks before allocating memory in the _Py_char2wchar function." - -#~ msgid "" -#~ "`bpo-23399 `__: pyvenv creates " -#~ "relative symlinks where possible." -#~ msgstr "" -#~ "`bpo-23399 `__: pyvenv creates " -#~ "relative symlinks where possible." - -#~ msgid "" -#~ "`bpo-20289 `__: cgi.FieldStorage() " -#~ "now supports the context management protocol." -#~ msgstr "" -#~ "`bpo-20289 `__: cgi.FieldStorage() " -#~ "now supports the context management protocol." - -#~ msgid "" -#~ "`bpo-13128 `__: Print response " -#~ "headers for CONNECT requests when debuglevel > 0. Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-13128 `__: Print response " -#~ "headers for CONNECT requests when debuglevel > 0. Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-15381 `__: Optimized io.BytesIO " -#~ "to make less allocations and copyings." -#~ msgstr "" -#~ "`bpo-15381 `__: Optimized io.BytesIO " -#~ "to make less allocations and copyings." - -#~ msgid "" -#~ "`bpo-22818 `__: Splitting on a " -#~ "pattern that could match an empty string now raises a warning. Patterns " -#~ "that can only match empty strings are now rejected." -#~ msgstr "" -#~ "`bpo-22818 `__: Splitting on a " -#~ "pattern that could match an empty string now raises a warning. Patterns " -#~ "that can only match empty strings are now rejected." - -#~ msgid "" -#~ "`bpo-23099 `__: Closing io.BytesIO " -#~ "with exported buffer is rejected now to prevent corrupting exported " -#~ "buffer." -#~ msgstr "" -#~ "`bpo-23099 `__: Closing io.BytesIO " -#~ "with exported buffer is rejected now to prevent corrupting exported " -#~ "buffer." - -#~ msgid "" -#~ "`bpo-23326 `__: Removed __ne__ " -#~ "implementations. Since fixing default __ne__ implementation in " -#~ "`bpo-21408 `__ they are redundant." -#~ msgstr "" -#~ "`bpo-23326 `__: Removed __ne__ " -#~ "implementations. Since fixing default __ne__ implementation in " -#~ "`bpo-21408 `__ they are redundant." - -#~ msgid "" -#~ "`bpo-23363 `__: Fix possible overflow " -#~ "in itertools.permutations." -#~ msgstr "" -#~ "`bpo-23363 `__: Fix possible overflow " -#~ "in itertools.permutations." - -#~ msgid "" -#~ "`bpo-23364 `__: Fix possible overflow " -#~ "in itertools.product." -#~ msgstr "" -#~ "`bpo-23364 `__: Fix possible overflow " -#~ "in itertools.product." - -#~ msgid "" -#~ "`bpo-23366 `__: Fixed possible " -#~ "integer overflow in itertools.combinations." -#~ msgstr "" -#~ "`bpo-23366 `__: Fixed possible " -#~ "integer overflow in itertools.combinations." - -#~ msgid "" -#~ "`bpo-23369 `__: Fixed possible " -#~ "integer overflow in _json.encode_basestring_ascii." -#~ msgstr "" -#~ "`bpo-23369 `__: Fixed possible " -#~ "integer overflow in _json.encode_basestring_ascii." - -#~ msgid "" -#~ "`bpo-23353 `__: Fix the exception " -#~ "handling of generators in PyEval_EvalFrameEx(). At entry, save or swap " -#~ "the exception state even if PyEval_EvalFrameEx() is called with " -#~ "throwflag=0. At exit, the exception state is now always restored or " -#~ "swapped, not only if why is WHY_YIELD or WHY_RETURN. Patch co-written " -#~ "with Antoine Pitrou." -#~ msgstr "" -#~ "`bpo-23353 `__: Fix the exception " -#~ "handling of generators in PyEval_EvalFrameEx(). At entry, save or swap " -#~ "the exception state even if PyEval_EvalFrameEx() is called with " -#~ "throwflag=0. At exit, the exception state is now always restored or " -#~ "swapped, not only if why is WHY_YIELD or WHY_RETURN. Patch co-written " -#~ "with Antoine Pitrou." - -#~ msgid "" -#~ "`bpo-14099 `__: Restored support of " -#~ "writing ZIP files to tellable but non-seekable streams." -#~ msgstr "" -#~ "`bpo-14099 `__: Restored support of " -#~ "writing ZIP files to tellable but non-seekable streams." - -#~ msgid "" -#~ "`bpo-14099 `__: Writing to ZipFile " -#~ "and reading multiple ZipExtFiles is threadsafe now." -#~ msgstr "" -#~ "`bpo-14099 `__: Writing to ZipFile " -#~ "and reading multiple ZipExtFiles is threadsafe now." - -#~ msgid "" -#~ "`bpo-19361 `__: JSON decoder now " -#~ "raises JSONDecodeError instead of ValueError." -#~ msgstr "" -#~ "`bpo-19361 `__: JSON decoder now " -#~ "raises JSONDecodeError instead of ValueError." - -#~ msgid "" -#~ "`bpo-18518 `__: timeit now rejects " -#~ "statements which can't be compiled outside a function or a loop (e.g. " -#~ "\"return\" or \"break\")." -#~ msgstr "" -#~ "`bpo-18518 `__: timeit now rejects " -#~ "statements which can't be compiled outside a function or a loop (e.g. " -#~ "\"return\" or \"break\")." - -#~ msgid "" -#~ "`bpo-23094 `__: Fixed readline with " -#~ "frames in Python implementation of pickle." -#~ msgstr "" -#~ "`bpo-23094 `__: Fixed readline with " -#~ "frames in Python implementation of pickle." - -#~ msgid "" -#~ "`bpo-23268 `__: Fixed bugs in the " -#~ "comparison of ipaddress classes." -#~ msgstr "" -#~ "`bpo-23268 `__: Fixed bugs in the " -#~ "comparison of ipaddress classes." - -#~ msgid "" -#~ "`bpo-21408 `__: Removed incorrect " -#~ "implementations of __ne__() which didn't returned NotImplemented if " -#~ "__eq__() returned NotImplemented. The default __ne__() now works " -#~ "correctly." -#~ msgstr "" -#~ "`bpo-21408 `__: Removed incorrect " -#~ "implementations of __ne__() which didn't returned NotImplemented if " -#~ "__eq__() returned NotImplemented. The default __ne__() now works " -#~ "correctly." - -#~ msgid "" -#~ "`bpo-19996 `__: :class:`email." -#~ "feedparser.FeedParser` now handles (malformed) headers with no key rather " -#~ "than assuming the body has started." -#~ msgstr "" -#~ "`bpo-19996 `__: :class:`email." -#~ "feedparser.FeedParser` now handles (malformed) headers with no key rather " -#~ "than assuming the body has started." - -#~ msgid "" -#~ "`bpo-20188 `__: Support Application-" -#~ "Layer Protocol Negotiation (ALPN) in the ssl module." -#~ msgstr "" -#~ "`bpo-20188 `__: Support Application-" -#~ "Layer Protocol Negotiation (ALPN) in the ssl module." - -#~ msgid "" -#~ "`bpo-23133 `__: Pickling of ipaddress " -#~ "objects now produces more compact and portable representation." -#~ msgstr "" -#~ "`bpo-23133 `__: Pickling of ipaddress " -#~ "objects now produces more compact and portable representation." - -#~ msgid "" -#~ "`bpo-23248 `__: Update ssl error " -#~ "codes from latest OpenSSL git master." -#~ msgstr "" -#~ "`bpo-23248 `__: Update ssl error " -#~ "codes from latest OpenSSL git master." - -#~ msgid "" -#~ "`bpo-23266 `__: Much faster " -#~ "implementation of ipaddress.collapse_addresses() when there are many non-" -#~ "consecutive addresses." -#~ msgstr "" -#~ "`bpo-23266 `__: Much faster " -#~ "implementation of ipaddress.collapse_addresses() when there are many non-" -#~ "consecutive addresses." - -#~ msgid "" -#~ "`bpo-23098 `__: 64-bit dev_t is now " -#~ "supported in the os module." -#~ msgstr "" -#~ "`bpo-23098 `__: 64-bit dev_t is now " -#~ "supported in the os module." - -#~ msgid "" -#~ "`bpo-21817 `__: When an exception is " -#~ "raised in a task submitted to a ProcessPoolExecutor, the remote traceback " -#~ "is now displayed in the parent process. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-21817 `__: When an exception is " -#~ "raised in a task submitted to a ProcessPoolExecutor, the remote traceback " -#~ "is now displayed in the parent process. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-15955 `__: Add an option to " -#~ "limit output size when decompressing LZMA data. Patch by Nikolaus Rath " -#~ "and Martin Panter." -#~ msgstr "" -#~ "`bpo-15955 `__: Add an option to " -#~ "limit output size when decompressing LZMA data. Patch by Nikolaus Rath " -#~ "and Martin Panter." - -#~ msgid "" -#~ "`bpo-23250 `__: In the http.cookies " -#~ "module, capitalize \"HttpOnly\" and \"Secure\" as they are written in the " -#~ "standard." -#~ msgstr "" -#~ "`bpo-23250 `__: In the http.cookies " -#~ "module, capitalize \"HttpOnly\" and \"Secure\" as they are written in the " -#~ "standard." - -#~ msgid "" -#~ "`bpo-23063 `__: In the disutils' " -#~ "check command, fix parsing of reST with code or code-block directives." -#~ msgstr "" -#~ "`bpo-23063 `__: In the disutils' " -#~ "check command, fix parsing of reST with code or code-block directives." - -#~ msgid "" -#~ "`bpo-23209 `__, #23225: selectors." -#~ "BaseSelector.get_key() now raises a RuntimeError if the selector is " -#~ "closed. And selectors.BaseSelector.close() now clears its internal " -#~ "reference to the selector mapping to break a reference cycle. Initial " -#~ "patch written by Martin Richard." -#~ msgstr "" -#~ "`bpo-23209 `__, #23225: selectors." -#~ "BaseSelector.get_key() now raises a RuntimeError if the selector is " -#~ "closed. And selectors.BaseSelector.close() now clears its internal " -#~ "reference to the selector mapping to break a reference cycle. Initial " -#~ "patch written by Martin Richard." - -#~ msgid "" -#~ "`bpo-17911 `__: Provide a way to seed " -#~ "the linecache for a PEP-302 module without actually loading the code." -#~ msgstr "" -#~ "`bpo-17911 `__: Provide a way to seed " -#~ "the linecache for a PEP-302 module without actually loading the code." - -#~ msgid "" -#~ "`bpo-17911 `__: Provide a new object " -#~ "API for traceback, including the ability to not lookup lines at all until " -#~ "the traceback is actually rendered, without any trace of the original " -#~ "objects being kept alive." -#~ msgstr "" -#~ "`bpo-17911 `__: Provide a new object " -#~ "API for traceback, including the ability to not lookup lines at all until " -#~ "the traceback is actually rendered, without any trace of the original " -#~ "objects being kept alive." - -#~ msgid "" -#~ "`bpo-19777 `__: Provide a home() " -#~ "classmethod on Path objects. Contributed by Victor Salgado and Mayank " -#~ "Tripathi." -#~ msgstr "" -#~ "`bpo-19777 `__: Provide a home() " -#~ "classmethod on Path objects. Contributed by Victor Salgado and Mayank " -#~ "Tripathi." - -#~ msgid "" -#~ "`bpo-23206 `__: Make ``json." -#~ "dumps(..., ensure_ascii=False)`` as fast as the default case of " -#~ "``ensure_ascii=True``. Patch by Naoki Inada." -#~ msgstr "" -#~ "`bpo-23206 `__: Make ``json." -#~ "dumps(..., ensure_ascii=False)`` as fast as the default case of " -#~ "``ensure_ascii=True``. Patch by Naoki Inada." - -#~ msgid "" -#~ "`bpo-23185 `__: Add math.inf and math." -#~ "nan constants." -#~ msgstr "" -#~ "`bpo-23185 `__: Add math.inf and math." -#~ "nan constants." - -#~ msgid "" -#~ "`bpo-23186 `__: Add ssl.SSLObject." -#~ "shared_ciphers() and ssl.SSLSocket.shared_ciphers() to fetch the client's " -#~ "list ciphers sent at handshake." -#~ msgstr "" -#~ "`bpo-23186 `__: Add ssl.SSLObject." -#~ "shared_ciphers() and ssl.SSLSocket.shared_ciphers() to fetch the client's " -#~ "list ciphers sent at handshake." - -#~ msgid "" -#~ "`bpo-23143 `__: Remove compatibility " -#~ "with OpenSSLs older than 0.9.8." -#~ msgstr "" -#~ "`bpo-23143 `__: Remove compatibility " -#~ "with OpenSSLs older than 0.9.8." - -#~ msgid "" -#~ "`bpo-23132 `__: Improve performance " -#~ "and introspection support of comparison methods created by functool." -#~ "total_ordering." -#~ msgstr "" -#~ "`bpo-23132 `__: Improve performance " -#~ "and introspection support of comparison methods created by functool." -#~ "total_ordering." - -#~ msgid "" -#~ "`bpo-19776 `__: Add an expanduser() " -#~ "method on Path objects." -#~ msgstr "" -#~ "`bpo-19776 `__: Add an expanduser() " -#~ "method on Path objects." - -#~ msgid "" -#~ "`bpo-23112 `__: Fix SimpleHTTPServer " -#~ "to correctly carry the query string and fragment when it redirects to add " -#~ "a trailing slash." -#~ msgstr "" -#~ "`bpo-23112 `__: Fix SimpleHTTPServer " -#~ "to correctly carry the query string and fragment when it redirects to add " -#~ "a trailing slash." - -#~ msgid "" -#~ "`bpo-21793 `__: Added http.HTTPStatus " -#~ "enums (i.e. HTTPStatus.OK, HTTPStatus.NOT_FOUND). Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-21793 `__: Added http.HTTPStatus " -#~ "enums (i.e. HTTPStatus.OK, HTTPStatus.NOT_FOUND). Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-23093 `__: In the io, module " -#~ "allow more operations to work on detached streams." -#~ msgstr "" -#~ "`bpo-23093 `__: In the io, module " -#~ "allow more operations to work on detached streams." - -#~ msgid "" -#~ "`bpo-23111 `__: In the ftplib, make " -#~ "ssl.PROTOCOL_SSLv23 the default protocol version." -#~ msgstr "" -#~ "`bpo-23111 `__: In the ftplib, make " -#~ "ssl.PROTOCOL_SSLv23 the default protocol version." - -#~ msgid "" -#~ "`bpo-22585 `__: On OpenBSD 5.6 and " -#~ "newer, os.urandom() now calls getentropy(), instead of reading /dev/" -#~ "urandom, to get pseudo-random bytes." -#~ msgstr "" -#~ "`bpo-22585 `__: On OpenBSD 5.6 and " -#~ "newer, os.urandom() now calls getentropy(), instead of reading /dev/" -#~ "urandom, to get pseudo-random bytes." - -#~ msgid "" -#~ "`bpo-19104 `__: pprint now produces " -#~ "evaluable output for wrapped strings." -#~ msgstr "" -#~ "`bpo-19104 `__: pprint now produces " -#~ "evaluable output for wrapped strings." - -#~ msgid "" -#~ "`bpo-23071 `__: Added missing names " -#~ "to codecs.__all__. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-23071 `__: Added missing names " -#~ "to codecs.__all__. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-22783 `__: Pickling now uses the " -#~ "NEWOBJ opcode instead of the NEWOBJ_EX opcode if possible." -#~ msgstr "" -#~ "`bpo-22783 `__: Pickling now uses the " -#~ "NEWOBJ opcode instead of the NEWOBJ_EX opcode if possible." - -#~ msgid "" -#~ "`bpo-15513 `__: Added a __sizeof__ " -#~ "implementation for pickle classes." -#~ msgstr "" -#~ "`bpo-15513 `__: Added a __sizeof__ " -#~ "implementation for pickle classes." - -#~ msgid "" -#~ "`bpo-19858 `__: pickletools." -#~ "optimize() now aware of the MEMOIZE opcode, can produce more compact " -#~ "result and no longer produces invalid output if input data contains " -#~ "MEMOIZE opcodes together with PUT or BINPUT opcodes." -#~ msgstr "" -#~ "`bpo-19858 `__: pickletools." -#~ "optimize() now aware of the MEMOIZE opcode, can produce more compact " -#~ "result and no longer produces invalid output if input data contains " -#~ "MEMOIZE opcodes together with PUT or BINPUT opcodes." - -#~ msgid "" -#~ "`bpo-22095 `__: Fixed HTTPConnection." -#~ "set_tunnel with default port. The port value in the host header was set " -#~ "to \"None\". Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-22095 `__: Fixed HTTPConnection." -#~ "set_tunnel with default port. The port value in the host header was set " -#~ "to \"None\". Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-23016 `__: A warning no longer " -#~ "produces an AttributeError when the program is run with pythonw.exe." -#~ msgstr "" -#~ "`bpo-23016 `__: A warning no longer " -#~ "produces an AttributeError when the program is run with pythonw.exe." - -#~ msgid "" -#~ "`bpo-21775 `__: shutil.copytree(): " -#~ "fix crash when copying to VFAT. An exception handler assumed that OSError " -#~ "objects always have a 'winerror' attribute. That is not the case, so the " -#~ "exception handler itself raised AttributeError when run on Linux (and, " -#~ "presumably, any other non-Windows OS). Patch by Greg Ward." -#~ msgstr "" -#~ "`bpo-21775 `__: shutil.copytree(): " -#~ "fix crash when copying to VFAT. An exception handler assumed that OSError " -#~ "objects always have a 'winerror' attribute. That is not the case, so the " -#~ "exception handler itself raised AttributeError when run on Linux (and, " -#~ "presumably, any other non-Windows OS). Patch by Greg Ward." - -#~ msgid "" -#~ "`bpo-1218234 `__: Fix inspect." -#~ "getsource() to load updated source of reloaded module. Initial patch by " -#~ "Berker Peksag." -#~ msgstr "" -#~ "`bpo-1218234 `__: Fix inspect." -#~ "getsource() to load updated source of reloaded module. Initial patch by " -#~ "Berker Peksag." - -#~ msgid "" -#~ "`bpo-21740 `__: Support wrapped " -#~ "callables in doctest. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-21740 `__: Support wrapped " -#~ "callables in doctest. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-23009 `__: Make sure selectors." -#~ "EpollSelecrtor.select() works when no FD is registered." -#~ msgstr "" -#~ "`bpo-23009 `__: Make sure selectors." -#~ "EpollSelecrtor.select() works when no FD is registered." - -#~ msgid "" -#~ "`bpo-22959 `__: In the constructor of " -#~ "http.client.HTTPSConnection, prefer the context's check_hostname " -#~ "attribute over the *check_hostname* parameter." -#~ msgstr "" -#~ "`bpo-22959 `__: In the constructor of " -#~ "http.client.HTTPSConnection, prefer the context's check_hostname " -#~ "attribute over the *check_hostname* parameter." - -#~ msgid "" -#~ "`bpo-22696 `__: Add function :func:" -#~ "`sys.is_finalizing` to know about interpreter shutdown." -#~ msgstr "" -#~ "`bpo-22696 `__: Add function :func:" -#~ "`sys.is_finalizing` to know about interpreter shutdown." - -#~ msgid "" -#~ "`bpo-16043 `__: Add a default limit " -#~ "for the amount of data xmlrpclib.gzip_decode will return. This resolves " -#~ "CVE-2013-1753." -#~ msgstr "" -#~ "`bpo-16043 `__: Add a default limit " -#~ "for the amount of data xmlrpclib.gzip_decode will return. This resolves " -#~ "CVE-2013-1753." - -#~ msgid "" -#~ "`bpo-14099 `__: ZipFile.open() no " -#~ "longer reopen the underlying file. Objects returned by ZipFile.open() " -#~ "can now operate independently of the ZipFile even if the ZipFile was " -#~ "created by passing in a file-like object as the first argument to the " -#~ "constructor." -#~ msgstr "" -#~ "`bpo-14099 `__: ZipFile.open() no " -#~ "longer reopen the underlying file. Objects returned by ZipFile.open() " -#~ "can now operate independently of the ZipFile even if the ZipFile was " -#~ "created by passing in a file-like object as the first argument to the " -#~ "constructor." - -#~ msgid "" -#~ "`bpo-22966 `__: Fix __pycache__ pyc " -#~ "file name clobber when pyc_compile is asked to compile a source file " -#~ "containing multiple dots in the source file name." -#~ msgstr "" -#~ "`bpo-22966 `__: Fix __pycache__ pyc " -#~ "file name clobber when pyc_compile is asked to compile a source file " -#~ "containing multiple dots in the source file name." - -#~ msgid "" -#~ "`bpo-21971 `__: Update turtledemo doc " -#~ "and add module to the index." -#~ msgstr "" -#~ "`bpo-21971 `__: Update turtledemo doc " -#~ "and add module to the index." - -#~ msgid "" -#~ "`bpo-21032 `__: Fixed socket leak if " -#~ "HTTPConnection.getresponse() fails. Original patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-21032 `__: Fixed socket leak if " -#~ "HTTPConnection.getresponse() fails. Original patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-22407 `__: Deprecated the use of " -#~ "re.LOCALE flag with str patterns or re.ASCII. It was newer worked." -#~ msgstr "" -#~ "`bpo-22407 `__: Deprecated the use of " -#~ "re.LOCALE flag with str patterns or re.ASCII. It was newer worked." - -#~ msgid "" -#~ "`bpo-22902 `__: The \"ip\" command is " -#~ "now used on Linux to determine MAC address in uuid.getnode(). Pach by " -#~ "Bruno Cauet." -#~ msgstr "" -#~ "`bpo-22902 `__: The \"ip\" command is " -#~ "now used on Linux to determine MAC address in uuid.getnode(). Pach by " -#~ "Bruno Cauet." - -#~ msgid "" -#~ "`bpo-22960 `__: Add a context " -#~ "argument to xmlrpclib.ServerProxy constructor." -#~ msgstr "" -#~ "`bpo-22960 `__: Add a context " -#~ "argument to xmlrpclib.ServerProxy constructor." - -#~ msgid "" -#~ "`bpo-22389 `__: Add contextlib." -#~ "redirect_stderr()." -#~ msgstr "" -#~ "`bpo-22389 `__: Add contextlib." -#~ "redirect_stderr()." - -#~ msgid "" -#~ "`bpo-21356 `__: Make ssl.RAND_egd() " -#~ "optional to support LibreSSL. The availability of the function is checked " -#~ "during the compilation. Patch written by Bernard Spil." -#~ msgstr "" -#~ "`bpo-21356 `__: Make ssl.RAND_egd() " -#~ "optional to support LibreSSL. The availability of the function is checked " -#~ "during the compilation. Patch written by Bernard Spil." - -#~ msgid "" -#~ "`bpo-22915 `__: SAX parser now " -#~ "supports files opened with file descriptor or bytes path." -#~ msgstr "" -#~ "`bpo-22915 `__: SAX parser now " -#~ "supports files opened with file descriptor or bytes path." - -#~ msgid "" -#~ "`bpo-22609 `__: Constructors and " -#~ "update methods of mapping classes in the collections module now accept " -#~ "the self keyword argument." -#~ msgstr "" -#~ "`bpo-22609 `__: Constructors and " -#~ "update methods of mapping classes in the collections module now accept " -#~ "the self keyword argument." - -#~ msgid "" -#~ "`bpo-22940 `__: Add readline." -#~ "append_history_file." -#~ msgstr "" -#~ "`bpo-22940 `__: Add readline." -#~ "append_history_file." - -#~ msgid "" -#~ "`bpo-19676 `__: Added the " -#~ "\"namereplace\" error handler." -#~ msgstr "" -#~ "`bpo-19676 `__: Added the " -#~ "\"namereplace\" error handler." - -#~ msgid "" -#~ "`bpo-22788 `__: Add *context* " -#~ "parameter to logging.handlers.HTTPHandler." -#~ msgstr "" -#~ "`bpo-22788 `__: Add *context* " -#~ "parameter to logging.handlers.HTTPHandler." - -#~ msgid "" -#~ "`bpo-22921 `__: Allow SSLContext to " -#~ "take the *hostname* parameter even if OpenSSL doesn't support SNI." -#~ msgstr "" -#~ "`bpo-22921 `__: Allow SSLContext to " -#~ "take the *hostname* parameter even if OpenSSL doesn't support SNI." - -#~ msgid "" -#~ "`bpo-22894 `__: TestCase.subTest() " -#~ "would cause the test suite to be stopped when in failfast mode, even in " -#~ "the absence of failures." -#~ msgstr "" -#~ "`bpo-22894 `__: TestCase.subTest() " -#~ "would cause the test suite to be stopped when in failfast mode, even in " -#~ "the absence of failures." - -#~ msgid "" -#~ "`bpo-22796 `__: HTTP cookie parsing " -#~ "is now stricter, in order to protect against potential injection attacks." -#~ msgstr "" -#~ "`bpo-22796 `__: HTTP cookie parsing " -#~ "is now stricter, in order to protect against potential injection attacks." - -#~ msgid "" -#~ "`bpo-22370 `__: Windows detection in " -#~ "pathlib is now more robust." -#~ msgstr "" -#~ "`bpo-22370 `__: Windows detection in " -#~ "pathlib is now more robust." - -#~ msgid "" -#~ "`bpo-22841 `__: Reject coroutines in " -#~ "asyncio add_signal_handler(). Patch by Ludovic.Gasc." -#~ msgstr "" -#~ "`bpo-22841 `__: Reject coroutines in " -#~ "asyncio add_signal_handler(). Patch by Ludovic.Gasc." - -#~ msgid "" -#~ "`bpo-19494 `__: Added urllib.request." -#~ "HTTPBasicPriorAuthHandler. Patch by Matej Cepl." -#~ msgstr "" -#~ "`bpo-19494 `__: Added urllib.request." -#~ "HTTPBasicPriorAuthHandler. Patch by Matej Cepl." - -#~ msgid "" -#~ "`bpo-22578 `__: Added attributes to " -#~ "the re.error class." -#~ msgstr "" -#~ "`bpo-22578 `__: Added attributes to " -#~ "the re.error class." - -#~ msgid "" -#~ "`bpo-22849 `__: Fix possible double " -#~ "free in the io.TextIOWrapper constructor." -#~ msgstr "" -#~ "`bpo-22849 `__: Fix possible double " -#~ "free in the io.TextIOWrapper constructor." - -#~ msgid "" -#~ "`bpo-12728 `__: Different Unicode " -#~ "characters having the same uppercase but different lowercase are now " -#~ "matched in case-insensitive regular expressions." -#~ msgstr "" -#~ "`bpo-12728 `__: Different Unicode " -#~ "characters having the same uppercase but different lowercase are now " -#~ "matched in case-insensitive regular expressions." - -#~ msgid "" -#~ "`bpo-22821 `__: Fixed fcntl() with " -#~ "integer argument on 64-bit big-endian platforms." -#~ msgstr "" -#~ "`bpo-22821 `__: Fixed fcntl() with " -#~ "integer argument on 64-bit big-endian platforms." - -#~ msgid "" -#~ "`bpo-21650 `__: Add an `--sort-keys` " -#~ "option to json.tool CLI." -#~ msgstr "" -#~ "`bpo-21650 `__: Add an `--sort-keys` " -#~ "option to json.tool CLI." - -#~ msgid "" -#~ "`bpo-22824 `__: Updated reprlib " -#~ "output format for sets to use set literals. Patch contributed by Berker " -#~ "Peksag." -#~ msgstr "" -#~ "`bpo-22824 `__: Updated reprlib " -#~ "output format for sets to use set literals. Patch contributed by Berker " -#~ "Peksag." - -#~ msgid "" -#~ "`bpo-22824 `__: Updated reprlib " -#~ "output format for arrays to display empty arrays without an unnecessary " -#~ "empty list. Suggested by Serhiy Storchaka." -#~ msgstr "" -#~ "`bpo-22824 `__: Updated reprlib " -#~ "output format for arrays to display empty arrays without an unnecessary " -#~ "empty list. Suggested by Serhiy Storchaka." - -#~ msgid "" -#~ "`bpo-22406 `__: Fixed the uu_codec " -#~ "codec incorrectly ported to 3.x. Based on patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-22406 `__: Fixed the uu_codec " -#~ "codec incorrectly ported to 3.x. Based on patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-17293 `__: uuid.getnode() now " -#~ "determines MAC address on AIX using netstat. Based on patch by Aivars " -#~ "Kalvāns." -#~ msgstr "" -#~ "`bpo-17293 `__: uuid.getnode() now " -#~ "determines MAC address on AIX using netstat. Based on patch by Aivars " -#~ "Kalvāns." - -#~ msgid "" -#~ "`bpo-22769 `__: Fixed ttk.Treeview." -#~ "tag_has() when called without arguments." -#~ msgstr "" -#~ "`bpo-22769 `__: Fixed ttk.Treeview." -#~ "tag_has() when called without arguments." - -#~ msgid "" -#~ "`bpo-22417 `__: Verify certificates " -#~ "by default in httplib (PEP 476)." -#~ msgstr "" -#~ "`bpo-22417 `__: Verify certificates " -#~ "by default in httplib (PEP 476)." - -#~ msgid "" -#~ "`bpo-22775 `__: Fixed unpickling of " -#~ "http.cookies.SimpleCookie with protocol 2 and above. Patch by Tim Graham." -#~ msgstr "" -#~ "`bpo-22775 `__: Fixed unpickling of " -#~ "http.cookies.SimpleCookie with protocol 2 and above. Patch by Tim Graham." - -#~ msgid "" -#~ "`bpo-22776 `__: Brought excluded code " -#~ "into the scope of a try block in SysLogHandler.emit()." -#~ msgstr "" -#~ "`bpo-22776 `__: Brought excluded code " -#~ "into the scope of a try block in SysLogHandler.emit()." - -#~ msgid "" -#~ "`bpo-22665 `__: Add missing " -#~ "get_terminal_size and SameFileError to shutil.__all__." -#~ msgstr "" -#~ "`bpo-22665 `__: Add missing " -#~ "get_terminal_size and SameFileError to shutil.__all__." - -#~ msgid "" -#~ "`bpo-6623 `__: Remove deprecated Netrc " -#~ "class in the ftplib module. Patch by Matt Chaput." -#~ msgstr "" -#~ "`bpo-6623 `__: Remove deprecated Netrc " -#~ "class in the ftplib module. Patch by Matt Chaput." - -#~ msgid "" -#~ "`bpo-17381 `__: Fixed handling of " -#~ "case-insensitive ranges in regular expressions." -#~ msgstr "" -#~ "`bpo-17381 `__: Fixed handling of " -#~ "case-insensitive ranges in regular expressions." - -#~ msgid "" -#~ "`bpo-22410 `__: Module level " -#~ "functions in the re module now cache compiled locale-dependent regular " -#~ "expressions taking into account the locale." -#~ msgstr "" -#~ "`bpo-22410 `__: Module level " -#~ "functions in the re module now cache compiled locale-dependent regular " -#~ "expressions taking into account the locale." - -#~ msgid "" -#~ "`bpo-22759 `__: Query methods on " -#~ "pathlib.Path() (exists(), is_dir(), etc.) now return False when the " -#~ "underlying stat call raises NotADirectoryError." -#~ msgstr "" -#~ "`bpo-22759 `__: Query methods on " -#~ "pathlib.Path() (exists(), is_dir(), etc.) now return False when the " -#~ "underlying stat call raises NotADirectoryError." - -#~ msgid "" -#~ "`bpo-8876 `__: distutils now falls " -#~ "back to copying files when hard linking doesn't work. This allows use " -#~ "with special filesystems such as VirtualBox shared folders." -#~ msgstr "" -#~ "`bpo-8876 `__: distutils now falls " -#~ "back to copying files when hard linking doesn't work. This allows use " -#~ "with special filesystems such as VirtualBox shared folders." - -#~ msgid "" -#~ "`bpo-22217 `__: Implemented reprs of " -#~ "classes in the zipfile module." -#~ msgstr "" -#~ "`bpo-22217 `__: Implemented reprs of " -#~ "classes in the zipfile module." - -#~ msgid "" -#~ "`bpo-22457 `__: Honour load_tests in " -#~ "the start_dir of discovery." -#~ msgstr "" -#~ "`bpo-22457 `__: Honour load_tests in " -#~ "the start_dir of discovery." - -#~ msgid "" -#~ "`bpo-18216 `__: gettext now raises an " -#~ "error when a .mo file has an unsupported major version number. Patch by " -#~ "Aaron Hill." -#~ msgstr "" -#~ "`bpo-18216 `__: gettext now raises an " -#~ "error when a .mo file has an unsupported major version number. Patch by " -#~ "Aaron Hill." - -#~ msgid "" -#~ "`bpo-13918 `__: Provide a locale." -#~ "delocalize() function which can remove locale-specific number formatting " -#~ "from a string representing a number, without then converting it to a " -#~ "specific type. Patch by Cédric Krier." -#~ msgstr "" -#~ "`bpo-13918 `__: Provide a locale." -#~ "delocalize() function which can remove locale-specific number formatting " -#~ "from a string representing a number, without then converting it to a " -#~ "specific type. Patch by Cédric Krier." - -#~ msgid "" -#~ "`bpo-22676 `__: Make the pickling of " -#~ "global objects which don't have a __module__ attribute less slow." -#~ msgstr "" -#~ "`bpo-22676 `__: Make the pickling of " -#~ "global objects which don't have a __module__ attribute less slow." - -#~ msgid "" -#~ "`bpo-18853 `__: Fixed ResourceWarning " -#~ "in shlex.__nain__." -#~ msgstr "" -#~ "`bpo-18853 `__: Fixed ResourceWarning " -#~ "in shlex.__nain__." - -#~ msgid "" -#~ "`bpo-9351 `__: Defaults set with " -#~ "set_defaults on an argparse subparser are no longer ignored when also set " -#~ "on the parent parser." -#~ msgstr "" -#~ "`bpo-9351 `__: Defaults set with " -#~ "set_defaults on an argparse subparser are no longer ignored when also set " -#~ "on the parent parser." - -#~ msgid "" -#~ "`bpo-7559 `__: unittest test loading " -#~ "ImportErrors are reported as import errors with their import exception " -#~ "rather than as attribute errors after the import has already failed." -#~ msgstr "" -#~ "`bpo-7559 `__: unittest test loading " -#~ "ImportErrors are reported as import errors with their import exception " -#~ "rather than as attribute errors after the import has already failed." - -#~ msgid "" -#~ "`bpo-19746 `__: Make it possible to " -#~ "examine the errors from unittest discovery without executing the test " -#~ "suite. The new `errors` attribute on TestLoader exposes these non-fatal " -#~ "errors encountered during discovery." -#~ msgstr "" -#~ "`bpo-19746 `__: Make it possible to " -#~ "examine the errors from unittest discovery without executing the test " -#~ "suite. The new `errors` attribute on TestLoader exposes these non-fatal " -#~ "errors encountered during discovery." - -#~ msgid "" -#~ "`bpo-21991 `__: Make email." -#~ "headerregistry's header 'params' attributes be read-only " -#~ "(MappingProxyType). Previously the dictionary was modifiable but a new " -#~ "one was created on each access of the attribute." -#~ msgstr "" -#~ "`bpo-21991 `__: Make email." -#~ "headerregistry's header 'params' attributes be read-only " -#~ "(MappingProxyType). Previously the dictionary was modifiable but a new " -#~ "one was created on each access of the attribute." - -#~ msgid "" -#~ "`bpo-22638 `__: SSLv3 is now disabled " -#~ "throughout the standard library. It can still be enabled by instantiating " -#~ "a SSLContext manually." -#~ msgstr "" -#~ "`bpo-22638 `__: SSLv3 is now disabled " -#~ "throughout the standard library. It can still be enabled by instantiating " -#~ "a SSLContext manually." - -#~ msgid "" -#~ "`bpo-22641 `__: In asyncio, the " -#~ "default SSL context for client connections is now created using ssl." -#~ "create_default_context(), for stronger security." -#~ msgstr "" -#~ "`bpo-22641 `__: In asyncio, the " -#~ "default SSL context for client connections is now created using ssl." -#~ "create_default_context(), for stronger security." - -#~ msgid "" -#~ "`bpo-17401 `__: Include closefd in io." -#~ "FileIO repr." -#~ msgstr "" -#~ "`bpo-17401 `__: Include closefd in io." -#~ "FileIO repr." - -#~ msgid "" -#~ "`bpo-21338 `__: Add silent mode for " -#~ "compileall. quiet parameters of compile_{dir, file, path} functions now " -#~ "have a multilevel value. Also, -q option of the CLI now have a multilevel " -#~ "value. Patch by Thomas Kluyver." -#~ msgstr "" -#~ "`bpo-21338 `__: Add silent mode for " -#~ "compileall. quiet parameters of compile_{dir, file, path} functions now " -#~ "have a multilevel value. Also, -q option of the CLI now have a multilevel " -#~ "value. Patch by Thomas Kluyver." - -#~ msgid "" -#~ "`bpo-20152 `__: Convert the array and " -#~ "cmath modules to Argument Clinic." -#~ msgstr "" -#~ "`bpo-20152 `__: Convert the array and " -#~ "cmath modules to Argument Clinic." - -#~ msgid "" -#~ "`bpo-18643 `__: Add socket." -#~ "socketpair() on Windows." -#~ msgstr "" -#~ "`bpo-18643 `__: Add socket." -#~ "socketpair() on Windows." - -#~ msgid "" -#~ "`bpo-22435 `__: Fix a file descriptor " -#~ "leak when socketserver bind fails." -#~ msgstr "" -#~ "`bpo-22435 `__: Fix a file descriptor " -#~ "leak when socketserver bind fails." - -#~ msgid "" -#~ "`bpo-13096 `__: Fixed segfault in " -#~ "CTypes POINTER handling of large values." -#~ msgstr "" -#~ "`bpo-13096 `__: Fixed segfault in " -#~ "CTypes POINTER handling of large values." - -#~ msgid "" -#~ "`bpo-11694 `__: Raise ConversionError " -#~ "in xdrlib as documented. Patch by Filip Gruszczyński and Claudiu Popa." -#~ msgstr "" -#~ "`bpo-11694 `__: Raise ConversionError " -#~ "in xdrlib as documented. Patch by Filip Gruszczyński and Claudiu Popa." - -#~ msgid "" -#~ "`bpo-19380 `__: Optimized parsing of " -#~ "regular expressions." -#~ msgstr "" -#~ "`bpo-19380 `__: Optimized parsing of " -#~ "regular expressions." - -#~ msgid "" -#~ "`bpo-1519638 `__: Now unmatched " -#~ "groups are replaced with empty strings in re.sub() and re.subn()." -#~ msgstr "" -#~ "`bpo-1519638 `__: Now unmatched " -#~ "groups are replaced with empty strings in re.sub() and re.subn()." - -#~ msgid "" -#~ "`bpo-18615 `__: sndhdr.what/whathdr " -#~ "now return a namedtuple." -#~ msgstr "" -#~ "`bpo-18615 `__: sndhdr.what/whathdr " -#~ "now return a namedtuple." - -#~ msgid "" -#~ "`bpo-22462 `__: Fix pyexpat's " -#~ "creation of a dummy frame to make it appear in exception tracebacks." -#~ msgstr "" -#~ "`bpo-22462 `__: Fix pyexpat's " -#~ "creation of a dummy frame to make it appear in exception tracebacks." - -#~ msgid "" -#~ "`bpo-21965 `__: Add support for in-" -#~ "memory SSL to the ssl module. Patch by Geert Jansen." -#~ msgstr "" -#~ "`bpo-21965 `__: Add support for in-" -#~ "memory SSL to the ssl module. Patch by Geert Jansen." - -#~ msgid "" -#~ "`bpo-21173 `__: Fix len() on a " -#~ "WeakKeyDictionary when .clear() was called with an iterator alive." -#~ msgstr "" -#~ "`bpo-21173 `__: Fix len() on a " -#~ "WeakKeyDictionary when .clear() was called with an iterator alive." - -#~ msgid "" -#~ "`bpo-11866 `__: Eliminated race " -#~ "condition in the computation of names for new threads." -#~ msgstr "" -#~ "`bpo-11866 `__: Eliminated race " -#~ "condition in the computation of names for new threads." - -#~ msgid "" -#~ "`bpo-21905 `__: Avoid RuntimeError in " -#~ "pickle.whichmodule() when sys.modules is mutated while iterating. Patch " -#~ "by Olivier Grisel." -#~ msgstr "" -#~ "`bpo-21905 `__: Avoid RuntimeError in " -#~ "pickle.whichmodule() when sys.modules is mutated while iterating. Patch " -#~ "by Olivier Grisel." - -#~ msgid "" -#~ "`bpo-11271 `__: concurrent.futures." -#~ "Executor.map() now takes a *chunksize* argument to allow batching of " -#~ "tasks in child processes and improve performance of ProcessPoolExecutor. " -#~ "Patch by Dan O'Reilly." -#~ msgstr "" -#~ "`bpo-11271 `__: concurrent.futures." -#~ "Executor.map() now takes a *chunksize* argument to allow batching of " -#~ "tasks in child processes and improve performance of ProcessPoolExecutor. " -#~ "Patch by Dan O'Reilly." - -#~ msgid "" -#~ "`bpo-21883 `__: os.path.join() and os." -#~ "path.relpath() now raise a TypeError with more helpful error message for " -#~ "unsupported or mismatched types of arguments." -#~ msgstr "" -#~ "`bpo-21883 `__: os.path.join() and os." -#~ "path.relpath() now raise a TypeError with more helpful error message for " -#~ "unsupported or mismatched types of arguments." - -#~ msgid "" -#~ "`bpo-22219 `__: The zipfile module " -#~ "CLI now adds entries for directories (including empty directories) in ZIP " -#~ "file." -#~ msgstr "" -#~ "`bpo-22219 `__: The zipfile module " -#~ "CLI now adds entries for directories (including empty directories) in ZIP " -#~ "file." - -#~ msgid "" -#~ "`bpo-22449 `__: In the ssl.SSLContext." -#~ "load_default_certs, consult the environmental variables SSL_CERT_DIR and " -#~ "SSL_CERT_FILE on Windows." -#~ msgstr "" -#~ "`bpo-22449 `__: In the ssl.SSLContext." -#~ "load_default_certs, consult the environmental variables SSL_CERT_DIR and " -#~ "SSL_CERT_FILE on Windows." - -#~ msgid "" -#~ "`bpo-22508 `__: The email.__version__ " -#~ "variable has been removed; the email code is no longer shipped separately " -#~ "from the stdlib, and __version__ hasn't been updated in several releases." -#~ msgstr "" -#~ "`bpo-22508 `__: The email.__version__ " -#~ "variable has been removed; the email code is no longer shipped separately " -#~ "from the stdlib, and __version__ hasn't been updated in several releases." - -#~ msgid "" -#~ "`bpo-20076 `__: Added non derived " -#~ "UTF-8 aliases to locale aliases table." -#~ msgstr "" -#~ "`bpo-20076 `__: Added non derived " -#~ "UTF-8 aliases to locale aliases table." - -#~ msgid "" -#~ "`bpo-20079 `__: Added locales " -#~ "supported in glibc 2.18 to locale alias table." -#~ msgstr "" -#~ "`bpo-20079 `__: Added locales " -#~ "supported in glibc 2.18 to locale alias table." - -#~ msgid "" -#~ "`bpo-20218 `__: Added convenience " -#~ "methods read_text/write_text and read_bytes/ write_bytes to pathlib.Path " -#~ "objects." -#~ msgstr "" -#~ "`bpo-20218 `__: Added convenience " -#~ "methods read_text/write_text and read_bytes/ write_bytes to pathlib.Path " -#~ "objects." - -#~ msgid "" -#~ "`bpo-22396 `__: On 32-bit AIX " -#~ "platform, don't expose os.posix_fadvise() nor os.posix_fallocate() " -#~ "because their prototypes in system headers are wrong." -#~ msgstr "" -#~ "`bpo-22396 `__: On 32-bit AIX " -#~ "platform, don't expose os.posix_fadvise() nor os.posix_fallocate() " -#~ "because their prototypes in system headers are wrong." - -#~ msgid "" -#~ "`bpo-22517 `__: When an io." -#~ "BufferedRWPair object is deallocated, clear its weakrefs." -#~ msgstr "" -#~ "`bpo-22517 `__: When an io." -#~ "BufferedRWPair object is deallocated, clear its weakrefs." - -#~ msgid "" -#~ "`bpo-22437 `__: Number of capturing " -#~ "groups in regular expression is no longer limited by 100." -#~ msgstr "" -#~ "`bpo-22437 `__: Number of capturing " -#~ "groups in regular expression is no longer limited by 100." - -#~ msgid "" -#~ "`bpo-17442 `__: " -#~ "InteractiveInterpreter now displays the full chained traceback in its " -#~ "showtraceback method, to match the built in interactive interpreter." -#~ msgstr "" -#~ "`bpo-17442 `__: " -#~ "InteractiveInterpreter now displays the full chained traceback in its " -#~ "showtraceback method, to match the built in interactive interpreter." - -#~ msgid "" -#~ "`bpo-23392 `__: Added tests for " -#~ "marshal C API that works with FILE*." -#~ msgstr "" -#~ "`bpo-23392 `__: Added tests for " -#~ "marshal C API that works with FILE*." - -#~ msgid "" -#~ "`bpo-10510 `__: distutils register " -#~ "and upload methods now use HTML standards compliant CRLF line endings." -#~ msgstr "" -#~ "`bpo-10510 `__: distutils register " -#~ "and upload methods now use HTML standards compliant CRLF line endings." - -#~ msgid "" -#~ "`bpo-9850 `__: Fixed macpath.join() " -#~ "for empty first component. Patch by Oleg Oshmyan." -#~ msgstr "" -#~ "`bpo-9850 `__: Fixed macpath.join() " -#~ "for empty first component. Patch by Oleg Oshmyan." - -#~ msgid "" -#~ "`bpo-5309 `__: distutils' build and " -#~ "build_ext commands now accept a ``-j`` option to enable parallel building " -#~ "of extension modules." -#~ msgstr "" -#~ "`bpo-5309 `__: distutils' build and " -#~ "build_ext commands now accept a ``-j`` option to enable parallel building " -#~ "of extension modules." - -#~ msgid "" -#~ "`bpo-22448 `__: Improve canceled " -#~ "timer handles cleanup to prevent unbound memory usage. Patch by Joshua " -#~ "Moore-Oliva." -#~ msgstr "" -#~ "`bpo-22448 `__: Improve canceled " -#~ "timer handles cleanup to prevent unbound memory usage. Patch by Joshua " -#~ "Moore-Oliva." - -#~ msgid "" -#~ "`bpo-22427 `__: TemporaryDirectory no " -#~ "longer attempts to clean up twice when used in the with statement in " -#~ "generator." -#~ msgstr "" -#~ "`bpo-22427 `__: TemporaryDirectory no " -#~ "longer attempts to clean up twice when used in the with statement in " -#~ "generator." - -#~ msgid "" -#~ "`bpo-22362 `__: Forbidden ambiguous " -#~ "octal escapes out of range 0-0o377 in regular expressions." -#~ msgstr "" -#~ "`bpo-22362 `__: Forbidden ambiguous " -#~ "octal escapes out of range 0-0o377 in regular expressions." - -#~ msgid "" -#~ "`bpo-20912 `__: Now directories added " -#~ "to ZIP file have correct Unix and MS-DOS directory attributes." -#~ msgstr "" -#~ "`bpo-20912 `__: Now directories added " -#~ "to ZIP file have correct Unix and MS-DOS directory attributes." - -#~ msgid "" -#~ "`bpo-21866 `__: ZipFile.close() no " -#~ "longer writes ZIP64 central directory records if allowZip64 is false." -#~ msgstr "" -#~ "`bpo-21866 `__: ZipFile.close() no " -#~ "longer writes ZIP64 central directory records if allowZip64 is false." - -#~ msgid "" -#~ "`bpo-22278 `__: Fix urljoin problem " -#~ "with relative urls, a regression observed after changes to issue22118 " -#~ "were submitted." -#~ msgstr "" -#~ "`bpo-22278 `__: Fix urljoin problem " -#~ "with relative urls, a regression observed after changes to issue22118 " -#~ "were submitted." - -#~ msgid "" -#~ "`bpo-22415 `__: Fixed debugging " -#~ "output of the GROUPREF_EXISTS opcode in the re module. Removed trailing " -#~ "spaces in debugging output." -#~ msgstr "" -#~ "`bpo-22415 `__: Fixed debugging " -#~ "output of the GROUPREF_EXISTS opcode in the re module. Removed trailing " -#~ "spaces in debugging output." - -#~ msgid "" -#~ "`bpo-22423 `__: Unhandled exception " -#~ "in thread no longer causes unhandled AttributeError when sys.stderr is " -#~ "None." -#~ msgstr "" -#~ "`bpo-22423 `__: Unhandled exception " -#~ "in thread no longer causes unhandled AttributeError when sys.stderr is " -#~ "None." - -#~ msgid "" -#~ "`bpo-21332 `__: Ensure that " -#~ "``bufsize=1`` in subprocess.Popen() selects line buffering, rather than " -#~ "block buffering. Patch by Akira Li." -#~ msgstr "" -#~ "`bpo-21332 `__: Ensure that " -#~ "``bufsize=1`` in subprocess.Popen() selects line buffering, rather than " -#~ "block buffering. Patch by Akira Li." - -#~ msgid "" -#~ "`bpo-21091 `__: Fix API bug: email." -#~ "message.EmailMessage.is_attachment is now a method." -#~ msgstr "" -#~ "`bpo-21091 `__: Fix API bug: email." -#~ "message.EmailMessage.is_attachment is now a method." - -#~ msgid "" -#~ "`bpo-21079 `__: Fix email.message." -#~ "EmailMessage.is_attachment to return the correct result when the header " -#~ "has parameters as well as a value." -#~ msgstr "" -#~ "`bpo-21079 `__: Fix email.message." -#~ "EmailMessage.is_attachment to return the correct result when the header " -#~ "has parameters as well as a value." - -#~ msgid "" -#~ "`bpo-22247 `__: Add NNTPError to " -#~ "nntplib.__all__." -#~ msgstr "" -#~ "`bpo-22247 `__: Add NNTPError to " -#~ "nntplib.__all__." - -#~ msgid "" -#~ "`bpo-22366 `__: urllib.request." -#~ "urlopen will accept a context object (SSLContext) as an argument which " -#~ "will then be used for HTTPS connection. Patch by Alex Gaynor." -#~ msgstr "" -#~ "`bpo-22366 `__: urllib.request." -#~ "urlopen will accept a context object (SSLContext) as an argument which " -#~ "will then be used for HTTPS connection. Patch by Alex Gaynor." - -#~ msgid "" -#~ "`bpo-4180 `__: The warnings registries " -#~ "are now reset when the filters are modified." -#~ msgstr "" -#~ "`bpo-4180 `__: The warnings registries " -#~ "are now reset when the filters are modified." - -#~ msgid "" -#~ "`bpo-22419 `__: Limit the length of " -#~ "incoming HTTP request in wsgiref server to 65536 bytes and send a 414 " -#~ "error code for higher lengths. Patch contributed by Devin Cook." -#~ msgstr "" -#~ "`bpo-22419 `__: Limit the length of " -#~ "incoming HTTP request in wsgiref server to 65536 bytes and send a 414 " -#~ "error code for higher lengths. Patch contributed by Devin Cook." - -#~ msgid "" -#~ "`bpo-20537 `__: logging methods now " -#~ "accept an exception instance as well as a Boolean value or exception " -#~ "tuple. Thanks to Yury Selivanov for the patch." -#~ msgstr "" -#~ "`bpo-20537 `__: logging methods now " -#~ "accept an exception instance as well as a Boolean value or exception " -#~ "tuple. Thanks to Yury Selivanov for the patch." - -#~ msgid "" -#~ "`bpo-22384 `__: An exception in " -#~ "Tkinter callback no longer crashes the program when it is run with " -#~ "pythonw.exe." -#~ msgstr "" -#~ "`bpo-22384 `__: An exception in " -#~ "Tkinter callback no longer crashes the program when it is run with " -#~ "pythonw.exe." - -#~ msgid "" -#~ "`bpo-22168 `__: Prevent turtle " -#~ "AttributeError with non-default Canvas on OS X." -#~ msgstr "" -#~ "`bpo-22168 `__: Prevent turtle " -#~ "AttributeError with non-default Canvas on OS X." - -#~ msgid "" -#~ "`bpo-21147 `__: sqlite3 now raises an " -#~ "exception if the request contains a null character instead of truncating " -#~ "it. Based on patch by Victor Stinner." -#~ msgstr "" -#~ "`bpo-21147 `__: sqlite3 now raises an " -#~ "exception if the request contains a null character instead of truncating " -#~ "it. Based on patch by Victor Stinner." - -#~ msgid "" -#~ "`bpo-13968 `__: The glob module now " -#~ "supports recursive search in subdirectories using the ``**`` pattern." -#~ msgstr "" -#~ "`bpo-13968 `__: The glob module now " -#~ "supports recursive search in subdirectories using the ``**`` pattern." - -#~ msgid "" -#~ "`bpo-21951 `__: Fixed a crash in " -#~ "Tkinter on AIX when called Tcl command with empty string or tuple " -#~ "argument." -#~ msgstr "" -#~ "`bpo-21951 `__: Fixed a crash in " -#~ "Tkinter on AIX when called Tcl command with empty string or tuple " -#~ "argument." - -#~ msgid "" -#~ "`bpo-21951 `__: Tkinter now most " -#~ "likely raises MemoryError instead of crash if the memory allocation fails." -#~ msgstr "" -#~ "`bpo-21951 `__: Tkinter now most " -#~ "likely raises MemoryError instead of crash if the memory allocation fails." - -#~ msgid "" -#~ "`bpo-22338 `__: Fix a crash in the " -#~ "json module on memory allocation failure." -#~ msgstr "" -#~ "`bpo-22338 `__: Fix a crash in the " -#~ "json module on memory allocation failure." - -#~ msgid "" -#~ "`bpo-12410 `__: imaplib.IMAP4 now " -#~ "supports the context management protocol. Original patch by Tarek Ziadé." -#~ msgstr "" -#~ "`bpo-12410 `__: imaplib.IMAP4 now " -#~ "supports the context management protocol. Original patch by Tarek Ziadé." - -#~ msgid "" -#~ "`bpo-21270 `__: We now override tuple " -#~ "methods in mock.call objects so that they can be used as normal call " -#~ "attributes." -#~ msgstr "" -#~ "`bpo-21270 `__: We now override tuple " -#~ "methods in mock.call objects so that they can be used as normal call " -#~ "attributes." - -#~ msgid "" -#~ "`bpo-16662 `__: load_tests() is now " -#~ "unconditionally run when it is present in a package's __init__.py. " -#~ "TestLoader.loadTestsFromModule() still accepts use_load_tests, but it is " -#~ "deprecated and ignored. A new keyword-only attribute `pattern` is added " -#~ "and documented. Patch given by Robert Collins, tweaked by Barry Warsaw." -#~ msgstr "" -#~ "`bpo-16662 `__: load_tests() is now " -#~ "unconditionally run when it is present in a package's __init__.py. " -#~ "TestLoader.loadTestsFromModule() still accepts use_load_tests, but it is " -#~ "deprecated and ignored. A new keyword-only attribute `pattern` is added " -#~ "and documented. Patch given by Robert Collins, tweaked by Barry Warsaw." - -#~ msgid "" -#~ "`bpo-22226 `__: First letter no " -#~ "longer is stripped from the \"status\" key in the result of Treeview." -#~ "heading()." -#~ msgstr "" -#~ "`bpo-22226 `__: First letter no " -#~ "longer is stripped from the \"status\" key in the result of Treeview." -#~ "heading()." - -#~ msgid "" -#~ "`bpo-19524 `__: Fixed resource leak " -#~ "in the HTTP connection when an invalid response is received. Patch by " -#~ "Martin Panter." -#~ msgstr "" -#~ "`bpo-19524 `__: Fixed resource leak " -#~ "in the HTTP connection when an invalid response is received. Patch by " -#~ "Martin Panter." - -#~ msgid "" -#~ "`bpo-20421 `__: Add a .version() " -#~ "method to SSL sockets exposing the actual protocol version in use." -#~ msgstr "" -#~ "`bpo-20421 `__: Add a .version() " -#~ "method to SSL sockets exposing the actual protocol version in use." - -#~ msgid "" -#~ "`bpo-19546 `__: configparser " -#~ "exceptions no longer expose implementation details. Chained KeyErrors are " -#~ "removed, which leads to cleaner tracebacks. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-19546 `__: configparser " -#~ "exceptions no longer expose implementation details. Chained KeyErrors are " -#~ "removed, which leads to cleaner tracebacks. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-22051 `__: turtledemo no longer " -#~ "reloads examples to re-run them. Initialization of variables and gui " -#~ "setup should be done in main(), which is called each time a demo is run, " -#~ "but not on import." -#~ msgstr "" -#~ "`bpo-22051 `__: turtledemo no longer " -#~ "reloads examples to re-run them. Initialization of variables and gui " -#~ "setup should be done in main(), which is called each time a demo is run, " -#~ "but not on import." - -#~ msgid "" -#~ "`bpo-21933 `__: Turtledemo users can " -#~ "change the code font size with a menu selection or control(command) '-' " -#~ "or '+' or control-mousewheel. Original patch by Lita Cho." -#~ msgstr "" -#~ "`bpo-21933 `__: Turtledemo users can " -#~ "change the code font size with a menu selection or control(command) '-' " -#~ "or '+' or control-mousewheel. Original patch by Lita Cho." - -#~ msgid "" -#~ "`bpo-21597 `__: The separator between " -#~ "the turtledemo text pane and the drawing canvas can now be grabbed and " -#~ "dragged with a mouse. The code text pane can be widened to easily view " -#~ "or copy the full width of the text. The canvas can be widened on small " -#~ "screens. Original patches by Jan Kanis and Lita Cho." -#~ msgstr "" -#~ "`bpo-21597 `__: The separator between " -#~ "the turtledemo text pane and the drawing canvas can now be grabbed and " -#~ "dragged with a mouse. The code text pane can be widened to easily view " -#~ "or copy the full width of the text. The canvas can be widened on small " -#~ "screens. Original patches by Jan Kanis and Lita Cho." - -#~ msgid "" -#~ "`bpo-18132 `__: Turtledemo buttons no " -#~ "longer disappear when the window is shrunk. Original patches by Jan " -#~ "Kanis and Lita Cho." -#~ msgstr "" -#~ "`bpo-18132 `__: Turtledemo buttons no " -#~ "longer disappear when the window is shrunk. Original patches by Jan " -#~ "Kanis and Lita Cho." - -#~ msgid "" -#~ "`bpo-22043 `__: time.monotonic() is " -#~ "now always available. ``threading.Lock.acquire()``, ``threading.RLock." -#~ "acquire()`` and socket operations now use a monotonic clock, instead of " -#~ "the system clock, when a timeout is used." -#~ msgstr "" -#~ "`bpo-22043 `__: time.monotonic() is " -#~ "now always available. ``threading.Lock.acquire()``, ``threading.RLock." -#~ "acquire()`` and socket operations now use a monotonic clock, instead of " -#~ "the system clock, when a timeout is used." - -#~ msgid "" -#~ "`bpo-21527 `__: Add a default number " -#~ "of workers to ThreadPoolExecutor equal to 5 times the number of CPUs. " -#~ "Patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-21527 `__: Add a default number " -#~ "of workers to ThreadPoolExecutor equal to 5 times the number of CPUs. " -#~ "Patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-22216 `__: smtplib now resets " -#~ "its state more completely after a quit. The most obvious consequence of " -#~ "the previous behavior was a STARTTLS failure during a connect/starttls/" -#~ "quit/connect/starttls sequence." -#~ msgstr "" -#~ "`bpo-22216 `__: smtplib now resets " -#~ "its state more completely after a quit. The most obvious consequence of " -#~ "the previous behavior was a STARTTLS failure during a connect/starttls/" -#~ "quit/connect/starttls sequence." - -#~ msgid "" -#~ "`bpo-22098 `__: ctypes' " -#~ "BigEndianStructure and LittleEndianStructure now define an empty " -#~ "__slots__ so that subclasses don't always get an instance dict. Patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`bpo-22098 `__: ctypes' " -#~ "BigEndianStructure and LittleEndianStructure now define an empty " -#~ "__slots__ so that subclasses don't always get an instance dict. Patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`bpo-22185 `__: Fix an occasional " -#~ "RuntimeError in threading.Condition.wait() caused by mutation of the " -#~ "waiters queue without holding the lock. Patch by Doug Zongker." -#~ msgstr "" -#~ "`bpo-22185 `__: Fix an occasional " -#~ "RuntimeError in threading.Condition.wait() caused by mutation of the " -#~ "waiters queue without holding the lock. Patch by Doug Zongker." - -#~ msgid "" -#~ "`bpo-22287 `__: On UNIX, " -#~ "_PyTime_gettimeofday() now uses clock_gettime(CLOCK_REALTIME) if " -#~ "available. As a side effect, Python now depends on the librt library on " -#~ "Solaris and on Linux (only with glibc older than 2.17)." -#~ msgstr "" -#~ "`bpo-22287 `__: On UNIX, " -#~ "_PyTime_gettimeofday() now uses clock_gettime(CLOCK_REALTIME) if " -#~ "available. As a side effect, Python now depends on the librt library on " -#~ "Solaris and on Linux (only with glibc older than 2.17)." - -#~ msgid "" -#~ "`bpo-22182 `__: Use e.args to unpack " -#~ "exceptions correctly in distutils.file_util.move_file. Patch by Claudiu " -#~ "Popa." -#~ msgstr "" -#~ "`bpo-22182 `__: Use e.args to unpack " -#~ "exceptions correctly in distutils.file_util.move_file. Patch by Claudiu " -#~ "Popa." - -#~ msgid "" -#~ "`bpo-22042 `__: signal." -#~ "set_wakeup_fd(fd) now raises an exception if the file descriptor is in " -#~ "blocking mode." -#~ msgstr "" -#~ "`bpo-22042 `__: signal." -#~ "set_wakeup_fd(fd) now raises an exception if the file descriptor is in " -#~ "blocking mode." - -#~ msgid "" -#~ "`bpo-16808 `__: inspect.stack() now " -#~ "returns a named tuple instead of a tuple. Patch by Daniel Shahaf." -#~ msgstr "" -#~ "`bpo-16808 `__: inspect.stack() now " -#~ "returns a named tuple instead of a tuple. Patch by Daniel Shahaf." - -#~ msgid "" -#~ "`bpo-22236 `__: Fixed Tkinter images " -#~ "copying operations in NoDefaultRoot mode." -#~ msgstr "" -#~ "`bpo-22236 `__: Fixed Tkinter images " -#~ "copying operations in NoDefaultRoot mode." - -#~ msgid "" -#~ "`bpo-2527 `__: Add a *globals* " -#~ "argument to timeit functions, in order to override the globals namespace " -#~ "in which the timed code is executed. Patch by Ben Roberts." -#~ msgstr "" -#~ "`bpo-2527 `__: Add a *globals* " -#~ "argument to timeit functions, in order to override the globals namespace " -#~ "in which the timed code is executed. Patch by Ben Roberts." - -#~ msgid "" -#~ "`bpo-22118 `__: Switch urllib.parse " -#~ "to use RFC 3986 semantics for the resolution of relative URLs, rather " -#~ "than RFCs 1808 and 2396. Patch by Demian Brecht." -#~ msgstr "" -#~ "`bpo-22118 `__: Switch urllib.parse " -#~ "to use RFC 3986 semantics for the resolution of relative URLs, rather " -#~ "than RFCs 1808 and 2396. Patch by Demian Brecht." - -#~ msgid "" -#~ "`bpo-21549 `__: Added the \"members\" " -#~ "parameter to TarFile.list()." -#~ msgstr "" -#~ "`bpo-21549 `__: Added the \"members\" " -#~ "parameter to TarFile.list()." - -#~ msgid "" -#~ "`bpo-19628 `__: Allow compileall " -#~ "recursion depth to be specified with a -r option." -#~ msgstr "" -#~ "`bpo-19628 `__: Allow compileall " -#~ "recursion depth to be specified with a -r option." - -#~ msgid "" -#~ "`bpo-15696 `__: Add a __sizeof__ " -#~ "implementation for mmap objects on Windows." -#~ msgstr "" -#~ "`bpo-15696 `__: Add a __sizeof__ " -#~ "implementation for mmap objects on Windows." - -#~ msgid "" -#~ "`bpo-22068 `__: Avoided reference " -#~ "loops with Variables and Fonts in Tkinter." -#~ msgstr "" -#~ "`bpo-22068 `__: Avoided reference " -#~ "loops with Variables and Fonts in Tkinter." - -#~ msgid "" -#~ "`bpo-22165 `__: " -#~ "SimpleHTTPRequestHandler now supports undecodable file names." -#~ msgstr "" -#~ "`bpo-22165 `__: " -#~ "SimpleHTTPRequestHandler now supports undecodable file names." - -#~ msgid "" -#~ "`bpo-15381 `__: Optimized line " -#~ "reading in io.BytesIO." -#~ msgstr "" -#~ "`bpo-15381 `__: Optimized line " -#~ "reading in io.BytesIO." - -#~ msgid "" -#~ "`bpo-8797 `__: Raise HTTPError on " -#~ "failed Basic Authentication immediately. Initial patch by Sam Bull." -#~ msgstr "" -#~ "`bpo-8797 `__: Raise HTTPError on " -#~ "failed Basic Authentication immediately. Initial patch by Sam Bull." - -#~ msgid "" -#~ "`bpo-20729 `__: Restored the use of " -#~ "lazy iterkeys()/itervalues()/iteritems() in the mailbox module." -#~ msgstr "" -#~ "`bpo-20729 `__: Restored the use of " -#~ "lazy iterkeys()/itervalues()/iteritems() in the mailbox module." - -#~ msgid "" -#~ "`bpo-21448 `__: Changed FeedParser " -#~ "feed() to avoid O(N**2) behavior when parsing long line. Original patch " -#~ "by Raymond Hettinger." -#~ msgstr "" -#~ "`bpo-21448 `__: Changed FeedParser " -#~ "feed() to avoid O(N**2) behavior when parsing long line. Original patch " -#~ "by Raymond Hettinger." - -#~ msgid "" -#~ "`bpo-22184 `__: The functools LRU " -#~ "Cache decorator factory now gives an earlier and clearer error message " -#~ "when the user forgets the required parameters." -#~ msgstr "" -#~ "`bpo-22184 `__: The functools LRU " -#~ "Cache decorator factory now gives an earlier and clearer error message " -#~ "when the user forgets the required parameters." - -#~ msgid "" -#~ "`bpo-17923 `__: glob() patterns " -#~ "ending with a slash no longer match non-dirs on AIX. Based on patch by " -#~ "Delhallt." -#~ msgstr "" -#~ "`bpo-17923 `__: glob() patterns " -#~ "ending with a slash no longer match non-dirs on AIX. Based on patch by " -#~ "Delhallt." - -#~ msgid "" -#~ "`bpo-21725 `__: Added support for RFC " -#~ "6531 (SMTPUTF8) in smtpd." -#~ msgstr "" -#~ "`bpo-21725 `__: Added support for RFC " -#~ "6531 (SMTPUTF8) in smtpd." - -#~ msgid "" -#~ "`bpo-22176 `__: Update the ctypes " -#~ "module's libffi to v3.1. This release adds support for the Linux AArch64 " -#~ "and POWERPC ELF ABIv2 little endian architectures." -#~ msgstr "" -#~ "`bpo-22176 `__: Update the ctypes " -#~ "module's libffi to v3.1. This release adds support for the Linux AArch64 " -#~ "and POWERPC ELF ABIv2 little endian architectures." - -#~ msgid "" -#~ "`bpo-5411 `__: Added support for the " -#~ "\"xztar\" format in the shutil module." -#~ msgstr "" -#~ "`bpo-5411 `__: Added support for the " -#~ "\"xztar\" format in the shutil module." - -#~ msgid "" -#~ "`bpo-21121 `__: Don't force 3rd party " -#~ "C extensions to be built with -Werror=declaration-after-statement." -#~ msgstr "" -#~ "`bpo-21121 `__: Don't force 3rd party " -#~ "C extensions to be built with -Werror=declaration-after-statement." - -#~ msgid "" -#~ "`bpo-21975 `__: Fixed crash when " -#~ "using uninitialized sqlite3.Row (in particular when unpickling pickled " -#~ "sqlite3.Row). sqlite3.Row is now initialized in the __new__() method." -#~ msgstr "" -#~ "`bpo-21975 `__: Fixed crash when " -#~ "using uninitialized sqlite3.Row (in particular when unpickling pickled " -#~ "sqlite3.Row). sqlite3.Row is now initialized in the __new__() method." - -#~ msgid "" -#~ "`bpo-20170 `__: Convert posixmodule " -#~ "to use Argument Clinic." -#~ msgstr "" -#~ "`bpo-20170 `__: Convert posixmodule " -#~ "to use Argument Clinic." - -#~ msgid "" -#~ "`bpo-21539 `__: Add an *exists_ok* " -#~ "argument to `Pathlib.mkdir()` to mimic `mkdir -p` and `os.makedirs()` " -#~ "functionality. When true, ignore FileExistsErrors. Patch by Berker " -#~ "Peksag." -#~ msgstr "" -#~ "`bpo-21539 `__: Add an *exists_ok* " -#~ "argument to `Pathlib.mkdir()` to mimic `mkdir -p` and `os.makedirs()` " -#~ "functionality. When true, ignore FileExistsErrors. Patch by Berker " -#~ "Peksag." - -#~ msgid "" -#~ "`bpo-22127 `__: Bypass IDNA for pure-" -#~ "ASCII host names in the socket module (in particular for numeric IPs)." -#~ msgstr "" -#~ "`bpo-22127 `__: Bypass IDNA for pure-" -#~ "ASCII host names in the socket module (in particular for numeric IPs)." - -#~ msgid "" -#~ "`bpo-21047 `__: set the default value " -#~ "for the *convert_charrefs* argument of HTMLParser to True. Patch by " -#~ "Berker Peksag." -#~ msgstr "" -#~ "`bpo-21047 `__: set the default value " -#~ "for the *convert_charrefs* argument of HTMLParser to True. Patch by " -#~ "Berker Peksag." - -#~ msgid "" -#~ "`bpo-15114 `__: the strict mode and " -#~ "argument of HTMLParser, HTMLParser.error, and the HTMLParserError " -#~ "exception have been removed." -#~ msgstr "" -#~ "`bpo-15114 `__: the strict mode and " -#~ "argument of HTMLParser, HTMLParser.error, and the HTMLParserError " -#~ "exception have been removed." - -#~ msgid "" -#~ "`bpo-22085 `__: Dropped support of Tk " -#~ "8.3 in Tkinter." -#~ msgstr "" -#~ "`bpo-22085 `__: Dropped support of Tk " -#~ "8.3 in Tkinter." - -#~ msgid "" -#~ "`bpo-21580 `__: Now Tkinter correctly " -#~ "handles bytes arguments passed to Tk. In particular this allows " -#~ "initializing images from binary data." -#~ msgstr "" -#~ "`bpo-21580 `__: Now Tkinter correctly " -#~ "handles bytes arguments passed to Tk. In particular this allows " -#~ "initializing images from binary data." - -#~ msgid "" -#~ "`bpo-22003 `__: When initialized from " -#~ "a bytes object, io.BytesIO() now defers making a copy until it is " -#~ "mutated, improving performance and memory use on some use cases. Patch " -#~ "by David Wilson." -#~ msgstr "" -#~ "`bpo-22003 `__: When initialized from " -#~ "a bytes object, io.BytesIO() now defers making a copy until it is " -#~ "mutated, improving performance and memory use on some use cases. Patch " -#~ "by David Wilson." - -#~ msgid "" -#~ "`bpo-22018 `__: On Windows, signal." -#~ "set_wakeup_fd() now also supports sockets. A side effect is that Python " -#~ "depends to the WinSock library." -#~ msgstr "" -#~ "`bpo-22018 `__: On Windows, signal." -#~ "set_wakeup_fd() now also supports sockets. A side effect is that Python " -#~ "depends to the WinSock library." - -#~ msgid "" -#~ "`bpo-22054 `__: Add os.get_blocking() " -#~ "and os.set_blocking() functions to get and set the blocking mode of a " -#~ "file descriptor (False if the O_NONBLOCK flag is set, True otherwise). " -#~ "These functions are not available on Windows." -#~ msgstr "" -#~ "`bpo-22054 `__: Add os.get_blocking() " -#~ "and os.set_blocking() functions to get and set the blocking mode of a " -#~ "file descriptor (False if the O_NONBLOCK flag is set, True otherwise). " -#~ "These functions are not available on Windows." - -#~ msgid "" -#~ "`bpo-17172 `__: Make turtledemo start " -#~ "as active on OS X even when run with subprocess. Patch by Lita Cho." -#~ msgstr "" -#~ "`bpo-17172 `__: Make turtledemo start " -#~ "as active on OS X even when run with subprocess. Patch by Lita Cho." - -#~ msgid "" -#~ "`bpo-21704 `__: Fix build error for " -#~ "_multiprocessing when semaphores are not available. Patch by Arfrever " -#~ "Frehtes Taifersar Arahesis." -#~ msgstr "" -#~ "`bpo-21704 `__: Fix build error for " -#~ "_multiprocessing when semaphores are not available. Patch by Arfrever " -#~ "Frehtes Taifersar Arahesis." - -#~ msgid "" -#~ "`bpo-20173 `__: Convert sha1, sha256, " -#~ "sha512 and md5 to ArgumentClinic. Patch by Vajrasky Kok." -#~ msgstr "" -#~ "`bpo-20173 `__: Convert sha1, sha256, " -#~ "sha512 and md5 to ArgumentClinic. Patch by Vajrasky Kok." - -#~ msgid "" -#~ "`bpo-22033 `__: Reprs of most Python " -#~ "implemened classes now contain actual class name instead of hardcoded one." -#~ msgstr "" -#~ "`bpo-22033 `__: Reprs of most Python " -#~ "implemened classes now contain actual class name instead of hardcoded one." - -#~ msgid "" -#~ "`bpo-21947 `__: The dis module can " -#~ "now disassemble generator-iterator objects based on their gi_code " -#~ "attribute. Patch by Clement Rouault." -#~ msgstr "" -#~ "`bpo-21947 `__: The dis module can " -#~ "now disassemble generator-iterator objects based on their gi_code " -#~ "attribute. Patch by Clement Rouault." - -#~ msgid "" -#~ "`bpo-16133 `__: The asynchat." -#~ "async_chat.handle_read() method now ignores BlockingIOError exceptions." -#~ msgstr "" -#~ "`bpo-16133 `__: The asynchat." -#~ "async_chat.handle_read() method now ignores BlockingIOError exceptions." - -#~ msgid "" -#~ "`bpo-22044 `__: Fixed premature " -#~ "DECREF in call_tzinfo_method. Patch by Tom Flanagan." -#~ msgstr "" -#~ "`bpo-22044 `__: Fixed premature " -#~ "DECREF in call_tzinfo_method. Patch by Tom Flanagan." - -#~ msgid "" -#~ "`bpo-19884 `__: readline: Disable the " -#~ "meta modifier key if stdout is not a terminal to not write the ANSI " -#~ "sequence ``\"\\033[1034h\"`` into stdout. This sequence is used on some " -#~ "terminal (ex: TERM=xterm-256color\") to enable support of 8 bit " -#~ "characters." -#~ msgstr "" -#~ "`bpo-19884 `__: readline: Disable the " -#~ "meta modifier key if stdout is not a terminal to not write the ANSI " -#~ "sequence ``\"\\033[1034h\"`` into stdout. This sequence is used on some " -#~ "terminal (ex: TERM=xterm-256color\") to enable support of 8 bit " -#~ "characters." - -#~ msgid "" -#~ "`bpo-4350 `__: Removed a number of out-" -#~ "of-dated and non-working for a long time Tkinter methods." -#~ msgstr "" -#~ "`bpo-4350 `__: Removed a number of out-" -#~ "of-dated and non-working for a long time Tkinter methods." - -#~ msgid "" -#~ "`bpo-6167 `__: Scrollbar.activate() " -#~ "now returns the name of active element if the argument is not specified. " -#~ "Scrollbar.set() now always accepts only 2 arguments." -#~ msgstr "" -#~ "`bpo-6167 `__: Scrollbar.activate() " -#~ "now returns the name of active element if the argument is not specified. " -#~ "Scrollbar.set() now always accepts only 2 arguments." - -#~ msgid "" -#~ "`bpo-15275 `__: Clean up and speed up " -#~ "the ntpath module." -#~ msgstr "" -#~ "`bpo-15275 `__: Clean up and speed up " -#~ "the ntpath module." - -#~ msgid "" -#~ "`bpo-21888 `__: plistlib's load() and " -#~ "loads() now work if the fmt parameter is specified." -#~ msgstr "" -#~ "`bpo-21888 `__: plistlib's load() and " -#~ "loads() now work if the fmt parameter is specified." - -#~ msgid "" -#~ "`bpo-22032 `__: __qualname__ instead " -#~ "of __name__ is now always used to format fully qualified class names of " -#~ "Python implemented classes." -#~ msgstr "" -#~ "`bpo-22032 `__: __qualname__ instead " -#~ "of __name__ is now always used to format fully qualified class names of " -#~ "Python implemented classes." - -#~ msgid "" -#~ "`bpo-22031 `__: Reprs now always use " -#~ "hexadecimal format with the \"0x\" prefix when contain an id in form \" " -#~ "at 0x...\"." -#~ msgstr "" -#~ "`bpo-22031 `__: Reprs now always use " -#~ "hexadecimal format with the \"0x\" prefix when contain an id in form \" " -#~ "at 0x...\"." - -#~ msgid "" -#~ "`bpo-22018 `__: signal." -#~ "set_wakeup_fd() now raises an OSError instead of a ValueError on " -#~ "``fstat()`` failure." -#~ msgstr "" -#~ "`bpo-22018 `__: signal." -#~ "set_wakeup_fd() now raises an OSError instead of a ValueError on " -#~ "``fstat()`` failure." - -#~ msgid "" -#~ "`bpo-21044 `__: tarfile.open() now " -#~ "handles fileobj with an integer 'name' attribute. Based on patch by " -#~ "Antoine Pietri." -#~ msgstr "" -#~ "`bpo-21044 `__: tarfile.open() now " -#~ "handles fileobj with an integer 'name' attribute. Based on patch by " -#~ "Antoine Pietri." - -#~ msgid "" -#~ "`bpo-21966 `__: Respect -q command-" -#~ "line option when code module is ran." -#~ msgstr "" -#~ "`bpo-21966 `__: Respect -q command-" -#~ "line option when code module is ran." - -#~ msgid "" -#~ "`bpo-19076 `__: Don't pass the " -#~ "redundant 'file' argument to self.error()." -#~ msgstr "" -#~ "`bpo-19076 `__: Don't pass the " -#~ "redundant 'file' argument to self.error()." - -#~ msgid "" -#~ "`bpo-16382 `__: Improve exception " -#~ "message of warnings.warn() for bad category. Initial patch by Phil Elson." -#~ msgstr "" -#~ "`bpo-16382 `__: Improve exception " -#~ "message of warnings.warn() for bad category. Initial patch by Phil Elson." - -#~ msgid "" -#~ "`bpo-21932 `__: os.read() now uses a :" -#~ "c:func:`Py_ssize_t` type instead of :c:type:`int` for the size to support " -#~ "reading more than 2 GB at once. On Windows, the size is truncted to " -#~ "INT_MAX. As any call to os.read(), the OS may read less bytes than the " -#~ "number of requested bytes." -#~ msgstr "" -#~ "`bpo-21932 `__: os.read() now uses a :" -#~ "c:func:`Py_ssize_t` type instead of :c:type:`int` for the size to support " -#~ "reading more than 2 GB at once. On Windows, the size is truncted to " -#~ "INT_MAX. As any call to os.read(), the OS may read less bytes than the " -#~ "number of requested bytes." - -#~ msgid "" -#~ "`bpo-21942 `__: Fixed source file " -#~ "viewing in pydoc's server mode on Windows." -#~ msgstr "" -#~ "`bpo-21942 `__: Fixed source file " -#~ "viewing in pydoc's server mode on Windows." - -#~ msgid "" -#~ "`bpo-11259 `__: asynchat.async_chat()." -#~ "set_terminator() now raises a ValueError if the number of received bytes " -#~ "is negative." -#~ msgstr "" -#~ "`bpo-11259 `__: asynchat.async_chat()." -#~ "set_terminator() now raises a ValueError if the number of received bytes " -#~ "is negative." - -#~ msgid "" -#~ "`bpo-12523 `__: asynchat.async_chat." -#~ "push() now raises a TypeError if it doesn't get a bytes string" -#~ msgstr "" -#~ "`bpo-12523 `__: asynchat.async_chat." -#~ "push() now raises a TypeError if it doesn't get a bytes string" - -#~ msgid "" -#~ "`bpo-21707 `__: Add missing " -#~ "kwonlyargcount argument to ModuleFinder.replace_paths_in_code()." -#~ msgstr "" -#~ "`bpo-21707 `__: Add missing " -#~ "kwonlyargcount argument to ModuleFinder.replace_paths_in_code()." - -#~ msgid "" -#~ "`bpo-20639 `__: calling Path." -#~ "with_suffix('') allows removing the suffix again. Patch by July Tikhonov." -#~ msgstr "" -#~ "`bpo-20639 `__: calling Path." -#~ "with_suffix('') allows removing the suffix again. Patch by July Tikhonov." - -#~ msgid "" -#~ "`bpo-21714 `__: Disallow the " -#~ "construction of invalid paths using Path.with_name(). Original patch by " -#~ "Antony Lee." -#~ msgstr "" -#~ "`bpo-21714 `__: Disallow the " -#~ "construction of invalid paths using Path.with_name(). Original patch by " -#~ "Antony Lee." - -#~ msgid "" -#~ "`bpo-15014 `__: Added 'auth' method " -#~ "to smtplib to make implementing auth mechanisms simpler, and used it " -#~ "internally in the login method." -#~ msgstr "" -#~ "`bpo-15014 `__: Added 'auth' method " -#~ "to smtplib to make implementing auth mechanisms simpler, and used it " -#~ "internally in the login method." - -#~ msgid "" -#~ "`bpo-21151 `__: Fixed a segfault in " -#~ "the winreg module when ``None`` is passed as a ``REG_BINARY`` value to " -#~ "SetValueEx. Patch by John Ehresman." -#~ msgstr "" -#~ "`bpo-21151 `__: Fixed a segfault in " -#~ "the winreg module when ``None`` is passed as a ``REG_BINARY`` value to " -#~ "SetValueEx. Patch by John Ehresman." - -#~ msgid "" -#~ "`bpo-21090 `__: io.FileIO.readall() " -#~ "does not ignore I/O errors anymore. Before, it ignored I/O errors if at " -#~ "least the first C call read() succeed." -#~ msgstr "" -#~ "`bpo-21090 `__: io.FileIO.readall() " -#~ "does not ignore I/O errors anymore. Before, it ignored I/O errors if at " -#~ "least the first C call read() succeed." - -#~ msgid "" -#~ "`bpo-5800 `__: headers parameter of " -#~ "wsgiref.headers.Headers is now optional. Initial patch by Pablo Torres " -#~ "Navarrete and SilentGhost." -#~ msgstr "" -#~ "`bpo-5800 `__: headers parameter of " -#~ "wsgiref.headers.Headers is now optional. Initial patch by Pablo Torres " -#~ "Navarrete and SilentGhost." - -#~ msgid "" -#~ "`bpo-21781 `__: ssl.RAND_add() now " -#~ "supports strings longer than 2 GB." -#~ msgstr "" -#~ "`bpo-21781 `__: ssl.RAND_add() now " -#~ "supports strings longer than 2 GB." - -#~ msgid "" -#~ "`bpo-21679 `__: Prevent extraneous " -#~ "fstat() calls during open(). Patch by Bohuslav Kabrda." -#~ msgstr "" -#~ "`bpo-21679 `__: Prevent extraneous " -#~ "fstat() calls during open(). Patch by Bohuslav Kabrda." - -#~ msgid "" -#~ "`bpo-21863 `__: cProfile now displays " -#~ "the module name of C extension functions, in addition to their own name." -#~ msgstr "" -#~ "`bpo-21863 `__: cProfile now displays " -#~ "the module name of C extension functions, in addition to their own name." - -#~ msgid "" -#~ "`bpo-11453 `__: asyncore: emit a " -#~ "ResourceWarning when an unclosed file_wrapper object is destroyed. The " -#~ "destructor now closes the file if needed. The close() method can now be " -#~ "called twice: the second call does nothing." -#~ msgstr "" -#~ "`bpo-11453 `__: asyncore: emit a " -#~ "ResourceWarning when an unclosed file_wrapper object is destroyed. The " -#~ "destructor now closes the file if needed. The close() method can now be " -#~ "called twice: the second call does nothing." - -#~ msgid "" -#~ "`bpo-21858 `__: Better handling of " -#~ "Python exceptions in the sqlite3 module." -#~ msgstr "" -#~ "`bpo-21858 `__: Better handling of " -#~ "Python exceptions in the sqlite3 module." - -#~ msgid "" -#~ "`bpo-21476 `__: Make sure the email." -#~ "parser.BytesParser TextIOWrapper is discarded after parsing, so the input " -#~ "file isn't unexpectedly closed." -#~ msgstr "" -#~ "`bpo-21476 `__: Make sure the email." -#~ "parser.BytesParser TextIOWrapper is discarded after parsing, so the input " -#~ "file isn't unexpectedly closed." - -#~ msgid "" -#~ "`bpo-20295 `__: imghdr now recognizes " -#~ "OpenEXR format images." -#~ msgstr "" -#~ "`bpo-20295 `__: imghdr now recognizes " -#~ "OpenEXR format images." - -#~ msgid "" -#~ "`bpo-21729 `__: Used the \"with\" " -#~ "statement in the dbm.dumb module to ensure files closing. Patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`bpo-21729 `__: Used the \"with\" " -#~ "statement in the dbm.dumb module to ensure files closing. Patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`bpo-21491 `__: socketserver: Fix a " -#~ "race condition in child processes reaping." -#~ msgstr "" -#~ "`bpo-21491 `__: socketserver: Fix a " -#~ "race condition in child processes reaping." - -#~ msgid "" -#~ "`bpo-21719 `__: Added the " -#~ "``st_file_attributes`` field to os.stat_result on Windows." -#~ msgstr "" -#~ "`bpo-21719 `__: Added the " -#~ "``st_file_attributes`` field to os.stat_result on Windows." - -#~ msgid "" -#~ "`bpo-21832 `__: Require named tuple " -#~ "inputs to be exact strings." -#~ msgstr "" -#~ "`bpo-21832 `__: Require named tuple " -#~ "inputs to be exact strings." - -#~ msgid "" -#~ "`bpo-21722 `__: The distutils \"upload" -#~ "\" command now exits with a non-zero return code when uploading fails. " -#~ "Patch by Martin Dengler." -#~ msgstr "" -#~ "`bpo-21722 `__: The distutils \"upload" -#~ "\" command now exits with a non-zero return code when uploading fails. " -#~ "Patch by Martin Dengler." - -#~ msgid "" -#~ "`bpo-21723 `__: asyncio.Queue: " -#~ "support any type of number (ex: float) for the maximum size. Patch " -#~ "written by Vajrasky Kok." -#~ msgstr "" -#~ "`bpo-21723 `__: asyncio.Queue: " -#~ "support any type of number (ex: float) for the maximum size. Patch " -#~ "written by Vajrasky Kok." - -#~ msgid "" -#~ "`bpo-21711 `__: support for \"site-" -#~ "python\" directories has now been removed from the site module (it was " -#~ "deprecated in 3.4)." -#~ msgstr "" -#~ "`bpo-21711 `__: support for \"site-" -#~ "python\" directories has now been removed from the site module (it was " -#~ "deprecated in 3.4)." - -#~ msgid "" -#~ "`bpo-17552 `__: new socket.sendfile() " -#~ "method allowing a file to be sent over a socket by using high-performance " -#~ "os.sendfile() on UNIX. Patch by Giampaolo Rodola'." -#~ msgstr "" -#~ "`bpo-17552 `__: new socket.sendfile() " -#~ "method allowing a file to be sent over a socket by using high-performance " -#~ "os.sendfile() on UNIX. Patch by Giampaolo Rodola'." - -#~ msgid "" -#~ "`bpo-18039 `__: dbm.dump.open() now " -#~ "always creates a new database when the flag has the value 'n'. Patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`bpo-18039 `__: dbm.dump.open() now " -#~ "always creates a new database when the flag has the value 'n'. Patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`bpo-21326 `__: Add a new is_closed() " -#~ "method to asyncio.BaseEventLoop. run_forever() and run_until_complete() " -#~ "methods of asyncio.BaseEventLoop now raise an exception if the event loop " -#~ "was closed." -#~ msgstr "" -#~ "`bpo-21326 `__: Add a new is_closed() " -#~ "method to asyncio.BaseEventLoop. run_forever() and run_until_complete() " -#~ "methods of asyncio.BaseEventLoop now raise an exception if the event loop " -#~ "was closed." - -#~ msgid "" -#~ "`bpo-21766 `__: Prevent a security " -#~ "hole in CGIHTTPServer by URL unquoting paths before checking for a CGI " -#~ "script at that path." -#~ msgstr "" -#~ "`bpo-21766 `__: Prevent a security " -#~ "hole in CGIHTTPServer by URL unquoting paths before checking for a CGI " -#~ "script at that path." - -#~ msgid "" -#~ "`bpo-21310 `__: Fixed possible " -#~ "resource leak in failed open()." -#~ msgstr "" -#~ "`bpo-21310 `__: Fixed possible " -#~ "resource leak in failed open()." - -#~ msgid "" -#~ "`bpo-21256 `__: Printout of keyword " -#~ "args should be in deterministic order in a mock function call. This will " -#~ "help to write better doctests." -#~ msgstr "" -#~ "`bpo-21256 `__: Printout of keyword " -#~ "args should be in deterministic order in a mock function call. This will " -#~ "help to write better doctests." - -#~ msgid "" -#~ "`bpo-21677 `__: Fixed chaining " -#~ "nonnormalized exceptions in io close() methods." -#~ msgstr "" -#~ "`bpo-21677 `__: Fixed chaining " -#~ "nonnormalized exceptions in io close() methods." - -#~ msgid "" -#~ "`bpo-11709 `__: Fix the pydoc.help " -#~ "function to not fail when sys.stdin is not a valid file." -#~ msgstr "" -#~ "`bpo-11709 `__: Fix the pydoc.help " -#~ "function to not fail when sys.stdin is not a valid file." - -#~ msgid "" -#~ "`bpo-21515 `__: tempfile." -#~ "TemporaryFile now uses os.O_TMPFILE flag is available." -#~ msgstr "" -#~ "`bpo-21515 `__: tempfile." -#~ "TemporaryFile now uses os.O_TMPFILE flag is available." - -#~ msgid "" -#~ "`bpo-13223 `__: Fix pydoc.writedoc so " -#~ "that the HTML documentation for methods that use 'self' in the example " -#~ "code is generated correctly." -#~ msgstr "" -#~ "`bpo-13223 `__: Fix pydoc.writedoc so " -#~ "that the HTML documentation for methods that use 'self' in the example " -#~ "code is generated correctly." - -#~ msgid "" -#~ "`bpo-21463 `__: In urllib.request, " -#~ "fix pruning of the FTP cache." -#~ msgstr "" -#~ "`bpo-21463 `__: In urllib.request, " -#~ "fix pruning of the FTP cache." - -#~ msgid "" -#~ "`bpo-21618 `__: The subprocess module " -#~ "could fail to close open fds that were inherited by the calling process " -#~ "and already higher than POSIX resource limits would otherwise allow. On " -#~ "systems with a functioning /proc/self/fd or /dev/fd interface the max is " -#~ "now ignored and all fds are closed." -#~ msgstr "" -#~ "`bpo-21618 `__: The subprocess module " -#~ "could fail to close open fds that were inherited by the calling process " -#~ "and already higher than POSIX resource limits would otherwise allow. On " -#~ "systems with a functioning /proc/self/fd or /dev/fd interface the max is " -#~ "now ignored and all fds are closed." - -#~ msgid "" -#~ "`bpo-20383 `__: Introduce importlib." -#~ "util.module_from_spec() as the preferred way to create a new module." -#~ msgstr "" -#~ "`bpo-20383 `__: Introduce importlib." -#~ "util.module_from_spec() as the preferred way to create a new module." - -#~ msgid "" -#~ "`bpo-21552 `__: Fixed possible " -#~ "integer overflow of too long string lengths in the tkinter module on 64-" -#~ "bit platforms." -#~ msgstr "" -#~ "`bpo-21552 `__: Fixed possible " -#~ "integer overflow of too long string lengths in the tkinter module on 64-" -#~ "bit platforms." - -#~ msgid "" -#~ "`bpo-14315 `__: The zipfile module " -#~ "now ignores extra fields in the central directory that are too short to " -#~ "be parsed instead of letting a struct.unpack error bubble up as this " -#~ "\"bad data\" appears in many real world zip files in the wild and is " -#~ "ignored by other zip tools." -#~ msgstr "" -#~ "`bpo-14315 `__: The zipfile module " -#~ "now ignores extra fields in the central directory that are too short to " -#~ "be parsed instead of letting a struct.unpack error bubble up as this " -#~ "\"bad data\" appears in many real world zip files in the wild and is " -#~ "ignored by other zip tools." - -#~ msgid "" -#~ "`bpo-13742 `__: Added \"key\" and " -#~ "\"reverse\" parameters to heapq.merge(). (First draft of patch " -#~ "contributed by Simon Sapin.)" -#~ msgstr "" -#~ "`bpo-13742 `__: Added \"key\" and " -#~ "\"reverse\" parameters to heapq.merge(). (First draft of patch " -#~ "contributed by Simon Sapin.)" - -#~ msgid "" -#~ "`bpo-21402 `__: tkinter.ttk now works " -#~ "when default root window is not set." -#~ msgstr "" -#~ "`bpo-21402 `__: tkinter.ttk now works " -#~ "when default root window is not set." - -#~ msgid "" -#~ "`bpo-3015 `__: _tkinter.create() now " -#~ "creates tkapp object with wantobject=1 by default." -#~ msgstr "" -#~ "`bpo-3015 `__: _tkinter.create() now " -#~ "creates tkapp object with wantobject=1 by default." - -#~ msgid "" -#~ "`bpo-10203 `__: sqlite3.Row now truly " -#~ "supports sequence protocol. In particular it supports reverse() and " -#~ "negative indices. Original patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-10203 `__: sqlite3.Row now truly " -#~ "supports sequence protocol. In particular it supports reverse() and " -#~ "negative indices. Original patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-18807 `__: If copying (no " -#~ "symlinks) specified for a venv, then the python interpreter aliases " -#~ "(python, python3) are now created by copying rather than symlinking." -#~ msgstr "" -#~ "`bpo-18807 `__: If copying (no " -#~ "symlinks) specified for a venv, then the python interpreter aliases " -#~ "(python, python3) are now created by copying rather than symlinking." - -#~ msgid "" -#~ "`bpo-20197 `__: Added support for the " -#~ "WebP image type in the imghdr module. Patch by Fabrice Aneche and Claudiu " -#~ "Popa." -#~ msgstr "" -#~ "`bpo-20197 `__: Added support for the " -#~ "WebP image type in the imghdr module. Patch by Fabrice Aneche and Claudiu " -#~ "Popa." - -#~ msgid "" -#~ "`bpo-21513 `__: Speedup some " -#~ "properties of IP addresses (IPv4Address, IPv6Address) such as .is_private " -#~ "or .is_multicast." -#~ msgstr "" -#~ "`bpo-21513 `__: Speedup some " -#~ "properties of IP addresses (IPv4Address, IPv6Address) such as .is_private " -#~ "or .is_multicast." - -#~ msgid "" -#~ "`bpo-21137 `__: Improve the repr for " -#~ "threading.Lock() and its variants by showing the \"locked\" or \"unlocked" -#~ "\" status. Patch by Berker Peksag." -#~ msgstr "" -#~ "`bpo-21137 `__: Improve the repr for " -#~ "threading.Lock() and its variants by showing the \"locked\" or \"unlocked" -#~ "\" status. Patch by Berker Peksag." - -#~ msgid "" -#~ "`bpo-21538 `__: The plistlib module " -#~ "now supports loading of binary plist files when reference or offset size " -#~ "is not a power of two." -#~ msgstr "" -#~ "`bpo-21538 `__: The plistlib module " -#~ "now supports loading of binary plist files when reference or offset size " -#~ "is not a power of two." - -#~ msgid "" -#~ "`bpo-21455 `__: Add a default backlog " -#~ "to socket.listen()." -#~ msgstr "" -#~ "`bpo-21455 `__: Add a default backlog " -#~ "to socket.listen()." - -#~ msgid "" -#~ "`bpo-21525 `__: Most Tkinter methods " -#~ "which accepted tuples now accept lists too." -#~ msgstr "" -#~ "`bpo-21525 `__: Most Tkinter methods " -#~ "which accepted tuples now accept lists too." - -#~ msgid "" -#~ "`bpo-22166 `__: With the assistance " -#~ "of a new internal _codecs._forget_codec helping function, test_codecs now " -#~ "clears the encoding caches to avoid the appearance of a reference leak" -#~ msgstr "" -#~ "`bpo-22166 `__: With the assistance " -#~ "of a new internal _codecs._forget_codec helping function, test_codecs now " -#~ "clears the encoding caches to avoid the appearance of a reference leak" - -#~ msgid "" -#~ "`bpo-22236 `__: Tkinter tests now " -#~ "don't reuse default root window. New root window is created for every " -#~ "test class." -#~ msgstr "" -#~ "`bpo-22236 `__: Tkinter tests now " -#~ "don't reuse default root window. New root window is created for every " -#~ "test class." - -#~ msgid "" -#~ "`bpo-10744 `__: Fix PEP 3118 format " -#~ "strings on ctypes objects with a nontrivial shape." -#~ msgstr "" -#~ "`bpo-10744 `__: Fix PEP 3118 format " -#~ "strings on ctypes objects with a nontrivial shape." - -#~ msgid "" -#~ "`bpo-20826 `__: Optimize ipaddress." -#~ "collapse_addresses()." -#~ msgstr "" -#~ "`bpo-20826 `__: Optimize ipaddress." -#~ "collapse_addresses()." - -#~ msgid "" -#~ "`bpo-21487 `__: Optimize ipaddress." -#~ "summarize_address_range() and ipaddress.{IPv4Network,IPv6Network}." -#~ "subnets()." -#~ msgstr "" -#~ "`bpo-21487 `__: Optimize ipaddress." -#~ "summarize_address_range() and ipaddress.{IPv4Network,IPv6Network}." -#~ "subnets()." - -#~ msgid "" -#~ "`bpo-21486 `__: Optimize parsing of " -#~ "netmasks in ipaddress.IPv4Network and ipaddress.IPv6Network." -#~ msgstr "" -#~ "`bpo-21486 `__: Optimize parsing of " -#~ "netmasks in ipaddress.IPv4Network and ipaddress.IPv6Network." - -#~ msgid "" -#~ "`bpo-13916 `__: Disallowed the " -#~ "surrogatepass error handler for non UTF-\\* encodings." -#~ msgstr "" -#~ "`bpo-13916 `__: Disallowed the " -#~ "surrogatepass error handler for non UTF-\\* encodings." - -#~ msgid "" -#~ "`bpo-20998 `__: Fixed re.fullmatch() " -#~ "of repeated single character pattern with ignore case. Original patch by " -#~ "Matthew Barnett." -#~ msgstr "" -#~ "`bpo-20998 `__: Fixed re.fullmatch() " -#~ "of repeated single character pattern with ignore case. Original patch by " -#~ "Matthew Barnett." - -#~ msgid "" -#~ "`bpo-21075 `__: fileinput.FileInput " -#~ "now reads bytes from standard stream if binary mode is specified. Patch " -#~ "by Sam Kimbrel." -#~ msgstr "" -#~ "`bpo-21075 `__: fileinput.FileInput " -#~ "now reads bytes from standard stream if binary mode is specified. Patch " -#~ "by Sam Kimbrel." - -#~ msgid "" -#~ "`bpo-19775 `__: Add a samefile() " -#~ "method to pathlib Path objects. Initial patch by Vajrasky Kok." -#~ msgstr "" -#~ "`bpo-19775 `__: Add a samefile() " -#~ "method to pathlib Path objects. Initial patch by Vajrasky Kok." - -#~ msgid "" -#~ "`bpo-21226 `__: Set up modules " -#~ "properly in PyImport_ExecCodeModuleObject (and friends)." -#~ msgstr "" -#~ "`bpo-21226 `__: Set up modules " -#~ "properly in PyImport_ExecCodeModuleObject (and friends)." - -#~ msgid "" -#~ "`bpo-21398 `__: Fix a unicode error " -#~ "in the pydoc pager when the documentation contains characters not " -#~ "encodable to the stdout encoding." -#~ msgstr "" -#~ "`bpo-21398 `__: Fix a unicode error " -#~ "in the pydoc pager when the documentation contains characters not " -#~ "encodable to the stdout encoding." - -#~ msgid "" -#~ "`bpo-16531 `__: ipaddress.IPv4Network " -#~ "and ipaddress.IPv6Network now accept an (address, netmask) tuple " -#~ "argument, so as to easily construct network objects from existing " -#~ "addresses." -#~ msgstr "" -#~ "`bpo-16531 `__: ipaddress.IPv4Network " -#~ "and ipaddress.IPv6Network now accept an (address, netmask) tuple " -#~ "argument, so as to easily construct network objects from existing " -#~ "addresses." - -#~ msgid "" -#~ "`bpo-21156 `__: importlib.abc." -#~ "InspectLoader.source_to_code() is now a staticmethod." -#~ msgstr "" -#~ "`bpo-21156 `__: importlib.abc." -#~ "InspectLoader.source_to_code() is now a staticmethod." - -#~ msgid "" -#~ "`bpo-21424 `__: Simplified and " -#~ "optimized heaqp.nlargest() and nmsmallest() to make fewer tuple " -#~ "comparisons." -#~ msgstr "" -#~ "`bpo-21424 `__: Simplified and " -#~ "optimized heaqp.nlargest() and nmsmallest() to make fewer tuple " -#~ "comparisons." - -#~ msgid "" -#~ "`bpo-21396 `__: Fix " -#~ "TextIOWrapper(..., write_through=True) to not force a flush() on the " -#~ "underlying binary stream. Patch by akira." -#~ msgstr "" -#~ "`bpo-21396 `__: Fix " -#~ "TextIOWrapper(..., write_through=True) to not force a flush() on the " -#~ "underlying binary stream. Patch by akira." - -#~ msgid "" -#~ "`bpo-18314 `__: Unlink now removes " -#~ "junctions on Windows. Patch by Kim Gräsman" -#~ msgstr "" -#~ "`bpo-18314 `__: Unlink now removes " -#~ "junctions on Windows. Patch by Kim Gräsman" - -#~ msgid "" -#~ "`bpo-21088 `__: Bugfix for curses." -#~ "window.addch() regression in 3.4.0. In porting to Argument Clinic, the " -#~ "first two arguments were reversed." -#~ msgstr "" -#~ "`bpo-21088 `__: Bugfix for curses." -#~ "window.addch() regression in 3.4.0. In porting to Argument Clinic, the " -#~ "first two arguments were reversed." - -#~ msgid "" -#~ "`bpo-21407 `__: _decimal: The module " -#~ "now supports function signatures." -#~ msgstr "" -#~ "`bpo-21407 `__: _decimal: The module " -#~ "now supports function signatures." - -#~ msgid "" -#~ "`bpo-10650 `__: Remove the non-" -#~ "standard 'watchexp' parameter from the Decimal.quantize() method in the " -#~ "Python version. It had never been present in the C version." -#~ msgstr "" -#~ "`bpo-10650 `__: Remove the non-" -#~ "standard 'watchexp' parameter from the Decimal.quantize() method in the " -#~ "Python version. It had never been present in the C version." - -#~ msgid "" -#~ "`bpo-21469 `__: Reduced the risk of " -#~ "false positives in robotparser by checking to make sure that robots.txt " -#~ "has been read or does not exist prior to returning True in can_fetch()." -#~ msgstr "" -#~ "`bpo-21469 `__: Reduced the risk of " -#~ "false positives in robotparser by checking to make sure that robots.txt " -#~ "has been read or does not exist prior to returning True in can_fetch()." - -#~ msgid "" -#~ "`bpo-19414 `__: Have the OrderedDict " -#~ "mark deleted links as unusable. This gives an early failure if the link " -#~ "is deleted during iteration." -#~ msgstr "" -#~ "`bpo-19414 `__: Have the OrderedDict " -#~ "mark deleted links as unusable. This gives an early failure if the link " -#~ "is deleted during iteration." - -#~ msgid "" -#~ "`bpo-21421 `__: Add __slots__ to the " -#~ "MappingViews ABC. Patch by Josh Rosenberg." -#~ msgstr "" -#~ "`bpo-21421 `__: Add __slots__ to the " -#~ "MappingViews ABC. Patch by Josh Rosenberg." - -#~ msgid "" -#~ "`bpo-21101 `__: Eliminate double " -#~ "hashing in the C speed-up code for collections.Counter()." -#~ msgstr "" -#~ "`bpo-21101 `__: Eliminate double " -#~ "hashing in the C speed-up code for collections.Counter()." - -#~ msgid "" -#~ "`bpo-21321 `__: itertools.islice() " -#~ "now releases the reference to the source iterator when the slice is " -#~ "exhausted. Patch by Anton Afanasyev." -#~ msgstr "" -#~ "`bpo-21321 `__: itertools.islice() " -#~ "now releases the reference to the source iterator when the slice is " -#~ "exhausted. Patch by Anton Afanasyev." - -#~ msgid "" -#~ "`bpo-21057 `__: TextIOWrapper now " -#~ "allows the underlying binary stream's read() or read1() method to return " -#~ "an arbitrary bytes-like object (such as a memoryview). Patch by Nikolaus " -#~ "Rath." -#~ msgstr "" -#~ "`bpo-21057 `__: TextIOWrapper now " -#~ "allows the underlying binary stream's read() or read1() method to return " -#~ "an arbitrary bytes-like object (such as a memoryview). Patch by Nikolaus " -#~ "Rath." - -#~ msgid "" -#~ "`bpo-20951 `__: SSLSocket.send() now " -#~ "raises either SSLWantReadError or SSLWantWriteError on a non-blocking " -#~ "socket if the operation would block. Previously, it would return 0. " -#~ "Patch by Nikolaus Rath." -#~ msgstr "" -#~ "`bpo-20951 `__: SSLSocket.send() now " -#~ "raises either SSLWantReadError or SSLWantWriteError on a non-blocking " -#~ "socket if the operation would block. Previously, it would return 0. " -#~ "Patch by Nikolaus Rath." - -#~ msgid "" -#~ "`bpo-13248 `__: removed previously " -#~ "deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." -#~ msgstr "" -#~ "`bpo-13248 `__: removed previously " -#~ "deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." - -#~ msgid "" -#~ "`bpo-9815 `__: assertRaises now tries " -#~ "to clear references to local variables in the exception's traceback." -#~ msgstr "" -#~ "`bpo-9815 `__: assertRaises now tries " -#~ "to clear references to local variables in the exception's traceback." - -#~ msgid "" -#~ "`bpo-19940 `__: ssl." -#~ "cert_time_to_seconds() now interprets the given time string in the UTC " -#~ "timezone (as specified in RFC 5280), not the local timezone." -#~ msgstr "" -#~ "`bpo-19940 `__: ssl." -#~ "cert_time_to_seconds() now interprets the given time string in the UTC " -#~ "timezone (as specified in RFC 5280), not the local timezone." - -#~ msgid "" -#~ "`bpo-13204 `__: Calling sys.flags." -#~ "__new__ would crash the interpreter, now it raises a TypeError." -#~ msgstr "" -#~ "`bpo-13204 `__: Calling sys.flags." -#~ "__new__ would crash the interpreter, now it raises a TypeError." - -#~ msgid "" -#~ "`bpo-19385 `__: Make operations on a " -#~ "closed dbm.dumb database always raise the same exception." -#~ msgstr "" -#~ "`bpo-19385 `__: Make operations on a " -#~ "closed dbm.dumb database always raise the same exception." - -#~ msgid "" -#~ "`bpo-21207 `__: Detect when the os." -#~ "urandom cached fd has been closed or replaced, and open it anew." -#~ msgstr "" -#~ "`bpo-21207 `__: Detect when the os." -#~ "urandom cached fd has been closed or replaced, and open it anew." - -#~ msgid "" -#~ "`bpo-21291 `__: subprocess's Popen." -#~ "wait() is now thread safe so that multiple threads may be calling wait() " -#~ "or poll() on a Popen instance at the same time without losing the Popen." -#~ "returncode value." -#~ msgstr "" -#~ "`bpo-21291 `__: subprocess's Popen." -#~ "wait() is now thread safe so that multiple threads may be calling wait() " -#~ "or poll() on a Popen instance at the same time without losing the Popen." -#~ "returncode value." - -#~ msgid "" -#~ "`bpo-21127 `__: Path objects can now " -#~ "be instantiated from str subclass instances (such as ``numpy.str_``)." -#~ msgstr "" -#~ "`bpo-21127 `__: Path objects can now " -#~ "be instantiated from str subclass instances (such as ``numpy.str_``)." - -#~ msgid "" -#~ "`bpo-15002 `__: urllib.response " -#~ "object to use _TemporaryFileWrapper (and _TemporaryFileCloser) facility. " -#~ "Provides a better way to handle file descriptor close. Patch contributed " -#~ "by Christian Theune." -#~ msgstr "" -#~ "`bpo-15002 `__: urllib.response " -#~ "object to use _TemporaryFileWrapper (and _TemporaryFileCloser) facility. " -#~ "Provides a better way to handle file descriptor close. Patch contributed " -#~ "by Christian Theune." - -#~ msgid "" -#~ "`bpo-12220 `__: mindom now raises a " -#~ "custom ValueError indicating it doesn't support spaces in URIs instead of " -#~ "letting a 'split' ValueError bubble up." -#~ msgstr "" -#~ "`bpo-12220 `__: mindom now raises a " -#~ "custom ValueError indicating it doesn't support spaces in URIs instead of " -#~ "letting a 'split' ValueError bubble up." - -#~ msgid "" -#~ "`bpo-21068 `__: The ssl.PROTOCOL* " -#~ "constants are now enum members." -#~ msgstr "" -#~ "`bpo-21068 `__: The ssl.PROTOCOL* " -#~ "constants are now enum members." - -#~ msgid "" -#~ "`bpo-21276 `__: posixmodule: Don't " -#~ "define USE_XATTRS on KFreeBSD and the Hurd." -#~ msgstr "" -#~ "`bpo-21276 `__: posixmodule: Don't " -#~ "define USE_XATTRS on KFreeBSD and the Hurd." - -#~ msgid "" -#~ "`bpo-21262 `__: New method " -#~ "assert_not_called for Mock. It raises AssertionError if the mock has been " -#~ "called." -#~ msgstr "" -#~ "`bpo-21262 `__: New method " -#~ "assert_not_called for Mock. It raises AssertionError if the mock has been " -#~ "called." - -#~ msgid "" -#~ "`bpo-21238 `__: New keyword argument " -#~ "`unsafe` to Mock. It raises `AttributeError` incase of an attribute " -#~ "startswith assert or assret." -#~ msgstr "" -#~ "`bpo-21238 `__: New keyword argument " -#~ "`unsafe` to Mock. It raises `AttributeError` incase of an attribute " -#~ "startswith assert or assret." - -#~ msgid "" -#~ "`bpo-20896 `__: ssl." -#~ "get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, " -#~ "for maximum compatibility." -#~ msgstr "" -#~ "`bpo-20896 `__: ssl." -#~ "get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, " -#~ "for maximum compatibility." - -#~ msgid "" -#~ "`bpo-21239 `__: patch.stopall() " -#~ "didn't work deterministically when the same name was patched more than " -#~ "once." -#~ msgstr "" -#~ "`bpo-21239 `__: patch.stopall() " -#~ "didn't work deterministically when the same name was patched more than " -#~ "once." - -#~ msgid "" -#~ "`bpo-21203 `__: Updated fileConfig " -#~ "and dictConfig to remove inconsistencies. Thanks to Jure Koren for the " -#~ "patch." -#~ msgstr "" -#~ "`bpo-21203 `__: Updated fileConfig " -#~ "and dictConfig to remove inconsistencies. Thanks to Jure Koren for the " -#~ "patch." - -#~ msgid "" -#~ "`bpo-21222 `__: Passing name keyword " -#~ "argument to mock.create_autospec now works." -#~ msgstr "" -#~ "`bpo-21222 `__: Passing name keyword " -#~ "argument to mock.create_autospec now works." - -#~ msgid "" -#~ "`bpo-21197 `__: Add lib64 -> lib " -#~ "symlink in venvs on 64-bit non-OS X POSIX." -#~ msgstr "" -#~ "`bpo-21197 `__: Add lib64 -> lib " -#~ "symlink in venvs on 64-bit non-OS X POSIX." - -#~ msgid "" -#~ "`bpo-17498 `__: Some SMTP servers " -#~ "disconnect after certain errors, violating strict RFC conformance. " -#~ "Instead of losing the error code when we issue the subsequent RSET, " -#~ "smtplib now returns the error code and defers raising the " -#~ "SMTPServerDisconnected error until the next command is issued." -#~ msgstr "" -#~ "`bpo-17498 `__: Some SMTP servers " -#~ "disconnect after certain errors, violating strict RFC conformance. " -#~ "Instead of losing the error code when we issue the subsequent RSET, " -#~ "smtplib now returns the error code and defers raising the " -#~ "SMTPServerDisconnected error until the next command is issued." - -#~ msgid "" -#~ "`bpo-17826 `__: setting an iterable " -#~ "side_effect on a mock function created by create_autospec now works. " -#~ "Patch by Kushal Das." -#~ msgstr "" -#~ "`bpo-17826 `__: setting an iterable " -#~ "side_effect on a mock function created by create_autospec now works. " -#~ "Patch by Kushal Das." - -#~ msgid "" -#~ "`bpo-7776 `__: Fix ``Host:`` header " -#~ "and reconnection when using http.client.HTTPConnection.set_tunnel(). " -#~ "Patch by Nikolaus Rath." -#~ msgstr "" -#~ "`bpo-7776 `__: Fix ``Host:`` header " -#~ "and reconnection when using http.client.HTTPConnection.set_tunnel(). " -#~ "Patch by Nikolaus Rath." - -#~ msgid "" -#~ "`bpo-20968 `__: unittest.mock." -#~ "MagicMock now supports division. Patch by Johannes Baiter." -#~ msgstr "" -#~ "`bpo-20968 `__: unittest.mock." -#~ "MagicMock now supports division. Patch by Johannes Baiter." - -#~ msgid "" -#~ "`bpo-21529 `__ (CVE-2014-4616): Fix " -#~ "arbitrary memory access in JSONDecoder.raw_decode with a negative second " -#~ "parameter. Bug reported by Guido Vranken." -#~ msgstr "" -#~ "`bpo-21529 `__ (CVE-2014-4616): Fix " -#~ "arbitrary memory access in JSONDecoder.raw_decode with a negative second " -#~ "parameter. Bug reported by Guido Vranken." - -#~ msgid "" -#~ "`bpo-21169 `__: getpass now handles " -#~ "non-ascii characters that the input stream encoding cannot encode by re-" -#~ "encoding using the replace error handler." -#~ msgstr "" -#~ "`bpo-21169 `__: getpass now handles " -#~ "non-ascii characters that the input stream encoding cannot encode by re-" -#~ "encoding using the replace error handler." - -#~ msgid "" -#~ "`bpo-21171 `__: Fixed undocumented " -#~ "filter API of the rot13 codec. Patch by Berker Peksag." -#~ msgstr "" -#~ "`bpo-21171 `__: Fixed undocumented " -#~ "filter API of the rot13 codec. Patch by Berker Peksag." - -#~ msgid "" -#~ "`bpo-20539 `__: Improved math." -#~ "factorial error message for large positive inputs and changed exception " -#~ "type (OverflowError -> ValueError) for large negative inputs." -#~ msgstr "" -#~ "`bpo-20539 `__: Improved math." -#~ "factorial error message for large positive inputs and changed exception " -#~ "type (OverflowError -> ValueError) for large negative inputs." - -#~ msgid "" -#~ "`bpo-21172 `__: isinstance check " -#~ "relaxed from dict to collections.Mapping." -#~ msgstr "" -#~ "`bpo-21172 `__: isinstance check " -#~ "relaxed from dict to collections.Mapping." - -#~ msgid "" -#~ "`bpo-21155 `__: asyncio.EventLoop." -#~ "create_unix_server() now raises a ValueError if path and sock are " -#~ "specified at the same time." -#~ msgstr "" -#~ "`bpo-21155 `__: asyncio.EventLoop." -#~ "create_unix_server() now raises a ValueError if path and sock are " -#~ "specified at the same time." - -#~ msgid "" -#~ "`bpo-21136 `__: Avoid unnecessary " -#~ "normalization of Fractions resulting from power and other operations. " -#~ "Patch by Raymond Hettinger." -#~ msgstr "" -#~ "`bpo-21136 `__: Avoid unnecessary " -#~ "normalization of Fractions resulting from power and other operations. " -#~ "Patch by Raymond Hettinger." - -#~ msgid "" -#~ "`bpo-17621 `__: Introduce importlib." -#~ "util.LazyLoader." -#~ msgstr "" -#~ "`bpo-17621 `__: Introduce importlib." -#~ "util.LazyLoader." - -#~ msgid "" -#~ "`bpo-21076 `__: signal module " -#~ "constants were turned into enums. Patch by Giampaolo Rodola'." -#~ msgstr "" -#~ "`bpo-21076 `__: signal module " -#~ "constants were turned into enums. Patch by Giampaolo Rodola'." - -#~ msgid "" -#~ "`bpo-20636 `__: Improved the repr of " -#~ "Tkinter widgets." -#~ msgstr "" -#~ "`bpo-20636 `__: Improved the repr of " -#~ "Tkinter widgets." - -#~ msgid "" -#~ "`bpo-19505 `__: The items, keys, and " -#~ "values views of OrderedDict now support reverse iteration using " -#~ "reversed()." -#~ msgstr "" -#~ "`bpo-19505 `__: The items, keys, and " -#~ "values views of OrderedDict now support reverse iteration using " -#~ "reversed()." - -#~ msgid "" -#~ "`bpo-21149 `__: Improved thread-" -#~ "safety in logging cleanup during interpreter shutdown. Thanks to Devin " -#~ "Jeanpierre for the patch." -#~ msgstr "" -#~ "`bpo-21149 `__: Improved thread-" -#~ "safety in logging cleanup during interpreter shutdown. Thanks to Devin " -#~ "Jeanpierre for the patch." - -#~ msgid "" -#~ "`bpo-21058 `__: Fix a leak of file " -#~ "descriptor in :func:`tempfile.NamedTemporaryFile`, close the file " -#~ "descriptor if :func:`io.open` fails" -#~ msgstr "" -#~ "`bpo-21058 `__: Fix a leak of file " -#~ "descriptor in :func:`tempfile.NamedTemporaryFile`, close the file " -#~ "descriptor if :func:`io.open` fails" - -#~ msgid "" -#~ "`bpo-21200 `__: Return None from " -#~ "pkgutil.get_loader() when __spec__ is missing." -#~ msgstr "" -#~ "`bpo-21200 `__: Return None from " -#~ "pkgutil.get_loader() when __spec__ is missing." - -#~ msgid "" -#~ "`bpo-21013 `__: Enhance ssl." -#~ "create_default_context() when used for server side sockets to provide " -#~ "better security by default." -#~ msgstr "" -#~ "`bpo-21013 `__: Enhance ssl." -#~ "create_default_context() when used for server side sockets to provide " -#~ "better security by default." - -#~ msgid "" -#~ "`bpo-20145 `__: `assertRaisesRegex` " -#~ "and `assertWarnsRegex` now raise a TypeError if the second argument is " -#~ "not a string or compiled regex." -#~ msgstr "" -#~ "`bpo-20145 `__: `assertRaisesRegex` " -#~ "and `assertWarnsRegex` now raise a TypeError if the second argument is " -#~ "not a string or compiled regex." - -#~ msgid "" -#~ "`bpo-20633 `__: Replace relative " -#~ "import by absolute import." -#~ msgstr "" -#~ "`bpo-20633 `__: Replace relative " -#~ "import by absolute import." - -#~ msgid "" -#~ "`bpo-20980 `__: Stop wrapping " -#~ "exception when using ThreadPool." -#~ msgstr "" -#~ "`bpo-20980 `__: Stop wrapping " -#~ "exception when using ThreadPool." - -#~ msgid "" -#~ "`bpo-21082 `__: In os.makedirs, do " -#~ "not set the process-wide umask. Note this changes behavior of makedirs " -#~ "when exist_ok=True." -#~ msgstr "" -#~ "`bpo-21082 `__: In os.makedirs, do " -#~ "not set the process-wide umask. Note this changes behavior of makedirs " -#~ "when exist_ok=True." - -#~ msgid "" -#~ "`bpo-20990 `__: Fix issues found by " -#~ "pyflakes for multiprocessing." -#~ msgstr "" -#~ "`bpo-20990 `__: Fix issues found by " -#~ "pyflakes for multiprocessing." - -#~ msgid "" -#~ "`bpo-21015 `__: SSL contexts will now " -#~ "automatically select an elliptic curve for ECDH key exchange on OpenSSL " -#~ "1.0.2 and later, and otherwise default to \"prime256v1\"." -#~ msgstr "" -#~ "`bpo-21015 `__: SSL contexts will now " -#~ "automatically select an elliptic curve for ECDH key exchange on OpenSSL " -#~ "1.0.2 and later, and otherwise default to \"prime256v1\"." - -#~ msgid "" -#~ "`bpo-21000 `__: Improve the command-" -#~ "line interface of json.tool." -#~ msgstr "" -#~ "`bpo-21000 `__: Improve the command-" -#~ "line interface of json.tool." - -#~ msgid "" -#~ "`bpo-20995 `__: Enhance default " -#~ "ciphers used by the ssl module to enable better security and prioritize " -#~ "perfect forward secrecy." -#~ msgstr "" -#~ "`bpo-20995 `__: Enhance default " -#~ "ciphers used by the ssl module to enable better security and prioritize " -#~ "perfect forward secrecy." - -#~ msgid "" -#~ "`bpo-20884 `__: Don't assume that " -#~ "__file__ is defined on importlib.__init__." -#~ msgstr "" -#~ "`bpo-20884 `__: Don't assume that " -#~ "__file__ is defined on importlib.__init__." - -#~ msgid "" -#~ "`bpo-21499 `__: Ignore __builtins__ " -#~ "in several test_importlib.test_api tests." -#~ msgstr "" -#~ "`bpo-21499 `__: Ignore __builtins__ " -#~ "in several test_importlib.test_api tests." - -#~ msgid "" -#~ "`bpo-20627 `__: xmlrpc.client." -#~ "ServerProxy is now a context manager." -#~ msgstr "" -#~ "`bpo-20627 `__: xmlrpc.client." -#~ "ServerProxy is now a context manager." - -#~ msgid "" -#~ "`bpo-19165 `__: The formatter module " -#~ "now raises DeprecationWarning instead of PendingDeprecationWarning." -#~ msgstr "" -#~ "`bpo-19165 `__: The formatter module " -#~ "now raises DeprecationWarning instead of PendingDeprecationWarning." - -#~ msgid "" -#~ "`bpo-13936 `__: Remove the ability of " -#~ "datetime.time instances to be considered false in boolean contexts." -#~ msgstr "" -#~ "`bpo-13936 `__: Remove the ability of " -#~ "datetime.time instances to be considered false in boolean contexts." - -#~ msgid "" -#~ "`bpo-18931 `__: selectors module now " -#~ "supports /dev/poll on Solaris. Patch by Giampaolo Rodola'." -#~ msgstr "" -#~ "`bpo-18931 `__: selectors module now " -#~ "supports /dev/poll on Solaris. Patch by Giampaolo Rodola'." - -#~ msgid "" -#~ "`bpo-19977 `__: When the ``LC_TYPE`` " -#~ "locale is the POSIX locale (``C`` locale), :py:data:`sys.stdin` and :py:" -#~ "data:`sys.stdout` are now using the ``surrogateescape`` error handler, " -#~ "instead of the ``strict`` error handler." -#~ msgstr "" -#~ "`bpo-19977 `__: When the ``LC_TYPE`` " -#~ "locale is the POSIX locale (``C`` locale), :py:data:`sys.stdin` and :py:" -#~ "data:`sys.stdout` are now using the ``surrogateescape`` error handler, " -#~ "instead of the ``strict`` error handler." - -#~ msgid "" -#~ "`bpo-20574 `__: Implement incremental " -#~ "decoder for cp65001 code (Windows code page 65001, Microsoft UTF-8)." -#~ msgstr "" -#~ "`bpo-20574 `__: Implement incremental " -#~ "decoder for cp65001 code (Windows code page 65001, Microsoft UTF-8)." - -#~ msgid "" -#~ "`bpo-20879 `__: Delay the " -#~ "initialization of encoding and decoding tables for base32, ascii85 and " -#~ "base85 codecs in the base64 module, and delay the initialization of the " -#~ "unquote_to_bytes() table of the urllib.parse module, to not waste memory " -#~ "if these modules are not used." -#~ msgstr "" -#~ "`bpo-20879 `__: Delay the " -#~ "initialization of encoding and decoding tables for base32, ascii85 and " -#~ "base85 codecs in the base64 module, and delay the initialization of the " -#~ "unquote_to_bytes() table of the urllib.parse module, to not waste memory " -#~ "if these modules are not used." - -#~ msgid "" -#~ "`bpo-19157 `__: Include the broadcast " -#~ "address in the usuable hosts for IPv6 in ipaddress." -#~ msgstr "" -#~ "`bpo-19157 `__: Include the broadcast " -#~ "address in the usuable hosts for IPv6 in ipaddress." - -#~ msgid "" -#~ "`bpo-11599 `__: When an external " -#~ "command (e.g. compiler) fails, distutils now prints out the whole command " -#~ "line (instead of just the command name) if the environment variable " -#~ "DISTUTILS_DEBUG is set." -#~ msgstr "" -#~ "`bpo-11599 `__: When an external " -#~ "command (e.g. compiler) fails, distutils now prints out the whole command " -#~ "line (instead of just the command name) if the environment variable " -#~ "DISTUTILS_DEBUG is set." - -#~ msgid "" -#~ "`bpo-4931 `__: distutils should not " -#~ "produce unhelpful \"error: None\" messages anymore. distutils.util." -#~ "grok_environment_error is kept but doc-deprecated." -#~ msgstr "" -#~ "`bpo-4931 `__: distutils should not " -#~ "produce unhelpful \"error: None\" messages anymore. distutils.util." -#~ "grok_environment_error is kept but doc-deprecated." - -#~ msgid "" -#~ "`bpo-20875 `__: Prevent possible gzip " -#~ "\"'read' is not defined\" NameError. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-20875 `__: Prevent possible gzip " -#~ "\"'read' is not defined\" NameError. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-11558 `__: ``email.message." -#~ "Message.attach`` now returns a more useful error message if ``attach`` is " -#~ "called on a message for which ``is_multipart`` is False." -#~ msgstr "" -#~ "`bpo-11558 `__: ``email.message." -#~ "Message.attach`` now returns a more useful error message if ``attach`` is " -#~ "called on a message for which ``is_multipart`` is False." - -#~ msgid "" -#~ "`bpo-20283 `__: RE pattern methods " -#~ "now accept the string keyword parameters as documented. The pattern and " -#~ "source keyword parameters are left as deprecated aliases." -#~ msgstr "" -#~ "`bpo-20283 `__: RE pattern methods " -#~ "now accept the string keyword parameters as documented. The pattern and " -#~ "source keyword parameters are left as deprecated aliases." - -#~ msgid "" -#~ "`bpo-20778 `__: Fix modulefinder to " -#~ "work with bytecode-only modules." -#~ msgstr "" -#~ "`bpo-20778 `__: Fix modulefinder to " -#~ "work with bytecode-only modules." - -#~ msgid "" -#~ "`bpo-20791 `__: copy.copy() now " -#~ "doesn't make a copy when the input is a bytes object. Initial patch by " -#~ "Peter Otten." -#~ msgstr "" -#~ "`bpo-20791 `__: copy.copy() now " -#~ "doesn't make a copy when the input is a bytes object. Initial patch by " -#~ "Peter Otten." - -#~ msgid "" -#~ "`bpo-19748 `__: On AIX, time.mktime() " -#~ "now raises an OverflowError for year outsize range [1902; 2037]." -#~ msgstr "" -#~ "`bpo-19748 `__: On AIX, time.mktime() " -#~ "now raises an OverflowError for year outsize range [1902; 2037]." - -#~ msgid "" -#~ "`bpo-19573 `__: inspect.signature: " -#~ "Use enum for parameter kind constants." -#~ msgstr "" -#~ "`bpo-19573 `__: inspect.signature: " -#~ "Use enum for parameter kind constants." - -#~ msgid "" -#~ "`bpo-20726 `__: inspect.signature: " -#~ "Make Signature and Parameter picklable." -#~ msgstr "" -#~ "`bpo-20726 `__: inspect.signature: " -#~ "Make Signature and Parameter picklable." - -#~ msgid "" -#~ "`bpo-17373 `__: Add inspect.Signature." -#~ "from_callable method." -#~ msgstr "" -#~ "`bpo-17373 `__: Add inspect.Signature." -#~ "from_callable method." - -#~ msgid "" -#~ "`bpo-20378 `__: Improve repr of " -#~ "inspect.Signature and inspect.Parameter." -#~ msgstr "" -#~ "`bpo-20378 `__: Improve repr of " -#~ "inspect.Signature and inspect.Parameter." - -#~ msgid "" -#~ "`bpo-20816 `__: Fix inspect." -#~ "getcallargs() to raise correct TypeError for missing keyword-only " -#~ "arguments. Patch by Jeremiah Lowin." -#~ msgstr "" -#~ "`bpo-20816 `__: Fix inspect." -#~ "getcallargs() to raise correct TypeError for missing keyword-only " -#~ "arguments. Patch by Jeremiah Lowin." - -#~ msgid "" -#~ "`bpo-20817 `__: Fix inspect." -#~ "getcallargs() to fail correctly if more than 3 arguments are missing. " -#~ "Patch by Jeremiah Lowin." -#~ msgstr "" -#~ "`bpo-20817 `__: Fix inspect." -#~ "getcallargs() to fail correctly if more than 3 arguments are missing. " -#~ "Patch by Jeremiah Lowin." - -#~ msgid "" -#~ "`bpo-6676 `__: Ensure a meaningful " -#~ "exception is raised when attempting to parse more than one XML document " -#~ "per pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto " -#~ "and Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)" -#~ msgstr "" -#~ "`bpo-6676 `__: Ensure a meaningful " -#~ "exception is raised when attempting to parse more than one XML document " -#~ "per pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto " -#~ "and Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)" - -#~ msgid "" -#~ "`bpo-21117 `__: Fix inspect.signature " -#~ "to better support functools.partial. Due to the specifics of functools." -#~ "partial implementation, positional-or-keyword arguments passed as keyword " -#~ "arguments become keyword-only." -#~ msgstr "" -#~ "`bpo-21117 `__: Fix inspect.signature " -#~ "to better support functools.partial. Due to the specifics of functools." -#~ "partial implementation, positional-or-keyword arguments passed as keyword " -#~ "arguments become keyword-only." - -#~ msgid "" -#~ "`bpo-20334 `__: inspect.Signature and " -#~ "inspect.Parameter are now hashable. Thanks to Antony Lee for bug reports " -#~ "and suggestions." -#~ msgstr "" -#~ "`bpo-20334 `__: inspect.Signature and " -#~ "inspect.Parameter are now hashable. Thanks to Antony Lee for bug reports " -#~ "and suggestions." - -#~ msgid "" -#~ "`bpo-15916 `__: doctest.DocTestSuite " -#~ "returns an empty unittest.TestSuite instead of raising ValueError if it " -#~ "finds no tests" -#~ msgstr "" -#~ "`bpo-15916 `__: doctest.DocTestSuite " -#~ "returns an empty unittest.TestSuite instead of raising ValueError if it " -#~ "finds no tests" - -#~ msgid "" -#~ "`bpo-21209 `__: Fix asyncio.tasks." -#~ "CoroWrapper to workaround a bug in yield-from implementation in CPythons " -#~ "prior to 3.4.1." -#~ msgstr "" -#~ "`bpo-21209 `__: Fix asyncio.tasks." -#~ "CoroWrapper to workaround a bug in yield-from implementation in CPythons " -#~ "prior to 3.4.1." - -#~ msgid "" -#~ "asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream " -#~ "`bpo-163 `__)." -#~ msgstr "" -#~ "asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream " -#~ "`bpo-163 `__)." - -#~ msgid "" -#~ "`bpo-21311 `__: Avoid exception in " -#~ "_osx_support with non-standard compiler configurations. Patch by John " -#~ "Szakmeister." -#~ msgstr "" -#~ "`bpo-21311 `__: Avoid exception in " -#~ "_osx_support with non-standard compiler configurations. Patch by John " -#~ "Szakmeister." - -#~ msgid "" -#~ "`bpo-11571 `__: Ensure that the " -#~ "turtle window becomes the topmost window when launched on OS X." -#~ msgstr "" -#~ "`bpo-11571 `__: Ensure that the " -#~ "turtle window becomes the topmost window when launched on OS X." - -#~ msgid "" -#~ "`bpo-21801 `__: Validate that " -#~ "__signature__ is None or an instance of Signature." -#~ msgstr "" -#~ "`bpo-21801 `__: Validate that " -#~ "__signature__ is None or an instance of Signature." - -#~ msgid "" -#~ "`bpo-21923 `__: Prevent " -#~ "AttributeError in distutils.sysconfig.customize_compiler due to possible " -#~ "uninitialized _config_vars." -#~ msgstr "" -#~ "`bpo-21923 `__: Prevent " -#~ "AttributeError in distutils.sysconfig.customize_compiler due to possible " -#~ "uninitialized _config_vars." - -#~ msgid "" -#~ "`bpo-21323 `__: Fix http.server to " -#~ "again handle scripts in CGI subdirectories, broken by the fix for " -#~ "security `bpo-19435 `__. Patch by " -#~ "Zach Byrne." -#~ msgstr "" -#~ "`bpo-21323 `__: Fix http.server to " -#~ "again handle scripts in CGI subdirectories, broken by the fix for " -#~ "security `bpo-19435 `__. Patch by " -#~ "Zach Byrne." - -#~ msgid "" -#~ "`bpo-22733 `__: Fix ffi_prep_args not " -#~ "zero-extending argument values correctly on 64-bit Windows." -#~ msgstr "" -#~ "`bpo-22733 `__: Fix ffi_prep_args not " -#~ "zero-extending argument values correctly on 64-bit Windows." - -#~ msgid "" -#~ "`bpo-23302 `__: Default to " -#~ "TCP_NODELAY=1 upon establishing an HTTPConnection. Removed use of hard-" -#~ "coded MSS as it's an optimization that's no longer needed with Nagle " -#~ "disabled." -#~ msgstr "" -#~ "`bpo-23302 `__: Default to " -#~ "TCP_NODELAY=1 upon establishing an HTTPConnection. Removed use of hard-" -#~ "coded MSS as it's an optimization that's no longer needed with Nagle " -#~ "disabled." - -#~ msgid "" -#~ "`bpo-20577 `__: Configuration of the " -#~ "max line length for the FormatParagraph extension has been moved from the " -#~ "General tab of the Idle preferences dialog to the FormatParagraph tab of " -#~ "the Config Extensions dialog. Patch by Tal Einat." -#~ msgstr "" -#~ "`bpo-20577 `__: Configuration of the " -#~ "max line length for the FormatParagraph extension has been moved from the " -#~ "General tab of the Idle preferences dialog to the FormatParagraph tab of " -#~ "the Config Extensions dialog. Patch by Tal Einat." - -#~ msgid "" -#~ "`bpo-16893 `__: Update Idle doc " -#~ "chapter to match current Idle and add new information." -#~ msgstr "" -#~ "`bpo-16893 `__: Update Idle doc " -#~ "chapter to match current Idle and add new information." - -#~ msgid "" -#~ "`bpo-3068 `__: Add Idle extension " -#~ "configuration dialog to Options menu. Changes are written to HOME/.idlerc/" -#~ "config-extensions.cfg. Original patch by Tal Einat." -#~ msgstr "" -#~ "`bpo-3068 `__: Add Idle extension " -#~ "configuration dialog to Options menu. Changes are written to HOME/.idlerc/" -#~ "config-extensions.cfg. Original patch by Tal Einat." - -#~ msgid "" -#~ "`bpo-16233 `__: A module browser " -#~ "(File : Class Browser, Alt+C) requires an editor window with a filename. " -#~ "When Class Browser is requested otherwise, from a shell, output window, " -#~ "or 'Untitled' editor, Idle no longer displays an error box. It now pops " -#~ "up an Open Module box (Alt+M). If a valid name is entered and a module is " -#~ "opened, a corresponding browser is also opened." -#~ msgstr "" -#~ "`bpo-16233 `__: A module browser " -#~ "(File : Class Browser, Alt+C) requires an editor window with a filename. " -#~ "When Class Browser is requested otherwise, from a shell, output window, " -#~ "or 'Untitled' editor, Idle no longer displays an error box. It now pops " -#~ "up an Open Module box (Alt+M). If a valid name is entered and a module is " -#~ "opened, a corresponding browser is also opened." - -#~ msgid "" -#~ "`bpo-4832 `__: Save As to type Python " -#~ "files automatically adds .py to the name you enter (even if your system " -#~ "does not display it). Some systems automatically add .txt when type is " -#~ "Text files." -#~ msgstr "" -#~ "`bpo-4832 `__: Save As to type Python " -#~ "files automatically adds .py to the name you enter (even if your system " -#~ "does not display it). Some systems automatically add .txt when type is " -#~ "Text files." - -#~ msgid "" -#~ "`bpo-21986 `__: Code objects are not " -#~ "normally pickled by the pickle module. To match this, they are no longer " -#~ "pickled when running under Idle." -#~ msgstr "" -#~ "`bpo-21986 `__: Code objects are not " -#~ "normally pickled by the pickle module. To match this, they are no longer " -#~ "pickled when running under Idle." - -#~ msgid "" -#~ "`bpo-17390 `__: Adjust Editor window " -#~ "title; remove 'Python', move version to end." -#~ msgstr "" -#~ "`bpo-17390 `__: Adjust Editor window " -#~ "title; remove 'Python', move version to end." - -#~ msgid "" -#~ "`bpo-14105 `__: Idle debugger " -#~ "breakpoints no longer disappear when inserting or deleting lines." -#~ msgstr "" -#~ "`bpo-14105 `__: Idle debugger " -#~ "breakpoints no longer disappear when inserting or deleting lines." - -#~ msgid "" -#~ "`bpo-17172 `__: Turtledemo can now be " -#~ "run from Idle. Currently, the entry is on the Help menu, but it may move " -#~ "to Run. Patch by Ramchandra Apt and Lita Cho." -#~ msgstr "" -#~ "`bpo-17172 `__: Turtledemo can now be " -#~ "run from Idle. Currently, the entry is on the Help menu, but it may move " -#~ "to Run. Patch by Ramchandra Apt and Lita Cho." - -#~ msgid "" -#~ "`bpo-21765 `__: Add support for non-" -#~ "ascii identifiers to HyperParser." -#~ msgstr "" -#~ "`bpo-21765 `__: Add support for non-" -#~ "ascii identifiers to HyperParser." - -#~ msgid "" -#~ "`bpo-21940 `__: Add unittest for " -#~ "WidgetRedirector. Initial patch by Saimadhav Heblikar." -#~ msgstr "" -#~ "`bpo-21940 `__: Add unittest for " -#~ "WidgetRedirector. Initial patch by Saimadhav Heblikar." - -#~ msgid "" -#~ "`bpo-18592 `__: Add unittest for " -#~ "SearchDialogBase. Patch by Phil Webster." -#~ msgstr "" -#~ "`bpo-18592 `__: Add unittest for " -#~ "SearchDialogBase. Patch by Phil Webster." - -#~ msgid "" -#~ "`bpo-21694 `__: Add unittest for " -#~ "ParenMatch. Patch by Saimadhav Heblikar." -#~ msgstr "" -#~ "`bpo-21694 `__: Add unittest for " -#~ "ParenMatch. Patch by Saimadhav Heblikar." - -#~ msgid "" -#~ "`bpo-21686 `__: add unittest for " -#~ "HyperParser. Original patch by Saimadhav Heblikar." -#~ msgstr "" -#~ "`bpo-21686 `__: add unittest for " -#~ "HyperParser. Original patch by Saimadhav Heblikar." - -#~ msgid "" -#~ "`bpo-12387 `__: Add missing " -#~ "upper(lower)case versions of default Windows key bindings for Idle so " -#~ "Caps Lock does not disable them. Patch by Roger Serwy." -#~ msgstr "" -#~ "`bpo-12387 `__: Add missing " -#~ "upper(lower)case versions of default Windows key bindings for Idle so " -#~ "Caps Lock does not disable them. Patch by Roger Serwy." - -#~ msgid "" -#~ "`bpo-21695 `__: Closing a Find-in-" -#~ "files output window while the search is still in progress no longer " -#~ "closes Idle." -#~ msgstr "" -#~ "`bpo-21695 `__: Closing a Find-in-" -#~ "files output window while the search is still in progress no longer " -#~ "closes Idle." - -#~ msgid "" -#~ "`bpo-18910 `__: Add unittest for " -#~ "textView. Patch by Phil Webster." -#~ msgstr "" -#~ "`bpo-18910 `__: Add unittest for " -#~ "textView. Patch by Phil Webster." - -#~ msgid "" -#~ "`bpo-18292 `__: Add unittest for " -#~ "AutoExpand. Patch by Saihadhav Heblikar." -#~ msgstr "" -#~ "`bpo-18292 `__: Add unittest for " -#~ "AutoExpand. Patch by Saihadhav Heblikar." - -#~ msgid "" -#~ "`bpo-18409 `__: Add unittest for " -#~ "AutoComplete. Patch by Phil Webster." -#~ msgstr "" -#~ "`bpo-18409 `__: Add unittest for " -#~ "AutoComplete. Patch by Phil Webster." - -#~ msgid "" -#~ "`bpo-21477 `__: htest.py - Improve " -#~ "framework, complete set of tests. Patches by Saimadhav Heblikar" -#~ msgstr "" -#~ "`bpo-21477 `__: htest.py - Improve " -#~ "framework, complete set of tests. Patches by Saimadhav Heblikar" - -#~ msgid "" -#~ "`bpo-18104 `__: Add idlelib/idle_test/" -#~ "htest.py with a few sample tests to begin consolidating and improving " -#~ "human-validated tests of Idle. Change other files as needed to work with " -#~ "htest. Running the module as __main__ runs all tests." -#~ msgstr "" -#~ "`bpo-18104 `__: Add idlelib/idle_test/" -#~ "htest.py with a few sample tests to begin consolidating and improving " -#~ "human-validated tests of Idle. Change other files as needed to work with " -#~ "htest. Running the module as __main__ runs all tests." - -#~ msgid "" -#~ "`bpo-21139 `__: Change default " -#~ "paragraph width to 72, the PEP 8 recommendation." -#~ msgstr "" -#~ "`bpo-21139 `__: Change default " -#~ "paragraph width to 72, the PEP 8 recommendation." - -#~ msgid "" -#~ "`bpo-21284 `__: Paragraph reformat " -#~ "test passes after user changes reformat width." -#~ msgstr "" -#~ "`bpo-21284 `__: Paragraph reformat " -#~ "test passes after user changes reformat width." - -#~ msgid "" -#~ "`bpo-17654 `__: Ensure IDLE menus are " -#~ "customized properly on OS X for non-framework builds and for all variants " -#~ "of Tk." -#~ msgstr "" -#~ "`bpo-17654 `__: Ensure IDLE menus are " -#~ "customized properly on OS X for non-framework builds and for all variants " -#~ "of Tk." - -#~ msgid "" -#~ "`bpo-23180 `__: Rename IDLE \"Windows" -#~ "\" menu item to \"Window\". Patch by Al Sweigart." -#~ msgstr "" -#~ "`bpo-23180 `__: Rename IDLE \"Windows" -#~ "\" menu item to \"Window\". Patch by Al Sweigart." - -#~ msgid "" -#~ "`bpo-15506 `__: Use standard " -#~ "PKG_PROG_PKG_CONFIG autoconf macro in the configure script." -#~ msgstr "" -#~ "`bpo-15506 `__: Use standard " -#~ "PKG_PROG_PKG_CONFIG autoconf macro in the configure script." - -#~ msgid "" -#~ "`bpo-22935 `__: Allow the ssl module " -#~ "to be compiled if openssl doesn't support SSL 3." -#~ msgstr "" -#~ "`bpo-22935 `__: Allow the ssl module " -#~ "to be compiled if openssl doesn't support SSL 3." - -#~ msgid "" -#~ "`bpo-22592 `__: Drop support of the " -#~ "Borland C compiler to build Python. The distutils module still supports " -#~ "it to build extensions." -#~ msgstr "" -#~ "`bpo-22592 `__: Drop support of the " -#~ "Borland C compiler to build Python. The distutils module still supports " -#~ "it to build extensions." - -#~ msgid "" -#~ "`bpo-22591 `__: Drop support of MS-" -#~ "DOS, especially of the DJGPP compiler (MS-DOS port of GCC)." -#~ msgstr "" -#~ "`bpo-22591 `__: Drop support of MS-" -#~ "DOS, especially of the DJGPP compiler (MS-DOS port of GCC)." - -#~ msgid "" -#~ "`bpo-16537 `__: Check whether self." -#~ "extensions is empty in setup.py. Patch by Jonathan Hosmer." -#~ msgstr "" -#~ "`bpo-16537 `__: Check whether self." -#~ "extensions is empty in setup.py. Patch by Jonathan Hosmer." - -#~ msgid "" -#~ "`bpo-22359 `__: Remove incorrect uses " -#~ "of recursive make. Patch by Jonas Wagner." -#~ msgstr "" -#~ "`bpo-22359 `__: Remove incorrect uses " -#~ "of recursive make. Patch by Jonas Wagner." - -#~ msgid "" -#~ "`bpo-21958 `__: Define HAVE_ROUND " -#~ "when building with Visual Studio 2013 and above. Patch by Zachary Turner." -#~ msgstr "" -#~ "`bpo-21958 `__: Define HAVE_ROUND " -#~ "when building with Visual Studio 2013 and above. Patch by Zachary Turner." - -#~ msgid "" -#~ "`bpo-18093 `__: the programs that " -#~ "embed the CPython runtime are now in a separate \"Programs\" directory, " -#~ "rather than being kept in the Modules directory." -#~ msgstr "" -#~ "`bpo-18093 `__: the programs that " -#~ "embed the CPython runtime are now in a separate \"Programs\" directory, " -#~ "rather than being kept in the Modules directory." - -#~ msgid "" -#~ "`bpo-15759 `__: \"make suspicious\", " -#~ "\"make linkcheck\" and \"make doctest\" in Doc/ now display special " -#~ "message when and only when there are failures." -#~ msgstr "" -#~ "`bpo-15759 `__: \"make suspicious\", " -#~ "\"make linkcheck\" and \"make doctest\" in Doc/ now display special " -#~ "message when and only when there are failures." - -#~ msgid "" -#~ "`bpo-21141 `__: The Windows build " -#~ "process no longer attempts to find Perl, instead relying on OpenSSL " -#~ "source being configured and ready to build. The ``PCbuild\\build_ssl." -#~ "py`` script has been re-written and re-named to ``PCbuild\\prepare_ssl." -#~ "py``, and takes care of configuring OpenSSL source for both 32 and 64 bit " -#~ "platforms. OpenSSL sources obtained from svn.python.org will always be " -#~ "pre-configured and ready to build." -#~ msgstr "" -#~ "`bpo-21141 `__: The Windows build " -#~ "process no longer attempts to find Perl, instead relying on OpenSSL " -#~ "source being configured and ready to build. The ``PCbuild\\build_ssl." -#~ "py`` script has been re-written and re-named to ``PCbuild\\prepare_ssl." -#~ "py``, and takes care of configuring OpenSSL source for both 32 and 64 bit " -#~ "platforms. OpenSSL sources obtained from svn.python.org will always be " -#~ "pre-configured and ready to build." - -#~ msgid "" -#~ "`bpo-21037 `__: Add a build option to " -#~ "enable AddressSanitizer support." -#~ msgstr "" -#~ "`bpo-21037 `__: Add a build option to " -#~ "enable AddressSanitizer support." - -#~ msgid "" -#~ "`bpo-19962 `__: The Windows build " -#~ "process now creates \"python.bat\" in the root of the source tree, which " -#~ "passes all arguments through to the most recently built interpreter." -#~ msgstr "" -#~ "`bpo-19962 `__: The Windows build " -#~ "process now creates \"python.bat\" in the root of the source tree, which " -#~ "passes all arguments through to the most recently built interpreter." - -#~ msgid "" -#~ "`bpo-21285 `__: Refactor and fix " -#~ "curses configure check to always search in a ncursesw directory." -#~ msgstr "" -#~ "`bpo-21285 `__: Refactor and fix " -#~ "curses configure check to always search in a ncursesw directory." - -#~ msgid "" -#~ "`bpo-15234 `__: For BerkelyDB and " -#~ "Sqlite, only add the found library and include directories if they aren't " -#~ "already being searched. This avoids an explicit runtime library " -#~ "dependency." -#~ msgstr "" -#~ "`bpo-15234 `__: For BerkelyDB and " -#~ "Sqlite, only add the found library and include directories if they aren't " -#~ "already being searched. This avoids an explicit runtime library " -#~ "dependency." - -#~ msgid "" -#~ "`bpo-17861 `__: Tools/scripts/" -#~ "generate_opcode_h.py automatically regenerates Include/opcode.h from Lib/" -#~ "opcode.py if the latter gets any change." -#~ msgstr "" -#~ "`bpo-17861 `__: Tools/scripts/" -#~ "generate_opcode_h.py automatically regenerates Include/opcode.h from Lib/" -#~ "opcode.py if the latter gets any change." - -#~ msgid "" -#~ "`bpo-20644 `__: OS X installer build " -#~ "support for documentation build changes in 3.4.1: assume externally " -#~ "supplied sphinx-build is available in /usr/bin." -#~ msgstr "" -#~ "`bpo-20644 `__: OS X installer build " -#~ "support for documentation build changes in 3.4.1: assume externally " -#~ "supplied sphinx-build is available in /usr/bin." - -#~ msgid "" -#~ "`bpo-20022 `__: Eliminate use of " -#~ "deprecated bundlebuilder in OS X builds." -#~ msgstr "" -#~ "`bpo-20022 `__: Eliminate use of " -#~ "deprecated bundlebuilder in OS X builds." - -#~ msgid "" -#~ "`bpo-15968 `__: Incorporated Tcl, Tk, " -#~ "and Tix builds into the Windows build solution." -#~ msgstr "" -#~ "`bpo-15968 `__: Incorporated Tcl, Tk, " -#~ "and Tix builds into the Windows build solution." - -#~ msgid "" -#~ "`bpo-17095 `__: Fix Modules/Setup " -#~ "*shared* support." -#~ msgstr "" -#~ "`bpo-17095 `__: Fix Modules/Setup " -#~ "*shared* support." - -#~ msgid "" -#~ "`bpo-21811 `__: Anticipated fixes to " -#~ "support OS X versions > 10.9." -#~ msgstr "" -#~ "`bpo-21811 `__: Anticipated fixes to " -#~ "support OS X versions > 10.9." - -#~ msgid "" -#~ "`bpo-21166 `__: Prevent possible " -#~ "segfaults and other random failures of python --generate-posix-vars in " -#~ "pybuilddir.txt build target." -#~ msgstr "" -#~ "`bpo-21166 `__: Prevent possible " -#~ "segfaults and other random failures of python --generate-posix-vars in " -#~ "pybuilddir.txt build target." - -#~ msgid "" -#~ "`bpo-18096 `__: Fix library order " -#~ "returned by python-config." -#~ msgstr "" -#~ "`bpo-18096 `__: Fix library order " -#~ "returned by python-config." - -#~ msgid "" -#~ "`bpo-17219 `__: Add library build dir " -#~ "for Python extension cross-builds." -#~ msgstr "" -#~ "`bpo-17219 `__: Add library build dir " -#~ "for Python extension cross-builds." - -#~ msgid "" -#~ "`bpo-22919 `__: Windows build updated " -#~ "to support VC 14.0 (Visual Studio 2015), which will be used for the " -#~ "official release." -#~ msgstr "" -#~ "`bpo-22919 `__: Windows build updated " -#~ "to support VC 14.0 (Visual Studio 2015), which will be used for the " -#~ "official release." - -#~ msgid "" -#~ "`bpo-21236 `__: Build _msi.pyd with " -#~ "cabinet.lib instead of fci.lib" -#~ msgstr "" -#~ "`bpo-21236 `__: Build _msi.pyd with " -#~ "cabinet.lib instead of fci.lib" - -#~ msgid "" -#~ "`bpo-17128 `__: Use private version " -#~ "of OpenSSL for OS X 10.5+ installer." -#~ msgstr "" -#~ "`bpo-17128 `__: Use private version " -#~ "of OpenSSL for OS X 10.5+ installer." - -#~ msgid "" -#~ "`bpo-14203 `__: Remove obsolete " -#~ "support for view==NULL in PyBuffer_FillInfo(), bytearray_getbuffer(), " -#~ "bytesiobuf_getbuffer() and array_buffer_getbuf(). All functions now raise " -#~ "BufferError in that case." -#~ msgstr "" -#~ "`bpo-14203 `__: Remove obsolete " -#~ "support for view==NULL in PyBuffer_FillInfo(), bytearray_getbuffer(), " -#~ "bytesiobuf_getbuffer() and array_buffer_getbuf(). All functions now raise " -#~ "BufferError in that case." - -#~ msgid "" -#~ "`bpo-22445 `__: " -#~ "PyBuffer_IsContiguous() now implements precise contiguity tests, " -#~ "compatible with NumPy's NPY_RELAXED_STRIDES_CHECKING compilation flag. " -#~ "Previously the function reported false negatives for corner cases." -#~ msgstr "" -#~ "`bpo-22445 `__: " -#~ "PyBuffer_IsContiguous() now implements precise contiguity tests, " -#~ "compatible with NumPy's NPY_RELAXED_STRIDES_CHECKING compilation flag. " -#~ "Previously the function reported false negatives for corner cases." - -#~ msgid "" -#~ "`bpo-22079 `__: PyType_Ready() now " -#~ "checks that statically allocated type has no dynamically allocated bases." -#~ msgstr "" -#~ "`bpo-22079 `__: PyType_Ready() now " -#~ "checks that statically allocated type has no dynamically allocated bases." - -#~ msgid "" -#~ "`bpo-22453 `__: Removed non-" -#~ "documented macro PyObject_REPR()." -#~ msgstr "" -#~ "`bpo-22453 `__: Removed non-" -#~ "documented macro PyObject_REPR()." - -#~ msgid "" -#~ "`bpo-18395 `__: Rename " -#~ "``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename " -#~ "``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document these " -#~ "functions." -#~ msgstr "" -#~ "`bpo-18395 `__: Rename " -#~ "``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename " -#~ "``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document these " -#~ "functions." - -#~ msgid "" -#~ "`bpo-21233 `__: Add new C functions: " -#~ "PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(), " -#~ "_PyObject_GC_Calloc(). bytes(int) is now using ``calloc()`` instead of " -#~ "``malloc()`` for large objects which is faster and use less memory." -#~ msgstr "" -#~ "`bpo-21233 `__: Add new C functions: " -#~ "PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(), " -#~ "_PyObject_GC_Calloc(). bytes(int) is now using ``calloc()`` instead of " -#~ "``malloc()`` for large objects which is faster and use less memory." - -#~ msgid "" -#~ "`bpo-20942 `__: " -#~ "PyImport_ImportFrozenModuleObject() no longer sets __file__ to match what " -#~ "importlib does; this affects _frozen_importlib as well as any module " -#~ "loaded using imp.init_frozen()." -#~ msgstr "" -#~ "`bpo-20942 `__: " -#~ "PyImport_ImportFrozenModuleObject() no longer sets __file__ to match what " -#~ "importlib does; this affects _frozen_importlib as well as any module " -#~ "loaded using imp.init_frozen()." - -#~ msgid "" -#~ "`bpo-19548 `__: Update the codecs " -#~ "module documentation to better cover the distinction between text " -#~ "encodings and other codecs, together with other clarifications. Patch by " -#~ "Martin Panter." -#~ msgstr "" -#~ "`bpo-19548 `__: Update the codecs " -#~ "module documentation to better cover the distinction between text " -#~ "encodings and other codecs, together with other clarifications. Patch by " -#~ "Martin Panter." - -#~ msgid "" -#~ "`bpo-22394 `__: Doc/Makefile now " -#~ "supports ``make venv PYTHON=../python`` to create a venv for generating " -#~ "the documentation, e.g., ``make html PYTHON=venv/bin/python3``." -#~ msgstr "" -#~ "`bpo-22394 `__: Doc/Makefile now " -#~ "supports ``make venv PYTHON=../python`` to create a venv for generating " -#~ "the documentation, e.g., ``make html PYTHON=venv/bin/python3``." - -#~ msgid "" -#~ "`bpo-21514 `__: The documentation of " -#~ "the json module now refers to new JSON RFC 7159 instead of obsoleted RFC " -#~ "4627." -#~ msgstr "" -#~ "`bpo-21514 `__: The documentation of " -#~ "the json module now refers to new JSON RFC 7159 instead of obsoleted RFC " -#~ "4627." - -#~ msgid "" -#~ "`bpo-21777 `__: The binary sequence " -#~ "methods on bytes and bytearray are now documented explicitly, rather than " -#~ "assuming users will be able to derive the expected behaviour from the " -#~ "behaviour of the corresponding str methods." -#~ msgstr "" -#~ "`bpo-21777 `__: The binary sequence " -#~ "methods on bytes and bytearray are now documented explicitly, rather than " -#~ "assuming users will be able to derive the expected behaviour from the " -#~ "behaviour of the corresponding str methods." - -#~ msgid "" -#~ "`bpo-6916 `__: undocument deprecated " -#~ "asynchat.fifo class." -#~ msgstr "" -#~ "`bpo-6916 `__: undocument deprecated " -#~ "asynchat.fifo class." - -#~ msgid "" -#~ "`bpo-17386 `__: Expanded " -#~ "functionality of the ``Doc/make.bat`` script to make it much more " -#~ "comparable to ``Doc/Makefile``." -#~ msgstr "" -#~ "`bpo-17386 `__: Expanded " -#~ "functionality of the ``Doc/make.bat`` script to make it much more " -#~ "comparable to ``Doc/Makefile``." - -#~ msgid "" -#~ "`bpo-21312 `__: Update the " -#~ "thread_foobar.h template file to include newer threading APIs. Patch by " -#~ "Jack McCracken." -#~ msgstr "" -#~ "`bpo-21312 `__: Update the " -#~ "thread_foobar.h template file to include newer threading APIs. Patch by " -#~ "Jack McCracken." - -#~ msgid "" -#~ "`bpo-21043 `__: Remove the " -#~ "recommendation for specific CA organizations and to mention the ability " -#~ "to load the OS certificates." -#~ msgstr "" -#~ "`bpo-21043 `__: Remove the " -#~ "recommendation for specific CA organizations and to mention the ability " -#~ "to load the OS certificates." - -#~ msgid "" -#~ "`bpo-20765 `__: Add missing " -#~ "documentation for PurePath.with_name() and PurePath.with_suffix()." -#~ msgstr "" -#~ "`bpo-20765 `__: Add missing " -#~ "documentation for PurePath.with_name() and PurePath.with_suffix()." - -#~ msgid "" -#~ "`bpo-19407 `__: New package " -#~ "installation and distribution guides based on the Python Packaging " -#~ "Authority tools. Existing guides have been retained as legacy links from " -#~ "the distutils docs, as they still contain some required reference " -#~ "material for tool developers that isn't recorded anywhere else." -#~ msgstr "" -#~ "`bpo-19407 `__: New package " -#~ "installation and distribution guides based on the Python Packaging " -#~ "Authority tools. Existing guides have been retained as legacy links from " -#~ "the distutils docs, as they still contain some required reference " -#~ "material for tool developers that isn't recorded anywhere else." - -#~ msgid "" -#~ "`bpo-19697 `__: Document cases where " -#~ "__main__.__spec__ is None." -#~ msgstr "" -#~ "`bpo-19697 `__: Document cases where " -#~ "__main__.__spec__ is None." - -#~ msgid "" -#~ "`bpo-18982 `__: Add tests for CLI of " -#~ "the calendar module." -#~ msgstr "" -#~ "`bpo-18982 `__: Add tests for CLI of " -#~ "the calendar module." - -#~ msgid "" -#~ "`bpo-19548 `__: Added some additional " -#~ "checks to test_codecs to ensure that statements in the updated " -#~ "documentation remain accurate. Patch by Martin Panter." -#~ msgstr "" -#~ "`bpo-19548 `__: Added some additional " -#~ "checks to test_codecs to ensure that statements in the updated " -#~ "documentation remain accurate. Patch by Martin Panter." - -#~ msgid "" -#~ "`bpo-22838 `__: All test_re tests now " -#~ "work with unittest test discovery." -#~ msgstr "" -#~ "`bpo-22838 `__: All test_re tests now " -#~ "work with unittest test discovery." - -#~ msgid "" -#~ "`bpo-22173 `__: Update lib2to3 tests " -#~ "to use unittest test discovery." -#~ msgstr "" -#~ "`bpo-22173 `__: Update lib2to3 tests " -#~ "to use unittest test discovery." - -#~ msgid "" -#~ "`bpo-16000 `__: Convert test_curses " -#~ "to use unittest." -#~ msgstr "" -#~ "`bpo-16000 `__: Convert test_curses " -#~ "to use unittest." - -#~ msgid "" -#~ "`bpo-21456 `__: Skip two tests in " -#~ "test_urllib2net.py if _ssl module not present. Patch by Remi Pointel." -#~ msgstr "" -#~ "`bpo-21456 `__: Skip two tests in " -#~ "test_urllib2net.py if _ssl module not present. Patch by Remi Pointel." - -#~ msgid "" -#~ "`bpo-20746 `__: Fix test_pdb to run " -#~ "in refleak mode (-R). Patch by Xavier de Gaye." -#~ msgstr "" -#~ "`bpo-20746 `__: Fix test_pdb to run " -#~ "in refleak mode (-R). Patch by Xavier de Gaye." - -#~ msgid "" -#~ "`bpo-22060 `__: test_ctypes has been " -#~ "somewhat cleaned up and simplified; it now uses unittest test discovery " -#~ "to find its tests." -#~ msgstr "" -#~ "`bpo-22060 `__: test_ctypes has been " -#~ "somewhat cleaned up and simplified; it now uses unittest test discovery " -#~ "to find its tests." - -#~ msgid "" -#~ "`bpo-22104 `__: regrtest.py no longer " -#~ "holds a reference to the suite of tests loaded from test modules that " -#~ "don't define test_main()." -#~ msgstr "" -#~ "`bpo-22104 `__: regrtest.py no longer " -#~ "holds a reference to the suite of tests loaded from test modules that " -#~ "don't define test_main()." - -#~ msgid "" -#~ "`bpo-22111 `__: Assorted cleanups in " -#~ "test_imaplib. Patch by Milan Oberkirch." -#~ msgstr "" -#~ "`bpo-22111 `__: Assorted cleanups in " -#~ "test_imaplib. Patch by Milan Oberkirch." - -#~ msgid "" -#~ "`bpo-22002 `__: Added " -#~ "``load_package_tests`` function to test.support and used it to implement/" -#~ "augment test discovery in test_asyncio, test_email, test_importlib, " -#~ "test_json, and test_tools." -#~ msgstr "" -#~ "`bpo-22002 `__: Added " -#~ "``load_package_tests`` function to test.support and used it to implement/" -#~ "augment test discovery in test_asyncio, test_email, test_importlib, " -#~ "test_json, and test_tools." - -#~ msgid "" -#~ "`bpo-21976 `__: Fix test_ssl to " -#~ "accept LibreSSL version strings. Thanks to William Orr." -#~ msgstr "" -#~ "`bpo-21976 `__: Fix test_ssl to " -#~ "accept LibreSSL version strings. Thanks to William Orr." - -#~ msgid "" -#~ "`bpo-21918 `__: Converted test_tools " -#~ "from a module to a package containing separate test files for each tested " -#~ "script." -#~ msgstr "" -#~ "`bpo-21918 `__: Converted test_tools " -#~ "from a module to a package containing separate test files for each tested " -#~ "script." - -#~ msgid "" -#~ "`bpo-9554 `__: Use modern unittest " -#~ "features in test_argparse. Initial patch by Denver Coneybeare and Radu " -#~ "Voicilas." -#~ msgstr "" -#~ "`bpo-9554 `__: Use modern unittest " -#~ "features in test_argparse. Initial patch by Denver Coneybeare and Radu " -#~ "Voicilas." - -#~ msgid "" -#~ "`bpo-20155 `__: Changed HTTP method " -#~ "names in failing tests in test_httpservers so that packet filtering " -#~ "software (specifically Windows Base Filtering Engine) does not interfere " -#~ "with the transaction semantics expected by the tests." -#~ msgstr "" -#~ "`bpo-20155 `__: Changed HTTP method " -#~ "names in failing tests in test_httpservers so that packet filtering " -#~ "software (specifically Windows Base Filtering Engine) does not interfere " -#~ "with the transaction semantics expected by the tests." - -#~ msgid "" -#~ "`bpo-19493 `__: Refactored the ctypes " -#~ "test package to skip tests explicitly rather than silently." -#~ msgstr "" -#~ "`bpo-19493 `__: Refactored the ctypes " -#~ "test package to skip tests explicitly rather than silently." - -#~ msgid "" -#~ "`bpo-18492 `__: All resources are now " -#~ "allowed when tests are not run by regrtest.py." -#~ msgstr "" -#~ "`bpo-18492 `__: All resources are now " -#~ "allowed when tests are not run by regrtest.py." - -#~ msgid "" -#~ "`bpo-21634 `__: Fix pystone micro-" -#~ "benchmark: use floor division instead of true division to benchmark " -#~ "integers instead of floating point numbers. Set pystone version to 1.2. " -#~ "Patch written by Lennart Regebro." -#~ msgstr "" -#~ "`bpo-21634 `__: Fix pystone micro-" -#~ "benchmark: use floor division instead of true division to benchmark " -#~ "integers instead of floating point numbers. Set pystone version to 1.2. " -#~ "Patch written by Lennart Regebro." - -#~ msgid "" -#~ "`bpo-21605 `__: Added tests for " -#~ "Tkinter images." -#~ msgstr "" -#~ "`bpo-21605 `__: Added tests for " -#~ "Tkinter images." - -#~ msgid "" -#~ "`bpo-21493 `__: Added test for ntpath." -#~ "expanduser(). Original patch by Claudiu Popa." -#~ msgstr "" -#~ "`bpo-21493 `__: Added test for ntpath." -#~ "expanduser(). Original patch by Claudiu Popa." - -#~ msgid "" -#~ "`bpo-19925 `__: Added tests for the " -#~ "spwd module. Original patch by Vajrasky Kok." -#~ msgstr "" -#~ "`bpo-19925 `__: Added tests for the " -#~ "spwd module. Original patch by Vajrasky Kok." - -#~ msgid "" -#~ "`bpo-21522 `__: Added Tkinter tests " -#~ "for Listbox.itemconfigure(), PanedWindow.paneconfigure(), and Menu." -#~ "entryconfigure()." -#~ msgstr "" -#~ "`bpo-21522 `__: Added Tkinter tests " -#~ "for Listbox.itemconfigure(), PanedWindow.paneconfigure(), and Menu." -#~ "entryconfigure()." - -#~ msgid "" -#~ "`bpo-17756 `__: Fix test_code test " -#~ "when run from the installed location." -#~ msgstr "" -#~ "`bpo-17756 `__: Fix test_code test " -#~ "when run from the installed location." - -#~ msgid "" -#~ "`bpo-17752 `__: Fix distutils tests " -#~ "when run from the installed location." -#~ msgstr "" -#~ "`bpo-17752 `__: Fix distutils tests " -#~ "when run from the installed location." - -#~ msgid "" -#~ "`bpo-18604 `__: Consolidated checks " -#~ "for GUI availability. All platforms now at least check whether Tk can be " -#~ "instantiated when the GUI resource is requested." -#~ msgstr "" -#~ "`bpo-18604 `__: Consolidated checks " -#~ "for GUI availability. All platforms now at least check whether Tk can be " -#~ "instantiated when the GUI resource is requested." - -#~ msgid "" -#~ "`bpo-21275 `__: Fix a socket test on " -#~ "KFreeBSD." -#~ msgstr "" -#~ "`bpo-21275 `__: Fix a socket test on " -#~ "KFreeBSD." - -#~ msgid "" -#~ "`bpo-21223 `__: Pass test_site/" -#~ "test_startup_imports when some of the extensions are built as builtins." -#~ msgstr "" -#~ "`bpo-21223 `__: Pass test_site/" -#~ "test_startup_imports when some of the extensions are built as builtins." - -#~ msgid "" -#~ "`bpo-20635 `__: Added tests for Tk " -#~ "geometry managers." -#~ msgstr "" -#~ "`bpo-20635 `__: Added tests for Tk " -#~ "geometry managers." - -#~ msgid "Add test case for freeze." -#~ msgstr "Ajoute un test pour *freeze*." - -#~ msgid "" -#~ "`bpo-20743 `__: Fix a reference leak " -#~ "in test_tcl." -#~ msgstr "" -#~ "`bpo-20743 `__: Fix a reference leak " -#~ "in test_tcl." - -#~ msgid "" -#~ "`bpo-21097 `__: Move " -#~ "test_namespace_pkgs into test_importlib." -#~ msgstr "" -#~ "`bpo-21097 `__: Move " -#~ "test_namespace_pkgs into test_importlib." - -#~ msgid "" -#~ "`bpo-21503 `__: Use test_both() " -#~ "consistently in test_importlib." -#~ msgstr "" -#~ "`bpo-21503 `__: Use test_both() " -#~ "consistently in test_importlib." - -#~ msgid "" -#~ "`bpo-20939 `__: Avoid various network " -#~ "test failures due to new redirect of http://www.python.org/ to https://" -#~ "www.python.org: use http://www.example.com instead." -#~ msgstr "" -#~ "`bpo-20939 `__: Avoid various network " -#~ "test failures due to new redirect of http://www.python.org/ to https://" -#~ "www.python.org: use http://www.example.com instead." - -#~ msgid "" -#~ "`bpo-20668 `__: asyncio tests no " -#~ "longer rely on tests.txt file. (Patch by Vajrasky Kok)" -#~ msgstr "" -#~ "`bpo-20668 `__: asyncio tests no " -#~ "longer rely on tests.txt file. (Patch by Vajrasky Kok)" - -#~ msgid "" -#~ "`bpo-21093 `__: Prevent failures of " -#~ "ctypes test_macholib on OS X if a copy of libz exists in $HOME/lib or /" -#~ "usr/local/lib." -#~ msgstr "" -#~ "`bpo-21093 `__: Prevent failures of " -#~ "ctypes test_macholib on OS X if a copy of libz exists in $HOME/lib or /" -#~ "usr/local/lib." - -#~ msgid "" -#~ "`bpo-22770 `__: Prevent some Tk " -#~ "segfaults on OS X when running gui tests." -#~ msgstr "" -#~ "`bpo-22770 `__: Prevent some Tk " -#~ "segfaults on OS X when running gui tests." - -#~ msgid "" -#~ "`bpo-23211 `__: Workaround " -#~ "test_logging failure on some OS X 10.6 systems." -#~ msgstr "" -#~ "`bpo-23211 `__: Workaround " -#~ "test_logging failure on some OS X 10.6 systems." - -#~ msgid "" -#~ "`bpo-23345 `__: Prevent test_ssl " -#~ "failures with large OpenSSL patch level values (like 0.9.8zc)." -#~ msgstr "" -#~ "`bpo-23345 `__: Prevent test_ssl " -#~ "failures with large OpenSSL patch level values (like 0.9.8zc)." - -#~ msgid "" -#~ "`bpo-22314 `__: pydoc now works when " -#~ "the LINES environment variable is set." -#~ msgstr "" -#~ "`bpo-22314 `__: pydoc now works when " -#~ "the LINES environment variable is set." - -#~ msgid "" -#~ "`bpo-22615 `__: Argument Clinic now " -#~ "supports the \"type\" argument for the int converter. This permits using " -#~ "the int converter with enums and typedefs." -#~ msgstr "" -#~ "`bpo-22615 `__: Argument Clinic now " -#~ "supports the \"type\" argument for the int converter. This permits using " -#~ "the int converter with enums and typedefs." - -#~ msgid "" -#~ "`bpo-20076 `__: The makelocalealias." -#~ "py script no longer ignores UTF-8 mapping." -#~ msgstr "" -#~ "`bpo-20076 `__: The makelocalealias." -#~ "py script no longer ignores UTF-8 mapping." - -#~ msgid "" -#~ "`bpo-20079 `__: The makelocalealias." -#~ "py script now can parse the SUPPORTED file from glibc sources and " -#~ "supports command line options for source paths." -#~ msgstr "" -#~ "`bpo-20079 `__: The makelocalealias." -#~ "py script now can parse the SUPPORTED file from glibc sources and " -#~ "supports command line options for source paths." - -#~ msgid "" -#~ "`bpo-22201 `__: Command-line " -#~ "interface of the zipfile module now correctly extracts ZIP files with " -#~ "directory entries. Patch by Ryan Wilson." -#~ msgstr "" -#~ "`bpo-22201 `__: Command-line " -#~ "interface of the zipfile module now correctly extracts ZIP files with " -#~ "directory entries. Patch by Ryan Wilson." - -#~ msgid "" -#~ "`bpo-22120 `__: For functions using " -#~ "an unsigned integer return converter, Argument Clinic now generates a " -#~ "cast to that type for the comparison to -1 in the generated code. (This " -#~ "suppresses a compilation warning.)" -#~ msgstr "" -#~ "`bpo-22120 `__: For functions using " -#~ "an unsigned integer return converter, Argument Clinic now generates a " -#~ "cast to that type for the comparison to -1 in the generated code. (This " -#~ "suppresses a compilation warning.)" - -#~ msgid "" -#~ "`bpo-18974 `__: Tools/scripts/diff.py " -#~ "now uses argparse instead of optparse." -#~ msgstr "" -#~ "`bpo-18974 `__: Tools/scripts/diff.py " -#~ "now uses argparse instead of optparse." - -#~ msgid "" -#~ "`bpo-21906 `__: Make Tools/scripts/" -#~ "md5sum.py work in Python 3. Patch by Zachary Ware." -#~ msgstr "" -#~ "`bpo-21906 `__: Make Tools/scripts/" -#~ "md5sum.py work in Python 3. Patch by Zachary Ware." - -#~ msgid "" -#~ "`bpo-21629 `__: Fix Argument Clinic's " -#~ "\"--converters\" feature." -#~ msgstr "" -#~ "`bpo-21629 `__: Fix Argument Clinic's " -#~ "\"--converters\" feature." - -#~ msgid "Add support for ``yield from`` to 2to3." -#~ msgstr "Ajoute le support de ``yield from`` à *2to3*." - -#~ msgid "" -#~ "`bpo-16047 `__: Fix module exception " -#~ "list and __file__ handling in freeze. Patch by Meador Inge." -#~ msgstr "" -#~ "`bpo-16047 `__: Fix module exception " -#~ "list and __file__ handling in freeze. Patch by Meador Inge." - -#~ msgid "" -#~ "`bpo-11824 `__: Consider ABI tags in " -#~ "freeze. Patch by Meador Inge." -#~ msgstr "" -#~ "`bpo-11824 `__: Consider ABI tags in " -#~ "freeze. Patch by Meador Inge." - -#~ msgid "" -#~ "`bpo-20535 `__: PYTHONWARNING no " -#~ "longer affects the run_tests.py script. Patch by Arfrever Frehtes " -#~ "Taifersar Arahesis." -#~ msgstr "" -#~ "`bpo-20535 `__: PYTHONWARNING no " -#~ "longer affects the run_tests.py script. Patch by Arfrever Frehtes " -#~ "Taifersar Arahesis." - -#~ msgid "" -#~ "`bpo-23260 `__: Update Windows " -#~ "installer" -#~ msgstr "" -#~ "`bpo-23260 `__: Update Windows " -#~ "installer" - -#~ msgid "" -#~ "`bpo-17896 `__: The Windows build " -#~ "scripts now expect external library sources to be in ``PCbuild\\.." -#~ "\\externals`` rather than ``PCbuild\\..\\..``." -#~ msgstr "" -#~ "`bpo-17896 `__: The Windows build " -#~ "scripts now expect external library sources to be in ``PCbuild\\.." -#~ "\\externals`` rather than ``PCbuild\\..\\..``." - -#~ msgid "" -#~ "`bpo-17717 `__: The Windows build " -#~ "scripts now use a copy of NASM pulled from svn.python.org to build " -#~ "OpenSSL." -#~ msgstr "" -#~ "`bpo-17717 `__: The Windows build " -#~ "scripts now use a copy of NASM pulled from svn.python.org to build " -#~ "OpenSSL." - -#~ msgid "" -#~ "`bpo-21907 `__: Improved the batch " -#~ "scripts provided for building Python." -#~ msgstr "" -#~ "`bpo-21907 `__: Improved the batch " -#~ "scripts provided for building Python." - -#~ msgid "" -#~ "`bpo-22644 `__: The bundled version " -#~ "of OpenSSL has been updated to 1.0.1j." -#~ msgstr "" -#~ "`bpo-22644 `__: The bundled version " -#~ "of OpenSSL has been updated to 1.0.1j." - -#~ msgid "" -#~ "`bpo-10747 `__: Use versioned labels " -#~ "in the Windows start menu. Patch by Olive Kilburn." -#~ msgstr "" -#~ "`bpo-10747 `__: Use versioned labels " -#~ "in the Windows start menu. Patch by Olive Kilburn." - -#~ msgid "" -#~ "`bpo-22980 `__: .pyd files with a " -#~ "version and platform tag (for example, \".cp35-win32.pyd\") will now be " -#~ "loaded in preference to those without tags." -#~ msgstr "" -#~ "`bpo-22980 `__: .pyd files with a " -#~ "version and platform tag (for example, \".cp35-win32.pyd\") will now be " -#~ "loaded in preference to those without tags." - -#~ msgid "" -#~ "**(For information about older versions, consult the HISTORY file.)**" -#~ msgstr "" -#~ "**(Pour des informations sur les versions précédentes, consultez le " -#~ "fichier HISTORY.)**" - -#~ msgid "" -#~ "`Issue #28248 `__: Update Windows build to " -#~ "use OpenSSL 1.0.2j." -#~ msgstr "" -#~ "`Issue #28248 `__: Update Windows build to " -#~ "use OpenSSL 1.0.2j." - -#~ msgid "" -#~ "`Issue #6549 `__: Remove hyphen from ttk." -#~ "Style().element options. Only return result from ttk.Style().configure " -#~ "if a result was generated or a query submitted." -#~ msgstr "" -#~ "`Issue #6549 `__: Remove hyphen from ttk." -#~ "Style().element options. Only return result from ttk.Style().configure " -#~ "if a result was generated or a query submitted." - -#~ msgid "" -#~ "`Issue #23359 `__: Optimize set object " -#~ "internals by specializing the hash table search into a lookup function " -#~ "and an insert function." -#~ msgstr "" -#~ "`Issue #23359 `__: Optimize set object " -#~ "internals by specializing the hash table search into a lookup function " -#~ "and an insert function." - -#~ msgid "" -#~ "`Issue #20939 `__: Fix test_geturl failure " -#~ "in test_urllibnet due to new redirect of http://www.python.org/ to " -#~ "https://www.python.org." -#~ msgstr "" -#~ "`Issue #20939 `__: Fix test_geturl failure " -#~ "in test_urllibnet due to new redirect of http://www.python.org/ to " -#~ "https://www.python.org." - -#~ msgid "" -#~ "`Issue #20786 `__: Fix signatures for dict." -#~ "__delitem__ and property.__delete__ builtins." -#~ msgstr "" -#~ "`Issue #20786 `__: Fix signatures for dict." -#~ "__delitem__ and property.__delete__ builtins." - -#~ msgid "" -#~ "`Issue #20839 `__: Don't trigger a " -#~ "DeprecationWarning in the still supported pkgutil.get_loader() API when " -#~ "__loader__ isn't set on a module (nor when pkgutil.find_loader() is " -#~ "called directly)." -#~ msgstr "" -#~ "`Issue #20839 `__: Don't trigger a " -#~ "DeprecationWarning in the still supported pkgutil.get_loader() API when " -#~ "__loader__ isn't set on a module (nor when pkgutil.find_loader() is " -#~ "called directly)." - -#~ msgid "" -#~ "`Issue #14512 `__: Launch pydoc -b instead " -#~ "of pydocgui.pyw on Windows." -#~ msgstr "" -#~ "`Issue #14512 `__: Launch pydoc -b instead " -#~ "of pydocgui.pyw on Windows." - -#~ msgid "" -#~ "`Issue #20748 `__: Uninstalling pip does " -#~ "not leave behind the pyc of the uninstaller anymore." -#~ msgstr "" -#~ "`Issue #20748 `__: Uninstalling pip does " -#~ "not leave behind the pyc of the uninstaller anymore." - -#~ msgid "" -#~ "`Issue #20568 `__: The Windows installer " -#~ "now installs the unversioned ``pip`` command in addition to the versioned " -#~ "``pip3`` and ``pip3.4`` commands." -#~ msgstr "" -#~ "`Issue #20568 `__: The Windows installer " -#~ "now installs the unversioned ``pip`` command in addition to the versioned " -#~ "``pip3`` and ``pip3.4`` commands." - -#~ msgid "" -#~ "`Issue #20757 `__: The ensurepip helper " -#~ "for the Windows uninstaller now skips uninstalling pip (rather than " -#~ "failing) if the user has updated pip to a different version from the one " -#~ "bundled with ensurepip." -#~ msgstr "" -#~ "`Issue #20757 `__: The ensurepip helper " -#~ "for the Windows uninstaller now skips uninstalling pip (rather than " -#~ "failing) if the user has updated pip to a different version from the one " -#~ "bundled with ensurepip." - -#~ msgid "" -#~ "`Issue #20465 `__: Update OS X and Windows " -#~ "installer builds to use SQLite 3.8.3.1." -#~ msgstr "" -#~ "`Issue #20465 `__: Update OS X and Windows " -#~ "installer builds to use SQLite 3.8.3.1." - -#~ msgid "" -#~ "`Issue #20625 `__: Parameter names in " -#~ "__annotations__ were not mangled properly. Discovered by Jonas Wielicki, " -#~ "patch by Yury Selivanov." -#~ msgstr "" -#~ "`Issue #20625 `__: Parameter names in " -#~ "__annotations__ were not mangled properly. Discovered by Jonas Wielicki, " -#~ "patch by Yury Selivanov." - -#~ msgid "" -#~ "`Issue #20261 `__: In pickle, lookup " -#~ "__getnewargs__ and __getnewargs_ex__ on the type of the object." -#~ msgstr "" -#~ "`Issue #20261 `__: In pickle, lookup " -#~ "__getnewargs__ and __getnewargs_ex__ on the type of the object." - -#~ msgid "" -#~ "`Issue #20619 `__: Give the AST nodes of " -#~ "keyword-only arguments a column and line number." -#~ msgstr "" -#~ "`Issue #20619 `__: Give the AST nodes of " -#~ "keyword-only arguments a column and line number." - -#~ msgid "" -#~ "`Issue #20526 `__: Revert changes of " -#~ "`issue #19466 `__ which introduces a " -#~ "regression: don't clear anymore the state of Python threads early during " -#~ "the Python shutdown." -#~ msgstr "" -#~ "`Issue #20526 `__: Revert changes of " -#~ "`issue #19466 `__ which introduces a " -#~ "regression: don't clear anymore the state of Python threads early during " -#~ "the Python shutdown." - -#~ msgid "" -#~ "`Issue #20710 `__: The pydoc summary line " -#~ "no longer displays the \"self\" parameter for bound methods." -#~ msgstr "" -#~ "`Issue #20710 `__: The pydoc summary line " -#~ "no longer displays the \"self\" parameter for bound methods." - -#~ msgid "" -#~ "`Issue #20566 `__: Change asyncio." -#~ "as_completed() to use a Queue, to avoid O(N**2) behavior." -#~ msgstr "" -#~ "`Issue #20566 `__: Change asyncio." -#~ "as_completed() to use a Queue, to avoid O(N**2) behavior." - -#~ msgid "" -#~ "`Issue #20704 `__: Implement new debug API " -#~ "in asyncio. Add new methods BaseEventLoop.set_debug() and BaseEventLoop." -#~ "get_debug(). Add support for setting 'asyncio.tasks._DEBUG' variable with " -#~ "'PYTHONASYNCIODEBUG' environment variable." -#~ msgstr "" -#~ "`Issue #20704 `__: Implement new debug API " -#~ "in asyncio. Add new methods BaseEventLoop.set_debug() and BaseEventLoop." -#~ "get_debug(). Add support for setting 'asyncio.tasks._DEBUG' variable with " -#~ "'PYTHONASYNCIODEBUG' environment variable." - -#~ msgid "" -#~ "`Issue #20684 `__: Fix inspect." -#~ "getfullargspec() to not to follow __wrapped__ chains. Make its behaviour " -#~ "consistent with bound methods first argument. Patch by Nick Coghlan and " -#~ "Yury Selivanov." -#~ msgstr "" -#~ "`Issue #20684 `__: Fix inspect." -#~ "getfullargspec() to not to follow __wrapped__ chains. Make its behaviour " -#~ "consistent with bound methods first argument. Patch by Nick Coghlan and " -#~ "Yury Selivanov." - -#~ msgid "" -#~ "`Issue #20681 `__: Add new error handling " -#~ "API in asyncio. New APIs: loop.set_exception_handler(), loop." -#~ "default_exception_handler(), and loop.call_exception_handler()." -#~ msgstr "" -#~ "`Issue #20681 `__: Add new error handling " -#~ "API in asyncio. New APIs: loop.set_exception_handler(), loop." -#~ "default_exception_handler(), and loop.call_exception_handler()." - -#~ msgid "" -#~ "`Issue #20673 `__: Implement support for " -#~ "UNIX Domain Sockets in asyncio. New APIs: loop.create_unix_connection(), " -#~ "loop.create_unix_server(), streams.open_unix_connection(), and streams." -#~ "start_unix_server()." -#~ msgstr "" -#~ "`Issue #20673 `__: Implement support for " -#~ "UNIX Domain Sockets in asyncio. New APIs: loop.create_unix_connection(), " -#~ "loop.create_unix_server(), streams.open_unix_connection(), and streams." -#~ "start_unix_server()." - -#~ msgid "" -#~ "`Issue #20616 `__: Add a format() method " -#~ "to tracemalloc.Traceback." -#~ msgstr "" -#~ "`Issue #20616 `__: Add a format() method " -#~ "to tracemalloc.Traceback." - -#~ msgid "" -#~ "`Issue #19744 `__: the ensurepip " -#~ "installation step now just prints a warning to stderr rather than failing " -#~ "outright if SSL/TLS is unavailable. This allows local installation of " -#~ "POSIX builds without SSL/TLS support." -#~ msgstr "" -#~ "`Issue #19744 `__: the ensurepip " -#~ "installation step now just prints a warning to stderr rather than failing " -#~ "outright if SSL/TLS is unavailable. This allows local installation of " -#~ "POSIX builds without SSL/TLS support." - -#~ msgid "" -#~ "`Issue #20594 `__: Avoid name clash with " -#~ "the libc function posix_close." -#~ msgstr "" -#~ "`Issue #20594 `__: Avoid name clash with " -#~ "the libc function posix_close." - -#~ msgid "" -#~ "`Issue #20641 `__: Run MSI custom actions " -#~ "(pip installation, pyc compilation) with the NoImpersonate flag, to " -#~ "support elevated execution (UAC)." -#~ msgstr "" -#~ "`Issue #20641 `__: Run MSI custom actions " -#~ "(pip installation, pyc compilation) with the NoImpersonate flag, to " -#~ "support elevated execution (UAC)." - -#~ msgid "" -#~ "`Issue #20221 `__: Removed conflicting (or " -#~ "circular) hypot definition when compiled with VS 2010 or above. Initial " -#~ "patch by Tabrez Mohammed." -#~ msgstr "" -#~ "`Issue #20221 `__: Removed conflicting (or " -#~ "circular) hypot definition when compiled with VS 2010 or above. Initial " -#~ "patch by Tabrez Mohammed." - -#~ msgid "" -#~ "`Issue #20609 `__: Restored the ability to " -#~ "build 64-bit Windows binaries on 32-bit Windows, which was broken by the " -#~ "change in `issue #19788 `__." -#~ msgstr "" -#~ "`Issue #20609 `__: Restored the ability to " -#~ "build 64-bit Windows binaries on 32-bit Windows, which was broken by the " -#~ "change in `issue #19788 `__." - -#~ msgid "" -#~ "`Issue #19255 `__: The builtins module is " -#~ "restored to initial value before cleaning other modules. The sys and " -#~ "builtins modules are cleaned last." -#~ msgstr "" -#~ "`Issue #19255 `__: The builtins module is " -#~ "restored to initial value before cleaning other modules. The sys and " -#~ "builtins modules are cleaned last." - -#~ msgid "" -#~ "`Issue #20588 `__: Make Python-ast.c C89 " -#~ "compliant." -#~ msgstr "" -#~ "`Issue #20588 `__: Make Python-ast.c C89 " -#~ "compliant." - -#~ msgid "" -#~ "`Issue #20500 `__: Displaying an exception " -#~ "at interpreter shutdown no longer risks triggering an assertion failure " -#~ "in PyObject_Str." -#~ msgstr "" -#~ "`Issue #20500 `__: Displaying an exception " -#~ "at interpreter shutdown no longer risks triggering an assertion failure " -#~ "in PyObject_Str." - -#~ msgid "" -#~ "`Issue #20538 `__: UTF-7 incremental " -#~ "decoder produced inconsistent string when input was truncated in BASE64 " -#~ "section." -#~ msgstr "" -#~ "`Issue #20538 `__: UTF-7 incremental " -#~ "decoder produced inconsistent string when input was truncated in BASE64 " -#~ "section." - -#~ msgid "" -#~ "`Issue #20404 `__: io.TextIOWrapper (and " -#~ "hence the open() builtin) now uses the internal codec marking system " -#~ "added for `issue #19619 `__ to throw " -#~ "LookupError for known non-text encodings at stream construction time. The " -#~ "existing output type checks remain in place to deal with unmarked third " -#~ "party codecs." -#~ msgstr "" -#~ "`Issue #20404 `__: io.TextIOWrapper (and " -#~ "hence the open() builtin) now uses the internal codec marking system " -#~ "added for `issue #19619 `__ to throw " -#~ "LookupError for known non-text encodings at stream construction time. The " -#~ "existing output type checks remain in place to deal with unmarked third " -#~ "party codecs." - -#~ msgid "" -#~ "`Issue #17162 `__: Add PyType_GetSlot." -#~ msgstr "" -#~ "`Issue #17162 `__: Add PyType_GetSlot." - -#~ msgid "" -#~ "`Issue #20162 `__: Fix an alignment issue " -#~ "in the siphash24() hash function which caused a crash on PowerPC 64-bit " -#~ "(ppc64)." -#~ msgstr "" -#~ "`Issue #20162 `__: Fix an alignment issue " -#~ "in the siphash24() hash function which caused a crash on PowerPC 64-bit " -#~ "(ppc64)." - -#~ msgid "" -#~ "`Issue #20530 `__: The signatures for slot " -#~ "builtins have been updated to reflect the fact that they only accept " -#~ "positional-only arguments." -#~ msgstr "" -#~ "`Issue #20530 `__: The signatures for slot " -#~ "builtins have been updated to reflect the fact that they only accept " -#~ "positional-only arguments." - -#~ msgid "" -#~ "`Issue #20517 `__: Functions in the os " -#~ "module that accept two filenames now register both filenames in the " -#~ "exception on failure." -#~ msgstr "" -#~ "`Issue #20517 `__: Functions in the os " -#~ "module that accept two filenames now register both filenames in the " -#~ "exception on failure." - -#~ msgid "" -#~ "`Issue #20563 `__: The ipaddress module " -#~ "API is now considered stable." -#~ msgstr "" -#~ "`Issue #20563 `__: The ipaddress module " -#~ "API is now considered stable." - -#~ msgid "" -#~ "`Issue #14983 `__: email.generator now " -#~ "always adds a line end after each MIME boundary marker, instead of doing " -#~ "so only when there is an epilogue. This fixes an RFC compliance bug and " -#~ "solves an issue with signed MIME parts." -#~ msgstr "" -#~ "`Issue #14983 `__: email.generator now " -#~ "always adds a line end after each MIME boundary marker, instead of doing " -#~ "so only when there is an epilogue. This fixes an RFC compliance bug and " -#~ "solves an issue with signed MIME parts." - -#~ msgid "" -#~ "`Issue #20540 `__: Fix a performance " -#~ "regression (vs. Python 3.2) when layering a multiprocessing Connection " -#~ "over a TCP socket. For small payloads, Nagle's algorithm would introduce " -#~ "idle delays before the entire transmission of a message." -#~ msgstr "" -#~ "`Issue #20540 `__: Fix a performance " -#~ "regression (vs. Python 3.2) when layering a multiprocessing Connection " -#~ "over a TCP socket. For small payloads, Nagle's algorithm would introduce " -#~ "idle delays before the entire transmission of a message." - -#~ msgid "" -#~ "`Issue #16983 `__: the new email header " -#~ "parsing code will now decode encoded words that are (incorrectly) " -#~ "surrounded by quotes, and register a defect." -#~ msgstr "" -#~ "`Issue #16983 `__: the new email header " -#~ "parsing code will now decode encoded words that are (incorrectly) " -#~ "surrounded by quotes, and register a defect." - -#~ msgid "" -#~ "`Issue #19772 `__: email.generator no " -#~ "longer mutates the message object when doing a down-transform from 8bit " -#~ "to 7bit CTEs." -#~ msgstr "" -#~ "`Issue #19772 `__: email.generator no " -#~ "longer mutates the message object when doing a down-transform from 8bit " -#~ "to 7bit CTEs." - -#~ msgid "" -#~ "`Issue #20536 `__: the statistics module " -#~ "now correctly handle Decimal instances with positive exponents" -#~ msgstr "" -#~ "`Issue #20536 `__: the statistics module " -#~ "now correctly handle Decimal instances with positive exponents" - -#~ msgid "" -#~ "`Issue #18805 `__: the netmask/hostmask " -#~ "parsing in ipaddress now more reliably filters out illegal values and " -#~ "correctly allows any valid prefix length." -#~ msgstr "" -#~ "`Issue #18805 `__: the netmask/hostmask " -#~ "parsing in ipaddress now more reliably filters out illegal values and " -#~ "correctly allows any valid prefix length." - -#~ msgid "" -#~ "`Issue #20481 `__: For at least Python " -#~ "3.4, the statistics module will require that all inputs for a single " -#~ "operation be of a single consistent type, or else a mixed of ints and a " -#~ "single other consistent type. This avoids some interoperability issues " -#~ "that arose with the previous approach of coercing to a suitable common " -#~ "type." -#~ msgstr "" -#~ "`Issue #20481 `__: For at least Python " -#~ "3.4, the statistics module will require that all inputs for a single " -#~ "operation be of a single consistent type, or else a mixed of ints and a " -#~ "single other consistent type. This avoids some interoperability issues " -#~ "that arose with the previous approach of coercing to a suitable common " -#~ "type." - -#~ msgid "" -#~ "`Issue #20478 `__: the statistics module " -#~ "now treats collections.Counter inputs like any other iterable." -#~ msgstr "" -#~ "`Issue #20478 `__: the statistics module " -#~ "now treats collections.Counter inputs like any other iterable." - -#~ msgid "" -#~ "`Issue #17369 `__: get_filename was " -#~ "raising an exception if the filename parameter's RFC2231 encoding was " -#~ "broken in certain ways. This was a regression relative to python2." -#~ msgstr "" -#~ "`Issue #17369 `__: get_filename was " -#~ "raising an exception if the filename parameter's RFC2231 encoding was " -#~ "broken in certain ways. This was a regression relative to python2." - -#~ msgid "" -#~ "`Issue #20013 `__: Some imap servers " -#~ "disconnect if the current mailbox is deleted, and imaplib did not handle " -#~ "that case gracefully. Now it handles the 'bye' correctly." -#~ msgstr "" -#~ "`Issue #20013 `__: Some imap servers " -#~ "disconnect if the current mailbox is deleted, and imaplib did not handle " -#~ "that case gracefully. Now it handles the 'bye' correctly." - -#~ msgid "" -#~ "`Issue #20531 `__: Revert 3.4 version of " -#~ "fix for #19063, and apply the 3.3 version. That is, do *not* raise an " -#~ "error if unicode is passed to email.message.Message.set_payload." -#~ msgstr "" -#~ "`Issue #20531 `__: Revert 3.4 version of " -#~ "fix for #19063, and apply the 3.3 version. That is, do *not* raise an " -#~ "error if unicode is passed to email.message.Message.set_payload." - -#~ msgid "" -#~ "`Issue #20476 `__: If a non-compat32 " -#~ "policy is used with any of the email parsers, EmailMessage is now used as " -#~ "the factory class. The factory class should really come from the policy; " -#~ "that will get fixed in 3.5." -#~ msgstr "" -#~ "`Issue #20476 `__: If a non-compat32 " -#~ "policy is used with any of the email parsers, EmailMessage is now used as " -#~ "the factory class. The factory class should really come from the policy; " -#~ "that will get fixed in 3.5." - -#~ msgid "" -#~ "`Issue #19920 `__: TarFile.list() no " -#~ "longer fails when outputs a listing containing non-encodable characters. " -#~ "Based on patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #19920 `__: TarFile.list() no " -#~ "longer fails when outputs a listing containing non-encodable characters. " -#~ "Based on patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #20515 `__: Fix NULL pointer " -#~ "dereference introduced by `issue #20368 `__." -#~ msgstr "" -#~ "`Issue #20515 `__: Fix NULL pointer " -#~ "dereference introduced by `issue #20368 `__." - -#~ msgid "" -#~ "`Issue #19186 `__: Restore namespacing of " -#~ "expat symbols inside the pyexpat module." -#~ msgstr "" -#~ "`Issue #19186 `__: Restore namespacing of " -#~ "expat symbols inside the pyexpat module." - -#~ msgid "" -#~ "`Issue #20053 `__: ensurepip (and hence " -#~ "venv) are no longer affected by the settings in the default pip " -#~ "configuration file." -#~ msgstr "" -#~ "`Issue #20053 `__: ensurepip (and hence " -#~ "venv) are no longer affected by the settings in the default pip " -#~ "configuration file." - -#~ msgid "" -#~ "`Issue #20426 `__: When passing the re." -#~ "DEBUG flag, re.compile() displays the debug output every time it is " -#~ "called, regardless of the compilation cache." -#~ msgstr "" -#~ "`Issue #20426 `__: When passing the re." -#~ "DEBUG flag, re.compile() displays the debug output every time it is " -#~ "called, regardless of the compilation cache." - -#~ msgid "" -#~ "`Issue #20368 `__: The null character now " -#~ "correctly passed from Tcl to Python. Improved error handling in variables-" -#~ "related commands." -#~ msgstr "" -#~ "`Issue #20368 `__: The null character now " -#~ "correctly passed from Tcl to Python. Improved error handling in variables-" -#~ "related commands." - -#~ msgid "" -#~ "`Issue #20435 `__: Fix _pyio.StringIO." -#~ "getvalue() to take into account newline translation settings." -#~ msgstr "" -#~ "`Issue #20435 `__: Fix _pyio.StringIO." -#~ "getvalue() to take into account newline translation settings." - -#~ msgid "" -#~ "`Issue #20354 `__: Fix an alignment issue " -#~ "in the tracemalloc module on 64-bit platforms. Bug seen on 64-bit Linux " -#~ "when using \"make profile-opt\"." -#~ msgstr "" -#~ "`Issue #20354 `__: Fix an alignment issue " -#~ "in the tracemalloc module on 64-bit platforms. Bug seen on 64-bit Linux " -#~ "when using \"make profile-opt\"." - -#~ msgid "" -#~ "`Issue #17159 `__: inspect.signature now " -#~ "accepts duck types of functions, which adds support for Cython functions. " -#~ "Initial patch by Stefan Behnel." -#~ msgstr "" -#~ "`Issue #17159 `__: inspect.signature now " -#~ "accepts duck types of functions, which adds support for Cython functions. " -#~ "Initial patch by Stefan Behnel." - -#~ msgid "" -#~ "`Issue #18801 `__: Fix inspect." -#~ "classify_class_attrs to correctly classify object.__new__ and object." -#~ "__init__." -#~ msgstr "" -#~ "`Issue #18801 `__: Fix inspect." -#~ "classify_class_attrs to correctly classify object.__new__ and object." -#~ "__init__." - -#~ msgid "" -#~ "`Issue #20311 `__, #20452: poll and epoll " -#~ "now round the timeout away from zero, instead of rounding towards zero, " -#~ "in select and selectors modules: select.epoll.poll(), selectors." -#~ "PollSelector.poll() and selectors.EpollSelector.poll(). For example, a " -#~ "timeout of one microsecond (1e-6) is now rounded to one millisecondi " -#~ "(1e-3), instead of being rounded to zero. However, the granularity " -#~ "property and asyncio's resolution feature were removed again." -#~ msgstr "" -#~ "`Issue #20311 `__, #20452: poll and epoll " -#~ "now round the timeout away from zero, instead of rounding towards zero, " -#~ "in select and selectors modules: select.epoll.poll(), selectors." -#~ "PollSelector.poll() and selectors.EpollSelector.poll(). For example, a " -#~ "timeout of one microsecond (1e-6) is now rounded to one millisecondi " -#~ "(1e-3), instead of being rounded to zero. However, the granularity " -#~ "property and asyncio's resolution feature were removed again." - -#~ msgid "" -#~ "`Issue #20288 `__: fix handling of invalid " -#~ "numeric charrefs in HTMLParser." -#~ msgstr "" -#~ "`Issue #20288 `__: fix handling of invalid " -#~ "numeric charrefs in HTMLParser." - -#~ msgid "" -#~ "`Issue #20424 `__: Python implementation " -#~ "of io.StringIO now supports lone surrogates." -#~ msgstr "" -#~ "`Issue #20424 `__: Python implementation " -#~ "of io.StringIO now supports lone surrogates." - -#~ msgid "" -#~ "`Issue #20308 `__: inspect.signature now " -#~ "works on classes without user-defined __init__ or __new__ methods." -#~ msgstr "" -#~ "`Issue #20308 `__: inspect.signature now " -#~ "works on classes without user-defined __init__ or __new__ methods." - -#~ msgid "" -#~ "`Issue #20372 `__: inspect.getfile (and a " -#~ "bunch of other inspect functions that use it) doesn't crash with " -#~ "unexpected AttributeError on classes defined in C without __module__." -#~ msgstr "" -#~ "`Issue #20372 `__: inspect.getfile (and a " -#~ "bunch of other inspect functions that use it) doesn't crash with " -#~ "unexpected AttributeError on classes defined in C without __module__." - -#~ msgid "" -#~ "`Issue #20356 `__: inspect.signature " -#~ "formatting uses '/' to separate positional-only parameters from others." -#~ msgstr "" -#~ "`Issue #20356 `__: inspect.signature " -#~ "formatting uses '/' to separate positional-only parameters from others." - -#~ msgid "" -#~ "`Issue #20223 `__: inspect.signature now " -#~ "supports methods defined with functools.partialmethods." -#~ msgstr "" -#~ "`Issue #20223 `__: inspect.signature now " -#~ "supports methods defined with functools.partialmethods." - -#~ msgid "" -#~ "`Issue #19456 `__: ntpath.join() now joins " -#~ "relative paths correctly when a drive is present." -#~ msgstr "" -#~ "`Issue #19456 `__: ntpath.join() now joins " -#~ "relative paths correctly when a drive is present." - -#~ msgid "" -#~ "`Issue #19077 `__: tempfile." -#~ "TemporaryDirectory cleanup no longer fails when called during shutdown. " -#~ "Emitting resource warning in __del__ no longer fails. Original patch by " -#~ "Antoine Pitrou." -#~ msgstr "" -#~ "`Issue #19077 `__: tempfile." -#~ "TemporaryDirectory cleanup no longer fails when called during shutdown. " -#~ "Emitting resource warning in __del__ no longer fails. Original patch by " -#~ "Antoine Pitrou." - -#~ msgid "" -#~ "`Issue #20394 `__: Silence Coverity " -#~ "warning in audioop module." -#~ msgstr "" -#~ "`Issue #20394 `__: Silence Coverity " -#~ "warning in audioop module." - -#~ msgid "" -#~ "`Issue #20367 `__: Fix behavior of " -#~ "concurrent.futures.as_completed() for duplicate arguments. Patch by " -#~ "Glenn Langford." -#~ msgstr "" -#~ "`Issue #20367 `__: Fix behavior of " -#~ "concurrent.futures.as_completed() for duplicate arguments. Patch by " -#~ "Glenn Langford." - -#~ msgid "" -#~ "`Issue #8260 `__: The read(), readline() " -#~ "and readlines() methods of codecs.StreamReader returned incomplete data " -#~ "when were called after readline() or read(size). Based on patch by " -#~ "Amaury Forgeot d'Arc." -#~ msgstr "" -#~ "`Issue #8260 `__: The read(), readline() " -#~ "and readlines() methods of codecs.StreamReader returned incomplete data " -#~ "when were called after readline() or read(size). Based on patch by " -#~ "Amaury Forgeot d'Arc." - -#~ msgid "" -#~ "`Issue #20105 `__: the codec exception " -#~ "chaining now correctly sets the traceback of the original exception as " -#~ "its __traceback__ attribute." -#~ msgstr "" -#~ "`Issue #20105 `__: the codec exception " -#~ "chaining now correctly sets the traceback of the original exception as " -#~ "its __traceback__ attribute." - -#~ msgid "" -#~ "`Issue #17481 `__: inspect." -#~ "getfullargspec() now uses inspect.signature() API." -#~ msgstr "" -#~ "`Issue #17481 `__: inspect." -#~ "getfullargspec() now uses inspect.signature() API." - -#~ msgid "" -#~ "`Issue #15304 `__: concurrent.futures." -#~ "wait() can block forever even if Futures have completed. Patch by Glenn " -#~ "Langford." -#~ msgstr "" -#~ "`Issue #15304 `__: concurrent.futures." -#~ "wait() can block forever even if Futures have completed. Patch by Glenn " -#~ "Langford." - -#~ msgid "" -#~ "`Issue #14455 `__: plistlib: fix " -#~ "serializing integers in the range of an unsigned long long but outside of " -#~ "the range of signed long long for binary plist files." -#~ msgstr "" -#~ "`Issue #14455 `__: plistlib: fix " -#~ "serializing integers in the range of an unsigned long long but outside of " -#~ "the range of signed long long for binary plist files." - -#~ msgid "" -#~ "`Issue #17721 `__: Remove non-functional " -#~ "configuration dialog help button until we make it actually gives some " -#~ "help when clicked. Patch by Guilherme Simões." -#~ msgstr "" -#~ "`Issue #17721 `__: Remove non-functional " -#~ "configuration dialog help button until we make it actually gives some " -#~ "help when clicked. Patch by Guilherme Simões." - -#~ msgid "" -#~ "`Issue #20532 `__: Tests which use " -#~ "_testcapi now are marked as CPython only." -#~ msgstr "" -#~ "`Issue #20532 `__: Tests which use " -#~ "_testcapi now are marked as CPython only." - -#~ msgid "" -#~ "`Issue #19920 `__: Added tests for TarFile." -#~ "list(). Based on patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #19920 `__: Added tests for TarFile." -#~ "list(). Based on patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #19990 `__: Added tests for the " -#~ "imghdr module. Based on patch by Claudiu Popa." -#~ msgstr "" -#~ "`Issue #19990 `__: Added tests for the " -#~ "imghdr module. Based on patch by Claudiu Popa." - -#~ msgid "" -#~ "`Issue #20474 `__: Fix test_socket " -#~ "\"unexpected success\" failures on OS X 10.7+." -#~ msgstr "" -#~ "`Issue #20474 `__: Fix test_socket " -#~ "\"unexpected success\" failures on OS X 10.7+." - -#~ msgid "" -#~ "`Issue #20530 `__: Argument Clinic's " -#~ "signature format has been revised again. The new syntax is highly human " -#~ "readable while still preventing false positives. The syntax also extends " -#~ "Python syntax to denote \"self\" and positional-only parameters, allowing " -#~ "inspect.Signature objects to be totally accurate for all supported " -#~ "builtins in Python 3.4." -#~ msgstr "" -#~ "`Issue #20530 `__: Argument Clinic's " -#~ "signature format has been revised again. The new syntax is highly human " -#~ "readable while still preventing false positives. The syntax also extends " -#~ "Python syntax to denote \"self\" and positional-only parameters, allowing " -#~ "inspect.Signature objects to be totally accurate for all supported " -#~ "builtins in Python 3.4." - -#~ msgid "" -#~ "`Issue #20456 `__: Argument Clinic now " -#~ "observes the C preprocessor conditional compilation statements of the C " -#~ "files it parses. When a Clinic block is inside a conditional code, it " -#~ "adjusts its output to match, including automatically generating an empty " -#~ "methoddef macro." -#~ msgstr "" -#~ "`Issue #20456 `__: Argument Clinic now " -#~ "observes the C preprocessor conditional compilation statements of the C " -#~ "files it parses. When a Clinic block is inside a conditional code, it " -#~ "adjusts its output to match, including automatically generating an empty " -#~ "methoddef macro." - -#~ msgid "" -#~ "`Issue #20456 `__: Cloned functions in " -#~ "Argument Clinic now use the correct name, not the name of the function " -#~ "they were cloned from, for text strings inside generated code." -#~ msgstr "" -#~ "`Issue #20456 `__: Cloned functions in " -#~ "Argument Clinic now use the correct name, not the name of the function " -#~ "they were cloned from, for text strings inside generated code." - -#~ msgid "" -#~ "`Issue #20456 `__: Fixed Argument Clinic's " -#~ "test suite and \"--converters\" feature." -#~ msgstr "" -#~ "`Issue #20456 `__: Fixed Argument Clinic's " -#~ "test suite and \"--converters\" feature." - -#~ msgid "" -#~ "`Issue #20456 `__: Argument Clinic now " -#~ "allows specifying different names for a parameter in Python and C, using " -#~ "\"as\" on the parameter line." -#~ msgstr "" -#~ "`Issue #20456 `__: Argument Clinic now " -#~ "allows specifying different names for a parameter in Python and C, using " -#~ "\"as\" on the parameter line." - -#~ msgid "" -#~ "`Issue #20326 `__: Argument Clinic now " -#~ "uses a simple, unique signature to annotate text signatures in " -#~ "docstrings, resulting in fewer false positives. \"self\" parameters are " -#~ "also explicitly marked, allowing inspect.Signature() to authoritatively " -#~ "detect (and skip) said parameters." -#~ msgstr "" -#~ "`Issue #20326 `__: Argument Clinic now " -#~ "uses a simple, unique signature to annotate text signatures in " -#~ "docstrings, resulting in fewer false positives. \"self\" parameters are " -#~ "also explicitly marked, allowing inspect.Signature() to authoritatively " -#~ "detect (and skip) said parameters." - -#~ msgid "" -#~ "`Issue #20326 `__: Argument Clinic now " -#~ "generates separate checksums for the input and output sections of the " -#~ "block, allowing external tools to verify that the input has not changed " -#~ "(and thus the output is not out-of-date)." -#~ msgstr "" -#~ "`Issue #20326 `__: Argument Clinic now " -#~ "generates separate checksums for the input and output sections of the " -#~ "block, allowing external tools to verify that the input has not changed " -#~ "(and thus the output is not out-of-date)." - -#~ msgid "" -#~ "`Issue #20465 `__: Update SQLite shipped " -#~ "with OS X installer to 3.8.3." -#~ msgstr "" -#~ "`Issue #20465 `__: Update SQLite shipped " -#~ "with OS X installer to 3.8.3." - -#~ msgid "" -#~ "`Issue #20517 `__: Added new functions " -#~ "allowing OSError exceptions to reference two filenames instead of one: " -#~ "PyErr_SetFromErrnoWithFilenameObjects() and " -#~ "PyErr_SetExcFromWindowsErrWithFilenameObjects()." -#~ msgstr "" -#~ "`Issue #20517 `__: Added new functions " -#~ "allowing OSError exceptions to reference two filenames instead of one: " -#~ "PyErr_SetFromErrnoWithFilenameObjects() and " -#~ "PyErr_SetExcFromWindowsErrWithFilenameObjects()." - -#~ msgid "" -#~ "`Issue #20488 `__: Change wording to say " -#~ "importlib is *the* implementation of import instead of just *an* " -#~ "implementation." -#~ msgstr "" -#~ "`Issue #20488 `__: Change wording to say " -#~ "importlib is *the* implementation of import instead of just *an* " -#~ "implementation." - -#~ msgid "" -#~ "`Issue #6386 `__: Clarify in the tutorial " -#~ "that specifying a symlink to execute means the directory containing the " -#~ "executed script and not the symlink is added to sys.path." -#~ msgstr "" -#~ "`Issue #6386 `__: Clarify in the tutorial " -#~ "that specifying a symlink to execute means the directory containing the " -#~ "executed script and not the symlink is added to sys.path." - -#~ msgid "Python 3.4.0 Beta 3" -#~ msgstr "Python 3.4.0 Beta 3" - -#~ msgid "" -#~ "`Issue #20189 `__: Four additional builtin " -#~ "types (PyTypeObject, PyMethodDescr_Type, _PyMethodWrapper_Type, and " -#~ "PyWrapperDescr_Type) have been modified to provide introspection " -#~ "information for builtins." -#~ msgstr "" -#~ "`Issue #20189 `__: Four additional builtin " -#~ "types (PyTypeObject, PyMethodDescr_Type, _PyMethodWrapper_Type, and " -#~ "PyWrapperDescr_Type) have been modified to provide introspection " -#~ "information for builtins." - -#~ msgid "" -#~ "`Issue #17825 `__: Cursor \"^\" is " -#~ "correctly positioned for SyntaxError and IndentationError." -#~ msgstr "" -#~ "`Issue #17825 `__: Cursor \"^\" is " -#~ "correctly positioned for SyntaxError and IndentationError." - -#~ msgid "" -#~ "`Issue #2382 `__: SyntaxError cursor \"^\" " -#~ "is now written at correct position in most cases when multibyte " -#~ "characters are in line (before \"^\"). This still not works correctly " -#~ "with wide East Asian characters." -#~ msgstr "" -#~ "`Issue #2382 `__: SyntaxError cursor \"^\" " -#~ "is now written at correct position in most cases when multibyte " -#~ "characters are in line (before \"^\"). This still not works correctly " -#~ "with wide East Asian characters." - -#~ msgid "" -#~ "`Issue #18960 `__: The first line of " -#~ "Python script could be executed twice when the source encoding was " -#~ "specified on the second line. Now the source encoding declaration on the " -#~ "second line isn't effective if the first line contains anything except a " -#~ "comment. 'python -x' works now again with files with the source encoding " -#~ "declarations, and can be used to make Python batch files on Windows." -#~ msgstr "" -#~ "`Issue #18960 `__: The first line of " -#~ "Python script could be executed twice when the source encoding was " -#~ "specified on the second line. Now the source encoding declaration on the " -#~ "second line isn't effective if the first line contains anything except a " -#~ "comment. 'python -x' works now again with files with the source encoding " -#~ "declarations, and can be used to make Python batch files on Windows." - -#~ msgid "" -#~ "`Issue #20311 `__: asyncio: Add a " -#~ "granularity attribute to BaseEventLoop: maximum between the resolution of " -#~ "the BaseEventLoop.time() method and the resolution of the selector. The " -#~ "granuarility is used in the scheduler to round time and deadline." -#~ msgstr "" -#~ "`Issue #20311 `__: asyncio: Add a " -#~ "granularity attribute to BaseEventLoop: maximum between the resolution of " -#~ "the BaseEventLoop.time() method and the resolution of the selector. The " -#~ "granuarility is used in the scheduler to round time and deadline." - -#~ msgid "" -#~ "`Issue #20311 `__: selectors: Add a " -#~ "resolution attribute to BaseSelector." -#~ msgstr "" -#~ "`Issue #20311 `__: selectors: Add a " -#~ "resolution attribute to BaseSelector." - -#~ msgid "" -#~ "`Issue #20189 `__: unittest.mock now no " -#~ "longer assumes that any object for which it could get an inspect." -#~ "Signature is a callable written in Python. Fix courtesy of Michael Foord." -#~ msgstr "" -#~ "`Issue #20189 `__: unittest.mock now no " -#~ "longer assumes that any object for which it could get an inspect." -#~ "Signature is a callable written in Python. Fix courtesy of Michael Foord." - -#~ msgid "" -#~ "`Issue #20317 `__: ExitStack.__exit__ " -#~ "could create a self-referential loop if an exception raised by a cleanup " -#~ "operation already had its context set correctly (for example, by the " -#~ "@contextmanager decorator). The infinite loop this caused is now avoided " -#~ "by checking if the expected context is already set before trying to fix " -#~ "it." -#~ msgstr "" -#~ "`Issue #20317 `__: ExitStack.__exit__ " -#~ "could create a self-referential loop if an exception raised by a cleanup " -#~ "operation already had its context set correctly (for example, by the " -#~ "@contextmanager decorator). The infinite loop this caused is now avoided " -#~ "by checking if the expected context is already set before trying to fix " -#~ "it." - -#~ msgid "" -#~ "`Issue #20374 `__: Fix build with GNU " -#~ "readline >= 6.3." -#~ msgstr "" -#~ "`Issue #20374 `__: Fix build with GNU " -#~ "readline >= 6.3." - -#~ msgid "" -#~ "`Issue #20262 `__: Warnings are raised now " -#~ "when duplicate names are added in the ZIP file or too long ZIP file " -#~ "comment is truncated." -#~ msgstr "" -#~ "`Issue #20262 `__: Warnings are raised now " -#~ "when duplicate names are added in the ZIP file or too long ZIP file " -#~ "comment is truncated." - -#~ msgid "" -#~ "`Issue #20165 `__: The unittest module no " -#~ "longer considers tests marked with @expectedFailure successful if they " -#~ "pass." -#~ msgstr "" -#~ "`Issue #20165 `__: The unittest module no " -#~ "longer considers tests marked with @expectedFailure successful if they " -#~ "pass." - -#~ msgid "" -#~ "`Issue #18574 `__: Added missing newline " -#~ "in 100-Continue reply from http.server.BaseHTTPRequestHandler. Patch by " -#~ "Nikolaus Rath." -#~ msgstr "" -#~ "`Issue #18574 `__: Added missing newline " -#~ "in 100-Continue reply from http.server.BaseHTTPRequestHandler. Patch by " -#~ "Nikolaus Rath." - -#~ msgid "" -#~ "`Issue #20270 `__: urllib.urlparse now " -#~ "supports empty ports." -#~ msgstr "" -#~ "`Issue #20270 `__: urllib.urlparse now " -#~ "supports empty ports." - -#~ msgid "" -#~ "`Issue #20243 `__: TarFile no longer raise " -#~ "ReadError when opened in write mode." -#~ msgstr "" -#~ "`Issue #20243 `__: TarFile no longer raise " -#~ "ReadError when opened in write mode." - -#~ msgid "" -#~ "`Issue #20245 `__: The open functions in " -#~ "the tarfile module now correctly handle empty mode." -#~ msgstr "" -#~ "`Issue #20245 `__: The open functions in " -#~ "the tarfile module now correctly handle empty mode." - -#~ msgid "" -#~ "`Issue #20242 `__: Fixed basicConfig() " -#~ "format strings for the alternative formatting styles. Thanks to " -#~ "kespindler for the bug report and patch." -#~ msgstr "" -#~ "`Issue #20242 `__: Fixed basicConfig() " -#~ "format strings for the alternative formatting styles. Thanks to " -#~ "kespindler for the bug report and patch." - -#~ msgid "" -#~ "`Issue #20246 `__: Fix buffer overflow in " -#~ "socket.recvfrom_into." -#~ msgstr "" -#~ "`Issue #20246 `__: Fix buffer overflow in " -#~ "socket.recvfrom_into." - -#~ msgid "" -#~ "`Issue #19082 `__: Working xmlrpc.server " -#~ "and xmlrpc.client examples. Both in modules and in documentation. Initial " -#~ "patch contributed by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #19082 `__: Working xmlrpc.server " -#~ "and xmlrpc.client examples. Both in modules and in documentation. Initial " -#~ "patch contributed by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #20138 `__: The wsgiref." -#~ "application_uri() and wsgiref.request_uri() functions now conform to PEP " -#~ "3333 when handle non-ASCII URLs." -#~ msgstr "" -#~ "`Issue #20138 `__: The wsgiref." -#~ "application_uri() and wsgiref.request_uri() functions now conform to PEP " -#~ "3333 when handle non-ASCII URLs." - -#~ msgid "" -#~ "`Issue #19097 `__: Raise the correct " -#~ "Exception when cgi.FieldStorage is given an invalid fileobj." -#~ msgstr "" -#~ "`Issue #19097 `__: Raise the correct " -#~ "Exception when cgi.FieldStorage is given an invalid fileobj." - -#~ msgid "" -#~ "`Issue #20152 `__: Ported Python/import.c " -#~ "over to Argument Clinic." -#~ msgstr "" -#~ "`Issue #20152 `__: Ported Python/import.c " -#~ "over to Argument Clinic." - -#~ msgid "" -#~ "`Issue #13107 `__: argparse and optparse " -#~ "no longer raises an exception when output a help on environment with too " -#~ "small COLUMNS. Based on patch by Elazar Gershuni." -#~ msgstr "" -#~ "`Issue #13107 `__: argparse and optparse " -#~ "no longer raises an exception when output a help on environment with too " -#~ "small COLUMNS. Based on patch by Elazar Gershuni." - -#~ msgid "" -#~ "`Issue #20207 `__: Always disable SSLv2 " -#~ "except when PROTOCOL_SSLv2 is explicitly asked for." -#~ msgstr "" -#~ "`Issue #20207 `__: Always disable SSLv2 " -#~ "except when PROTOCOL_SSLv2 is explicitly asked for." - -#~ msgid "" -#~ "`Issue #18960 `__: The tokenize module now " -#~ "ignore the source encoding declaration on the second line if the first " -#~ "line contains anything except a comment." -#~ msgstr "" -#~ "`Issue #18960 `__: The tokenize module now " -#~ "ignore the source encoding declaration on the second line if the first " -#~ "line contains anything except a comment." - -#~ msgid "" -#~ "`Issue #20078 `__: Reading malformed " -#~ "zipfiles no longer hangs with 100% CPU consumption." -#~ msgstr "" -#~ "`Issue #20078 `__: Reading malformed " -#~ "zipfiles no longer hangs with 100% CPU consumption." - -#~ msgid "" -#~ "`Issue #20113 `__: os.readv() and os." -#~ "writev() now raise an OSError exception on error instead of returning -1." -#~ msgstr "" -#~ "`Issue #20113 `__: os.readv() and os." -#~ "writev() now raise an OSError exception on error instead of returning -1." - -#~ msgid "" -#~ "`Issue #19719 `__: Make importlib.abc." -#~ "MetaPathFinder.find_module(), PathEntryFinder.find_loader(), and Loader." -#~ "load_module() use PEP 451 APIs to help with backwards-compatibility." -#~ msgstr "" -#~ "`Issue #19719 `__: Make importlib.abc." -#~ "MetaPathFinder.find_module(), PathEntryFinder.find_loader(), and Loader." -#~ "load_module() use PEP 451 APIs to help with backwards-compatibility." - -#~ msgid "" -#~ "`Issue #20144 `__: inspect.Signature now " -#~ "supports parsing simple symbolic constants as parameter default values in " -#~ "__text_signature__." -#~ msgstr "" -#~ "`Issue #20144 `__: inspect.Signature now " -#~ "supports parsing simple symbolic constants as parameter default values in " -#~ "__text_signature__." - -#~ msgid "" -#~ "`Issue #20072 `__: Fixed multiple errors " -#~ "in tkinter with wantobjects is False." -#~ msgstr "" -#~ "`Issue #20072 `__: Fixed multiple errors " -#~ "in tkinter with wantobjects is False." - -#~ msgid "" -#~ "`Issue #20229 `__: Avoid plistlib " -#~ "deprecation warning in platform.mac_ver()." -#~ msgstr "" -#~ "`Issue #20229 `__: Avoid plistlib " -#~ "deprecation warning in platform.mac_ver()." - -#~ msgid "" -#~ "`Issue #14455 `__: Fix some problems with " -#~ "the new binary plist support in plistlib." -#~ msgstr "" -#~ "`Issue #14455 `__: Fix some problems with " -#~ "the new binary plist support in plistlib." - -#~ msgid "" -#~ "`Issue #17390 `__: Add Python version to " -#~ "Idle editor window title bar. Original patches by Edmond Burnett and Kent " -#~ "Johnson." -#~ msgstr "" -#~ "`Issue #17390 `__: Add Python version to " -#~ "Idle editor window title bar. Original patches by Edmond Burnett and Kent " -#~ "Johnson." - -#~ msgid "" -#~ "`Issue #18960 `__: IDLE now ignores the " -#~ "source encoding declaration on the second line if the first line contains " -#~ "anything except a comment." -#~ msgstr "" -#~ "`Issue #18960 `__: IDLE now ignores the " -#~ "source encoding declaration on the second line if the first line contains " -#~ "anything except a comment." - -#~ msgid "" -#~ "`Issue #20358 `__: Tests for curses.window." -#~ "overlay and curses.window.overwrite no longer specify min{row,col} > " -#~ "max{row,col}." -#~ msgstr "" -#~ "`Issue #20358 `__: Tests for curses.window." -#~ "overlay and curses.window.overwrite no longer specify min{row,col} > " -#~ "max{row,col}." - -#~ msgid "" -#~ "`Issue #19804 `__: The test_find_mac test " -#~ "in test_uuid is now skipped if the ifconfig executable is not available." -#~ msgstr "" -#~ "`Issue #19804 `__: The test_find_mac test " -#~ "in test_uuid is now skipped if the ifconfig executable is not available." - -#~ msgid "" -#~ "`Issue #19886 `__: Use better estimated " -#~ "memory requirements for bigmem tests." -#~ msgstr "" -#~ "`Issue #19886 `__: Use better estimated " -#~ "memory requirements for bigmem tests." - -#~ msgid "" -#~ "`Issue #20390 `__: Argument Clinic's \"file" -#~ "\" output preset now defaults to \"{dirname}/clinic/{basename}.h\"." -#~ msgstr "" -#~ "`Issue #20390 `__: Argument Clinic's \"file" -#~ "\" output preset now defaults to \"{dirname}/clinic/{basename}.h\"." - -#~ msgid "" -#~ "`Issue #20390 `__: Argument Clinic's " -#~ "\"class\" directive syntax has been extended with two new required " -#~ "arguments: \"typedef\" and \"type_object\"." -#~ msgstr "" -#~ "`Issue #20390 `__: Argument Clinic's " -#~ "\"class\" directive syntax has been extended with two new required " -#~ "arguments: \"typedef\" and \"type_object\"." - -#~ msgid "" -#~ "`Issue #20390 `__: Argument Clinic: If " -#~ "__new__ or __init__ functions didn't use kwargs (or args), the " -#~ "PyArg_NoKeywords (or PyArg_NoPositional) calls generated are only run " -#~ "when the type object is an exact match." -#~ msgstr "" -#~ "`Issue #20390 `__: Argument Clinic: If " -#~ "__new__ or __init__ functions didn't use kwargs (or args), the " -#~ "PyArg_NoKeywords (or PyArg_NoPositional) calls generated are only run " -#~ "when the type object is an exact match." - -#~ msgid "" -#~ "`Issue #20390 `__: Argument Clinic now " -#~ "fails if you have required parameters after optional parameters." -#~ msgstr "" -#~ "`Issue #20390 `__: Argument Clinic now " -#~ "fails if you have required parameters after optional parameters." - -#~ msgid "" -#~ "`Issue #20390 `__: Argument Clinic " -#~ "converters now have a new template they can inject code into: \"modifiers" -#~ "\". Code put there is run in the parsing function after argument parsing " -#~ "but before the call to the impl." -#~ msgstr "" -#~ "`Issue #20390 `__: Argument Clinic " -#~ "converters now have a new template they can inject code into: \"modifiers" -#~ "\". Code put there is run in the parsing function after argument parsing " -#~ "but before the call to the impl." - -#~ msgid "" -#~ "`Issue #20376 `__: Argument Clinic now " -#~ "escapes backslashes in docstrings." -#~ msgstr "" -#~ "`Issue #20376 `__: Argument Clinic now " -#~ "escapes backslashes in docstrings." - -#~ msgid "" -#~ "`Issue #20381 `__: Argument Clinic now " -#~ "sanity checks the default argument when c_default is also specified, " -#~ "providing a nice failure message for disallowed values." -#~ msgstr "" -#~ "`Issue #20381 `__: Argument Clinic now " -#~ "sanity checks the default argument when c_default is also specified, " -#~ "providing a nice failure message for disallowed values." - -#~ msgid "" -#~ "`Issue #20189 `__: Argument Clinic now " -#~ "ensures that parser functions for __new__ are always of type newfunc, the " -#~ "type of the tp_new slot. Similarly, parser functions for __init__ are now " -#~ "always of type initproc, the type of tp_init." -#~ msgstr "" -#~ "`Issue #20189 `__: Argument Clinic now " -#~ "ensures that parser functions for __new__ are always of type newfunc, the " -#~ "type of the tp_new slot. Similarly, parser functions for __init__ are now " -#~ "always of type initproc, the type of tp_init." - -#~ msgid "" -#~ "`Issue #20189 `__: Argument Clinic now " -#~ "suppresses the docstring for __new__ and __init__ functions if no " -#~ "docstring is provided in the input." -#~ msgstr "" -#~ "`Issue #20189 `__: Argument Clinic now " -#~ "suppresses the docstring for __new__ and __init__ functions if no " -#~ "docstring is provided in the input." - -#~ msgid "" -#~ "`Issue #20189 `__: Argument Clinic now " -#~ "suppresses the \"self\" parameter in the impl for @staticmethod functions." -#~ msgstr "" -#~ "`Issue #20189 `__: Argument Clinic now " -#~ "suppresses the \"self\" parameter in the impl for @staticmethod functions." - -#~ msgid "" -#~ "`Issue #20294 `__: Argument Clinic now " -#~ "supports argument parsing for __new__ and __init__ functions." -#~ msgstr "" -#~ "`Issue #20294 `__: Argument Clinic now " -#~ "supports argument parsing for __new__ and __init__ functions." - -#~ msgid "" -#~ "`Issue #20299 `__: Argument Clinic custom " -#~ "converters may now change the default value of c_default and py_default " -#~ "with a class member." -#~ msgstr "" -#~ "`Issue #20299 `__: Argument Clinic custom " -#~ "converters may now change the default value of c_default and py_default " -#~ "with a class member." - -#~ msgid "" -#~ "`Issue #20287 `__: Argument Clinic's " -#~ "output is now configurable, allowing delaying its output or even " -#~ "redirecting it to a separate file." -#~ msgstr "" -#~ "`Issue #20287 `__: Argument Clinic's " -#~ "output is now configurable, allowing delaying its output or even " -#~ "redirecting it to a separate file." - -#~ msgid "" -#~ "`Issue #20226 `__: Argument Clinic now " -#~ "permits simple expressions (e.g. \"sys.maxsize - 1\") as default values " -#~ "for parameters." -#~ msgstr "" -#~ "`Issue #20226 `__: Argument Clinic now " -#~ "permits simple expressions (e.g. \"sys.maxsize - 1\") as default values " -#~ "for parameters." - -#~ msgid "" -#~ "`Issue #19936 `__: Added executable bits " -#~ "or shebang lines to Python scripts which requires them. Disable " -#~ "executable bits and shebang lines in test and benchmark files in order to " -#~ "prevent using a random system python, and in source files of modules " -#~ "which don't provide command line interface. Fixed shebang lines in the " -#~ "unittestgui and checkpip scripts." -#~ msgstr "" -#~ "`Issue #19936 `__: Added executable bits " -#~ "or shebang lines to Python scripts which requires them. Disable " -#~ "executable bits and shebang lines in test and benchmark files in order to " -#~ "prevent using a random system python, and in source files of modules " -#~ "which don't provide command line interface. Fixed shebang lines in the " -#~ "unittestgui and checkpip scripts." - -#~ msgid "" -#~ "`Issue #20268 `__: Argument Clinic now " -#~ "supports cloning the parameters and return converter of existing " -#~ "functions." -#~ msgstr "" -#~ "`Issue #20268 `__: Argument Clinic now " -#~ "supports cloning the parameters and return converter of existing " -#~ "functions." - -#~ msgid "" -#~ "`Issue #20228 `__: Argument Clinic now has " -#~ "special support for class special methods." -#~ msgstr "" -#~ "`Issue #20228 `__: Argument Clinic now has " -#~ "special support for class special methods." - -#~ msgid "" -#~ "`Issue #20214 `__: Fixed a number of small " -#~ "issues and documentation errors in Argument Clinic (see issue for " -#~ "details)." -#~ msgstr "" -#~ "`Issue #20214 `__: Fixed a number of small " -#~ "issues and documentation errors in Argument Clinic (see issue for " -#~ "details)." - -#~ msgid "" -#~ "`Issue #20196 `__: Fixed a bug where " -#~ "Argument Clinic did not generate correct parsing code for functions with " -#~ "positional-only parameters where all arguments are optional." -#~ msgstr "" -#~ "`Issue #20196 `__: Fixed a bug where " -#~ "Argument Clinic did not generate correct parsing code for functions with " -#~ "positional-only parameters where all arguments are optional." - -#~ msgid "" -#~ "`Issue #18960 `__: 2to3 and the " -#~ "findnocoding.py script now ignore the source encoding declaration on the " -#~ "second line if the first line contains anything except a comment." -#~ msgstr "" -#~ "`Issue #18960 `__: 2to3 and the " -#~ "findnocoding.py script now ignore the source encoding declaration on the " -#~ "second line if the first line contains anything except a comment." - -#~ msgid "" -#~ "`Issue #19723 `__: The marker comments " -#~ "Argument Clinic uses have been changed to improve readability." -#~ msgstr "" -#~ "`Issue #19723 `__: The marker comments " -#~ "Argument Clinic uses have been changed to improve readability." - -#~ msgid "" -#~ "`Issue #20157 `__: When Argument Clinic " -#~ "renames a parameter because its name collides with a C keyword, it no " -#~ "longer exposes that rename to PyArg_Parse." -#~ msgstr "" -#~ "`Issue #20157 `__: When Argument Clinic " -#~ "renames a parameter because its name collides with a C keyword, it no " -#~ "longer exposes that rename to PyArg_Parse." - -#~ msgid "" -#~ "`Issue #20141 `__: Improved Argument " -#~ "Clinic's support for the PyArg_Parse \"O!\" format unit." -#~ msgstr "" -#~ "`Issue #20141 `__: Improved Argument " -#~ "Clinic's support for the PyArg_Parse \"O!\" format unit." - -#~ msgid "" -#~ "`Issue #20144 `__: Argument Clinic now " -#~ "supports simple symbolic constants as parameter default values." -#~ msgstr "" -#~ "`Issue #20144 `__: Argument Clinic now " -#~ "supports simple symbolic constants as parameter default values." - -#~ msgid "" -#~ "`Issue #20143 `__: The line numbers " -#~ "reported in Argument Clinic errors are now more accurate." -#~ msgstr "" -#~ "`Issue #20143 `__: The line numbers " -#~ "reported in Argument Clinic errors are now more accurate." - -#~ msgid "" -#~ "`Issue #20142 `__: Py_buffer variables " -#~ "generated by Argument Clinic are now initialized with a default value." -#~ msgstr "" -#~ "`Issue #20142 `__: Py_buffer variables " -#~ "generated by Argument Clinic are now initialized with a default value." - -#~ msgid "" -#~ "`Issue #12837 `__: Silence a tautological " -#~ "comparison warning on OS X under Clang in socketmodule.c." -#~ msgstr "" -#~ "`Issue #12837 `__: Silence a tautological " -#~ "comparison warning on OS X under Clang in socketmodule.c." - -#~ msgid "" -#~ "`Issue #17432 `__: Drop UCS2 from names of " -#~ "Unicode functions in python3.def." -#~ msgstr "" -#~ "`Issue #17432 `__: Drop UCS2 from names of " -#~ "Unicode functions in python3.def." - -#~ msgid "" -#~ "`Issue #19526 `__: Exclude all new API " -#~ "from the stable ABI. Exceptions can be made if a need is demonstrated." -#~ msgstr "" -#~ "`Issue #19526 `__: Exclude all new API " -#~ "from the stable ABI. Exceptions can be made if a need is demonstrated." - -#~ msgid "" -#~ "`Issue #19969 `__: PyBytes_FromFormatV() " -#~ "now raises an OverflowError if \"%c\" argument is not in range [0; 255]." -#~ msgstr "" -#~ "`Issue #19969 `__: PyBytes_FromFormatV() " -#~ "now raises an OverflowError if \"%c\" argument is not in range [0; 255]." - -#~ msgid "" -#~ "`Issue #19995 `__: %c, %o, %x, and %X now " -#~ "issue a DeprecationWarning on non-integer input; reworded docs to clarify " -#~ "that an integer type should define both __int__ and __index__." -#~ msgstr "" -#~ "`Issue #19995 `__: %c, %o, %x, and %X now " -#~ "issue a DeprecationWarning on non-integer input; reworded docs to clarify " -#~ "that an integer type should define both __int__ and __index__." - -#~ msgid "" -#~ "`Issue #19787 `__: " -#~ "PyThread_set_key_value() now always set the value. In Python 3.3, the " -#~ "function did nothing if the key already exists (if the current value is a " -#~ "non-NULL pointer)." -#~ msgstr "" -#~ "`Issue #19787 `__: " -#~ "PyThread_set_key_value() now always set the value. In Python 3.3, the " -#~ "function did nothing if the key already exists (if the current value is a " -#~ "non-NULL pointer)." - -#~ msgid "" -#~ "`Issue #14432 `__: Remove the thread state " -#~ "field from the frame structure. Fix a crash when a generator is created " -#~ "in a C thread that is destroyed while the generator is still used. The " -#~ "issue was that a generator contains a frame, and the frame kept a " -#~ "reference to the Python state of the destroyed C thread. The crash occurs " -#~ "when a trace function is setup." -#~ msgstr "" -#~ "`Issue #14432 `__: Remove the thread state " -#~ "field from the frame structure. Fix a crash when a generator is created " -#~ "in a C thread that is destroyed while the generator is still used. The " -#~ "issue was that a generator contains a frame, and the frame kept a " -#~ "reference to the Python state of the destroyed C thread. The crash occurs " -#~ "when a trace function is setup." - -#~ msgid "" -#~ "`Issue #19576 `__: PyGILState_Ensure() now " -#~ "initializes threads. At startup, Python has no concrete GIL. If " -#~ "PyGILState_Ensure() is called from a new thread for the first time and " -#~ "PyEval_InitThreads() was not called yet, a GIL needs to be created." -#~ msgstr "" -#~ "`Issue #19576 `__: PyGILState_Ensure() now " -#~ "initializes threads. At startup, Python has no concrete GIL. If " -#~ "PyGILState_Ensure() is called from a new thread for the first time and " -#~ "PyEval_InitThreads() was not called yet, a GIL needs to be created." - -#~ msgid "" -#~ "`Issue #17576 `__: Deprecation warning " -#~ "emitted now when __int__() or __index__() return not int instance." -#~ msgstr "" -#~ "`Issue #17576 `__: Deprecation warning " -#~ "emitted now when __int__() or __index__() return not int instance." - -#~ msgid "" -#~ "`Issue #19932 `__: Fix typo in import.h, " -#~ "missing whitespaces in function prototypes." -#~ msgstr "" -#~ "`Issue #19932 `__: Fix typo in import.h, " -#~ "missing whitespaces in function prototypes." - -#~ msgid "" -#~ "`Issue #19736 `__: Add module-level " -#~ "statvfs constants defined for GNU/glibc based systems." -#~ msgstr "" -#~ "`Issue #19736 `__: Add module-level " -#~ "statvfs constants defined for GNU/glibc based systems." - -#~ msgid "" -#~ "`Issue #20097 `__: Fix bad use of \"self\" " -#~ "in importlib's WindowsRegistryFinder." -#~ msgstr "" -#~ "`Issue #20097 `__: Fix bad use of \"self\" " -#~ "in importlib's WindowsRegistryFinder." - -#~ msgid "" -#~ "`Issue #19729 `__: In str.format(), fix " -#~ "recursive expansion in format spec." -#~ msgstr "" -#~ "`Issue #19729 `__: In str.format(), fix " -#~ "recursive expansion in format spec." - -#~ msgid "" -#~ "`Issue #19638 `__: Fix possible crash / " -#~ "undefined behaviour from huge (more than 2 billion characters) input " -#~ "strings in _Py_dg_strtod." -#~ msgstr "" -#~ "`Issue #19638 `__: Fix possible crash / " -#~ "undefined behaviour from huge (more than 2 billion characters) input " -#~ "strings in _Py_dg_strtod." - -#~ msgid "" -#~ "`Issue #20154 `__: Deadlock in asyncio." -#~ "StreamReader.readexactly()." -#~ msgstr "" -#~ "`Issue #20154 `__: Deadlock in asyncio." -#~ "StreamReader.readexactly()." - -#~ msgid "" -#~ "`Issue #16113 `__: Remove sha3 module " -#~ "again." -#~ msgstr "" -#~ "`Issue #16113 `__: Remove sha3 module " -#~ "again." - -#~ msgid "" -#~ "`Issue #20111 `__: pathlib.Path." -#~ "with_suffix() now sanity checks the given suffix." -#~ msgstr "" -#~ "`Issue #20111 `__: pathlib.Path." -#~ "with_suffix() now sanity checks the given suffix." - -#~ msgid "" -#~ "`Issue #20108 `__: Avoid parameter name " -#~ "clash in inspect.getcallargs()." -#~ msgstr "" -#~ "`Issue #20108 `__: Avoid parameter name " -#~ "clash in inspect.getcallargs()." - -#~ msgid "" -#~ "`Issue #19918 `__: Fix PurePath." -#~ "relative_to() under Windows." -#~ msgstr "" -#~ "`Issue #19918 `__: Fix PurePath." -#~ "relative_to() under Windows." - -#~ msgid "" -#~ "`Issue #19422 `__: Explicitly disallow non-" -#~ "SOCK_STREAM sockets in the ssl module, rather than silently let them emit " -#~ "clear text data." -#~ msgstr "" -#~ "`Issue #19422 `__: Explicitly disallow non-" -#~ "SOCK_STREAM sockets in the ssl module, rather than silently let them emit " -#~ "clear text data." - -#~ msgid "" -#~ "`Issue #20046 `__: Locale alias table no " -#~ "longer contains entities which can be calculated. Generalized support of " -#~ "the euro modifier." -#~ msgstr "" -#~ "`Issue #20046 `__: Locale alias table no " -#~ "longer contains entities which can be calculated. Generalized support of " -#~ "the euro modifier." - -#~ msgid "" -#~ "`Issue #20027 `__: Fixed locale aliases " -#~ "for devanagari locales." -#~ msgstr "" -#~ "`Issue #20027 `__: Fixed locale aliases " -#~ "for devanagari locales." - -#~ msgid "" -#~ "`Issue #20067 `__: Tkinter variables now " -#~ "work when wantobjects is false." -#~ msgstr "" -#~ "`Issue #20067 `__: Tkinter variables now " -#~ "work when wantobjects is false." - -#~ msgid "" -#~ "`Issue #19020 `__: Tkinter now uses " -#~ "splitlist() instead of split() in configure methods." -#~ msgstr "" -#~ "`Issue #19020 `__: Tkinter now uses " -#~ "splitlist() instead of split() in configure methods." - -#~ msgid "" -#~ "`Issue #19744 `__: ensurepip now provides " -#~ "a better error message when Python is built without SSL/TLS support (pip " -#~ "currently requires that support to run, even if only operating with local " -#~ "wheel files)" -#~ msgstr "" -#~ "`Issue #19744 `__: ensurepip now provides " -#~ "a better error message when Python is built without SSL/TLS support (pip " -#~ "currently requires that support to run, even if only operating with local " -#~ "wheel files)" - -#~ msgid "" -#~ "`Issue #19734 `__: ensurepip now ignores " -#~ "all pip environment variables to avoid odd behaviour based on user " -#~ "configuration settings" -#~ msgstr "" -#~ "`Issue #19734 `__: ensurepip now ignores " -#~ "all pip environment variables to avoid odd behaviour based on user " -#~ "configuration settings" - -#~ msgid "" -#~ "`Issue #20045 `__: Fix \"setup.py register " -#~ "--list-classifiers\"." -#~ msgstr "" -#~ "`Issue #20045 `__: Fix \"setup.py register " -#~ "--list-classifiers\"." - -#~ msgid "" -#~ "`Issue #18879 `__: When a method is looked " -#~ "up on a temporary file, avoid closing the file before the method is " -#~ "possibly called." -#~ msgstr "" -#~ "`Issue #18879 `__: When a method is looked " -#~ "up on a temporary file, avoid closing the file before the method is " -#~ "possibly called." - -#~ msgid "" -#~ "`Issue #20037 `__: Avoid crashes when " -#~ "opening a text file late at interpreter shutdown." -#~ msgstr "" -#~ "`Issue #20037 `__: Avoid crashes when " -#~ "opening a text file late at interpreter shutdown." - -#~ msgid "" -#~ "`Issue #19967 `__: Thanks to the PEP 442, " -#~ "asyncio.Future now uses a destructor to log uncaught exceptions, instead " -#~ "of the dedicated _TracebackLogger class." -#~ msgstr "" -#~ "`Issue #19967 `__: Thanks to the PEP 442, " -#~ "asyncio.Future now uses a destructor to log uncaught exceptions, instead " -#~ "of the dedicated _TracebackLogger class." - -#~ msgid "" -#~ "`Issue #19850 `__: Set SA_RESTART in " -#~ "asyncio when registering a signal handler to limit EINTR occurrences." -#~ msgstr "" -#~ "`Issue #19850 `__: Set SA_RESTART in " -#~ "asyncio when registering a signal handler to limit EINTR occurrences." - -#~ msgid "" -#~ "`Issue #20034 `__: Updated alias mapping " -#~ "to most recent locale.alias file from X.org distribution using " -#~ "makelocalealias.py." -#~ msgstr "" -#~ "`Issue #20034 `__: Updated alias mapping " -#~ "to most recent locale.alias file from X.org distribution using " -#~ "makelocalealias.py." - -#~ msgid "" -#~ "`Issue #5815 `__: Fixed support for locales " -#~ "with modifiers. Fixed support for locale encodings with hyphens." -#~ msgstr "" -#~ "`Issue #5815 `__: Fixed support for locales " -#~ "with modifiers. Fixed support for locale encodings with hyphens." - -#~ msgid "" -#~ "`Issue #20026 `__: Fix the sqlite module " -#~ "to handle correctly invalid isolation level (wrong type)." -#~ msgstr "" -#~ "`Issue #20026 `__: Fix the sqlite module " -#~ "to handle correctly invalid isolation level (wrong type)." - -#~ msgid "" -#~ "`Issue #18829 `__: csv.Dialect() now " -#~ "checks type for delimiter, escapechar and quotechar fields. Original " -#~ "patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #18829 `__: csv.Dialect() now " -#~ "checks type for delimiter, escapechar and quotechar fields. Original " -#~ "patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #19855 `__: uuid.getnode() on Unix " -#~ "now looks on the PATH for the executables used to find the mac address, " -#~ "with /sbin and /usr/sbin as fallbacks." -#~ msgstr "" -#~ "`Issue #19855 `__: uuid.getnode() on Unix " -#~ "now looks on the PATH for the executables used to find the mac address, " -#~ "with /sbin and /usr/sbin as fallbacks." - -#~ msgid "" -#~ "`Issue #20007 `__: HTTPResponse.read(0) no " -#~ "more prematurely closes connection. Original patch by Simon Sapin." -#~ msgstr "" -#~ "`Issue #20007 `__: HTTPResponse.read(0) no " -#~ "more prematurely closes connection. Original patch by Simon Sapin." - -#~ msgid "" -#~ "`Issue #19946 `__: multiprocessing now " -#~ "uses runpy to initialize __main__ in child processes when necessary, " -#~ "allowing it to correctly handle scripts without suffixes and submodules " -#~ "that use explicit relative imports or otherwise rely on parent modules " -#~ "being correctly imported prior to execution." -#~ msgstr "" -#~ "`Issue #19946 `__: multiprocessing now " -#~ "uses runpy to initialize __main__ in child processes when necessary, " -#~ "allowing it to correctly handle scripts without suffixes and submodules " -#~ "that use explicit relative imports or otherwise rely on parent modules " -#~ "being correctly imported prior to execution." - -#~ msgid "" -#~ "`Issue #19921 `__: When Path.mkdir() is " -#~ "called with parents=True, any missing parent is created with the default " -#~ "permissions, ignoring the mode argument (mimicking the POSIX \"mkdir -p\" " -#~ "command)." -#~ msgstr "" -#~ "`Issue #19921 `__: When Path.mkdir() is " -#~ "called with parents=True, any missing parent is created with the default " -#~ "permissions, ignoring the mode argument (mimicking the POSIX \"mkdir -p\" " -#~ "command)." - -#~ msgid "" -#~ "`Issue #19887 `__: Improve the Path." -#~ "resolve() algorithm to support certain symlink chains." -#~ msgstr "" -#~ "`Issue #19887 `__: Improve the Path." -#~ "resolve() algorithm to support certain symlink chains." - -#~ msgid "" -#~ "`Issue #19912 `__: Fixed numerous bugs in " -#~ "ntpath.splitunc()." -#~ msgstr "" -#~ "`Issue #19912 `__: Fixed numerous bugs in " -#~ "ntpath.splitunc()." - -#~ msgid "" -#~ "`Issue #19911 `__: ntpath.splitdrive() now " -#~ "correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I " -#~ "WITH DOT ABOVE)." -#~ msgstr "" -#~ "`Issue #19911 `__: ntpath.splitdrive() now " -#~ "correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I " -#~ "WITH DOT ABOVE)." - -#~ msgid "" -#~ "`Issue #19532 `__: python -m compileall " -#~ "with no filename/directory arguments now respects the -f and -q flags " -#~ "instead of ignoring them." -#~ msgstr "" -#~ "`Issue #19532 `__: python -m compileall " -#~ "with no filename/directory arguments now respects the -f and -q flags " -#~ "instead of ignoring them." - -#~ msgid "" -#~ "`Issue #19623 `__: Fixed writing to " -#~ "unseekable files in the aifc module." -#~ msgstr "" -#~ "`Issue #19623 `__: Fixed writing to " -#~ "unseekable files in the aifc module." - -#~ msgid "" -#~ "`Issue #19946 `__: multiprocessing.spawn " -#~ "now raises ImportError when the module to be used as the main module " -#~ "cannot be imported." -#~ msgstr "" -#~ "`Issue #19946 `__: multiprocessing.spawn " -#~ "now raises ImportError when the module to be used as the main module " -#~ "cannot be imported." - -#~ msgid "" -#~ "`Issue #17919 `__: select.poll.register() " -#~ "again works with poll.POLLNVAL on AIX. Fixed integer overflow in the " -#~ "eventmask parameter." -#~ msgstr "" -#~ "`Issue #17919 `__: select.poll.register() " -#~ "again works with poll.POLLNVAL on AIX. Fixed integer overflow in the " -#~ "eventmask parameter." - -#~ msgid "" -#~ "`Issue #19063 `__: if a Charset's " -#~ "body_encoding was set to None, the email package would generate a message " -#~ "claiming the Content-Transfer-Encoding was 7bit, and produce garbage " -#~ "output for the content. This now works. A couple of other set_payload " -#~ "mishandlings of non-ASCII are also fixed. In addition, calling " -#~ "set_payload with a string argument without specifying a charset now " -#~ "raises an error (this is a new error in 3.4)." -#~ msgstr "" -#~ "`Issue #19063 `__: if a Charset's " -#~ "body_encoding was set to None, the email package would generate a message " -#~ "claiming the Content-Transfer-Encoding was 7bit, and produce garbage " -#~ "output for the content. This now works. A couple of other set_payload " -#~ "mishandlings of non-ASCII are also fixed. In addition, calling " -#~ "set_payload with a string argument without specifying a charset now " -#~ "raises an error (this is a new error in 3.4)." - -#~ msgid "" -#~ "`Issue #15475 `__: Add __sizeof__ " -#~ "implementations for itertools objects." -#~ msgstr "" -#~ "`Issue #15475 `__: Add __sizeof__ " -#~ "implementations for itertools objects." - -#~ msgid "" -#~ "`Issue #19944 `__: Fix importlib." -#~ "find_spec() so it imports parents as needed and move the function to " -#~ "importlib.util." -#~ msgstr "" -#~ "`Issue #19944 `__: Fix importlib." -#~ "find_spec() so it imports parents as needed and move the function to " -#~ "importlib.util." - -#~ msgid "" -#~ "`Issue #19880 `__: Fix a reference leak in " -#~ "unittest.TestCase. Explicitly break reference cycles between frames and " -#~ "the _Outcome instance." -#~ msgstr "" -#~ "`Issue #19880 `__: Fix a reference leak in " -#~ "unittest.TestCase. Explicitly break reference cycles between frames and " -#~ "the _Outcome instance." - -#~ msgid "" -#~ "`Issue #17429 `__: platform." -#~ "linux_distribution() now decodes files from the UTF-8 encoding with the " -#~ "surrogateescape error handler, instead of decoding from the locale " -#~ "encoding in strict mode. It fixes the function on Fedora 19 which is " -#~ "probably the first major distribution release with a non-ASCII name. " -#~ "Patch written by Toshio Kuratomi." -#~ msgstr "" -#~ "`Issue #17429 `__: platform." -#~ "linux_distribution() now decodes files from the UTF-8 encoding with the " -#~ "surrogateescape error handler, instead of decoding from the locale " -#~ "encoding in strict mode. It fixes the function on Fedora 19 which is " -#~ "probably the first major distribution release with a non-ASCII name. " -#~ "Patch written by Toshio Kuratomi." - -#~ msgid "" -#~ "`Issue #19343 `__: Expose FreeBSD-specific " -#~ "APIs in resource module. Original patch by Koobs." -#~ msgstr "" -#~ "`Issue #19343 `__: Expose FreeBSD-specific " -#~ "APIs in resource module. Original patch by Koobs." - -#~ msgid "" -#~ "`Issue #19929 `__: Call os.read with 32768 " -#~ "within subprocess.Popen.communicate rather than 4096 for efficiency. A " -#~ "microbenchmark shows Linux and OS X both using ~50% less cpu time this " -#~ "way." -#~ msgstr "" -#~ "`Issue #19929 `__: Call os.read with 32768 " -#~ "within subprocess.Popen.communicate rather than 4096 for efficiency. A " -#~ "microbenchmark shows Linux and OS X both using ~50% less cpu time this " -#~ "way." - -#~ msgid "" -#~ "`Issue #19506 `__: Use a memoryview to " -#~ "avoid a data copy when piping data to stdin within subprocess.Popen." -#~ "communicate. 5-10% less cpu usage." -#~ msgstr "" -#~ "`Issue #19506 `__: Use a memoryview to " -#~ "avoid a data copy when piping data to stdin within subprocess.Popen." -#~ "communicate. 5-10% less cpu usage." - -#~ msgid "" -#~ "`Issue #19876 `__: selectors unregister() " -#~ "no longer raises ValueError or OSError if the FD is closed (as long as it " -#~ "was registered)." -#~ msgstr "" -#~ "`Issue #19876 `__: selectors unregister() " -#~ "no longer raises ValueError or OSError if the FD is closed (as long as it " -#~ "was registered)." - -#~ msgid "" -#~ "`Issue #19908 `__: pathlib now joins " -#~ "relative Windows paths correctly when a drive is present. Original patch " -#~ "by Antoine Pitrou." -#~ msgstr "" -#~ "`Issue #19908 `__: pathlib now joins " -#~ "relative Windows paths correctly when a drive is present. Original patch " -#~ "by Antoine Pitrou." - -#~ msgid "" -#~ "`Issue #19296 `__: Silence compiler " -#~ "warning in dbm_open" -#~ msgstr "" -#~ "`Issue #19296 `__: Silence compiler " -#~ "warning in dbm_open" - -#~ msgid "" -#~ "`Issue #6784 `__: Strings from Python 2 can " -#~ "now be unpickled as bytes objects by setting the encoding argument of " -#~ "Unpickler to be 'bytes'. Initial patch by Merlijn van Deen." -#~ msgstr "" -#~ "`Issue #6784 `__: Strings from Python 2 can " -#~ "now be unpickled as bytes objects by setting the encoding argument of " -#~ "Unpickler to be 'bytes'. Initial patch by Merlijn van Deen." - -#~ msgid "" -#~ "`Issue #19839 `__: Fix regression in bz2 " -#~ "module's handling of non-bzip2 data at EOF, and analogous bug in lzma " -#~ "module." -#~ msgstr "" -#~ "`Issue #19839 `__: Fix regression in bz2 " -#~ "module's handling of non-bzip2 data at EOF, and analogous bug in lzma " -#~ "module." - -#~ msgid "" -#~ "`Issue #19881 `__: Fix pickling bug where " -#~ "cpickle would emit bad pickle data for large bytes string (i.e., with " -#~ "size greater than 2**32-1)." -#~ msgstr "" -#~ "`Issue #19881 `__: Fix pickling bug where " -#~ "cpickle would emit bad pickle data for large bytes string (i.e., with " -#~ "size greater than 2**32-1)." - -#~ msgid "" -#~ "`Issue #19138 `__: doctest's " -#~ "IGNORE_EXCEPTION_DETAIL now allows a match when no exception detail " -#~ "exists (no colon following the exception's name, or a colon does follow " -#~ "but no text follows the colon)." -#~ msgstr "" -#~ "`Issue #19138 `__: doctest's " -#~ "IGNORE_EXCEPTION_DETAIL now allows a match when no exception detail " -#~ "exists (no colon following the exception's name, or a colon does follow " -#~ "but no text follows the colon)." - -#~ msgid "" -#~ "`Issue #19927 `__: Add __eq__ to path-" -#~ "based loaders in importlib." -#~ msgstr "" -#~ "`Issue #19927 `__: Add __eq__ to path-" -#~ "based loaders in importlib." - -#~ msgid "" -#~ "`Issue #19827 `__: On UNIX, setblocking() " -#~ "and settimeout() methods of socket.socket can now avoid a second syscall " -#~ "if the ioctl() function can be used, or if the non-blocking flag of the " -#~ "socket is unchanged." -#~ msgstr "" -#~ "`Issue #19827 `__: On UNIX, setblocking() " -#~ "and settimeout() methods of socket.socket can now avoid a second syscall " -#~ "if the ioctl() function can be used, or if the non-blocking flag of the " -#~ "socket is unchanged." - -#~ msgid "" -#~ "`Issue #19785 `__: smtplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." -#~ msgstr "" -#~ "`Issue #19785 `__: smtplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." - -#~ msgid "" -#~ "`Issue #19784 `__: poplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." -#~ msgstr "" -#~ "`Issue #19784 `__: poplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." - -#~ msgid "" -#~ "`Issue #19783 `__: nntplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." -#~ msgstr "" -#~ "`Issue #19783 `__: nntplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." - -#~ msgid "" -#~ "`Issue #19782 `__: imaplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." -#~ msgstr "" -#~ "`Issue #19782 `__: imaplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." - -#~ msgid "" -#~ "`Issue #20123 `__: Fix pydoc.synopsis() " -#~ "for \"binary\" modules." -#~ msgstr "" -#~ "`Issue #20123 `__: Fix pydoc.synopsis() " -#~ "for \"binary\" modules." - -#~ msgid "" -#~ "`Issue #19834 `__: Support unpickling of " -#~ "exceptions pickled by Python 2." -#~ msgstr "" -#~ "`Issue #19834 `__: Support unpickling of " -#~ "exceptions pickled by Python 2." - -#~ msgid "" -#~ "`Issue #19781 `__: ftplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." -#~ msgstr "" -#~ "`Issue #19781 `__: ftplib now supports " -#~ "SSLContext.check_hostname and server name indication for TLS/SSL " -#~ "connections." - -#~ msgid "" -#~ "`Issue #19509 `__: Add SSLContext." -#~ "check_hostname to match the peer's certificate with server_hostname on " -#~ "handshake." -#~ msgstr "" -#~ "`Issue #19509 `__: Add SSLContext." -#~ "check_hostname to match the peer's certificate with server_hostname on " -#~ "handshake." - -#~ msgid "" -#~ "`Issue #15798 `__: Fixed subprocess." -#~ "Popen() to no longer fail if file descriptor 0, 1 or 2 is closed." -#~ msgstr "" -#~ "`Issue #15798 `__: Fixed subprocess." -#~ "Popen() to no longer fail if file descriptor 0, 1 or 2 is closed." - -#~ msgid "" -#~ "`Issue #17897 `__: Optimized unpickle " -#~ "prefetching." -#~ msgstr "" -#~ "`Issue #17897 `__: Optimized unpickle " -#~ "prefetching." - -#~ msgid "" -#~ "`Issue #3693 `__: Make the error message " -#~ "more helpful when the array.array() constructor is given a str. Move the " -#~ "array module typecode documentation to the docstring of the constructor." -#~ msgstr "" -#~ "`Issue #3693 `__: Make the error message " -#~ "more helpful when the array.array() constructor is given a str. Move the " -#~ "array module typecode documentation to the docstring of the constructor." - -#~ msgid "" -#~ "`Issue #19088 `__: Fixed incorrect caching " -#~ "of the copyreg module in object.__reduce__() and object.__reduce_ex__()." -#~ msgstr "" -#~ "`Issue #19088 `__: Fixed incorrect caching " -#~ "of the copyreg module in object.__reduce__() and object.__reduce_ex__()." - -#~ msgid "" -#~ "`Issue #19698 `__: Removed exec_module() " -#~ "methods from importlib.machinery.BuiltinImporter and ExtensionFileLoader." -#~ msgstr "" -#~ "`Issue #19698 `__: Removed exec_module() " -#~ "methods from importlib.machinery.BuiltinImporter and ExtensionFileLoader." - -#~ msgid "" -#~ "`Issue #11480 `__: Fixed copy.copy to work " -#~ "with classes with custom metaclasses. Patch by Daniel Urban." -#~ msgstr "" -#~ "`Issue #11480 `__: Fixed copy.copy to work " -#~ "with classes with custom metaclasses. Patch by Daniel Urban." - -#~ msgid "" -#~ "`Issue #6477 `__: Added support for " -#~ "pickling the types of built-in singletons (i.e., Ellipsis, " -#~ "NotImplemented, None)." -#~ msgstr "" -#~ "`Issue #6477 `__: Added support for " -#~ "pickling the types of built-in singletons (i.e., Ellipsis, " -#~ "NotImplemented, None)." - -#~ msgid "" -#~ "`Issue #19713 `__: Add remaining PEP 451-" -#~ "related deprecations and move away from using find_module/find_loaer/" -#~ "load_module." -#~ msgstr "" -#~ "`Issue #19713 `__: Add remaining PEP 451-" -#~ "related deprecations and move away from using find_module/find_loaer/" -#~ "load_module." - -#~ msgid "" -#~ "`Issue #19708 `__: Update pkgutil to use " -#~ "the new importer APIs." -#~ msgstr "" -#~ "`Issue #19708 `__: Update pkgutil to use " -#~ "the new importer APIs." - -#~ msgid "" -#~ "`Issue #19703 `__: Update pydoc to use the " -#~ "new importer APIs." -#~ msgstr "" -#~ "`Issue #19703 `__: Update pydoc to use the " -#~ "new importer APIs." - -#~ msgid "" -#~ "`Issue #19851 `__: Fixed a regression in " -#~ "reloading sub-modules." -#~ msgstr "" -#~ "`Issue #19851 `__: Fixed a regression in " -#~ "reloading sub-modules." - -#~ msgid "" -#~ "`Issue #19802 `__: Add socket.SO_PRIORITY." -#~ msgstr "" -#~ "`Issue #19802 `__: Add socket.SO_PRIORITY." - -#~ msgid "" -#~ "`Issue #11508 `__: Fixed uuid.getnode() " -#~ "and uuid.uuid1() on environment with virtual interface. Original patch " -#~ "by Kent Frazier." -#~ msgstr "" -#~ "`Issue #11508 `__: Fixed uuid.getnode() " -#~ "and uuid.uuid1() on environment with virtual interface. Original patch " -#~ "by Kent Frazier." - -#~ msgid "" -#~ "`Issue #11489 `__: JSON decoder now " -#~ "accepts lone surrogates." -#~ msgstr "" -#~ "`Issue #11489 `__: JSON decoder now " -#~ "accepts lone surrogates." - -#~ msgid "" -#~ "`Issue #19545 `__: Avoid chained " -#~ "exceptions while passing stray % to time.strptime(). Initial patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`Issue #19545 `__: Avoid chained " -#~ "exceptions while passing stray % to time.strptime(). Initial patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`Issue #20058 `__: sys.stdin.readline() in " -#~ "IDLE now always returns only one line." -#~ msgstr "" -#~ "`Issue #20058 `__: sys.stdin.readline() in " -#~ "IDLE now always returns only one line." - -#~ msgid "" -#~ "`Issue #19481 `__: print() of string " -#~ "subclass instance in IDLE no longer hangs." -#~ msgstr "" -#~ "`Issue #19481 `__: print() of string " -#~ "subclass instance in IDLE no longer hangs." - -#~ msgid "" -#~ "`Issue #18270 `__: Prevent possible IDLE " -#~ "AttributeError on OS X when no initial shell window is present." -#~ msgstr "" -#~ "`Issue #18270 `__: Prevent possible IDLE " -#~ "AttributeError on OS X when no initial shell window is present." - -#~ msgid "" -#~ "`Issue #20055 `__: Fix test_shutil under " -#~ "Windows with symlink privileges held. Patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #20055 `__: Fix test_shutil under " -#~ "Windows with symlink privileges held. Patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #20070 `__: Don't run " -#~ "test_urllib2net when network resources are not enabled." -#~ msgstr "" -#~ "`Issue #20070 `__: Don't run " -#~ "test_urllib2net when network resources are not enabled." - -#~ msgid "" -#~ "`Issue #19938 `__: Re-enabled " -#~ "test_bug_1333982 in test_dis, which had been disabled since 3.0 due to " -#~ "the changes in listcomp handling." -#~ msgstr "" -#~ "`Issue #19938 `__: Re-enabled " -#~ "test_bug_1333982 in test_dis, which had been disabled since 3.0 due to " -#~ "the changes in listcomp handling." - -#~ msgid "" -#~ "`Issue #19320 `__: test_tcl no longer " -#~ "fails when wantobjects is false." -#~ msgstr "" -#~ "`Issue #19320 `__: test_tcl no longer " -#~ "fails when wantobjects is false." - -#~ msgid "" -#~ "`Issue #19919 `__: Fix flaky SSL test. " -#~ "connect_ex() sometimes returns EWOULDBLOCK on Windows or VMs hosted on " -#~ "Windows." -#~ msgstr "" -#~ "`Issue #19919 `__: Fix flaky SSL test. " -#~ "connect_ex() sometimes returns EWOULDBLOCK on Windows or VMs hosted on " -#~ "Windows." - -#~ msgid "" -#~ "`Issue #19912 `__: Added tests for ntpath." -#~ "splitunc()." -#~ msgstr "" -#~ "`Issue #19912 `__: Added tests for ntpath." -#~ "splitunc()." - -#~ msgid "" -#~ "`Issue #19828 `__: Fixed test_site when " -#~ "the whole suite is run with -S." -#~ msgstr "" -#~ "`Issue #19828 `__: Fixed test_site when " -#~ "the whole suite is run with -S." - -#~ msgid "" -#~ "`Issue #19928 `__: Implemented a test for " -#~ "repr() of cell objects." -#~ msgstr "" -#~ "`Issue #19928 `__: Implemented a test for " -#~ "repr() of cell objects." - -#~ msgid "" -#~ "`Issue #19535 `__: Fixed test_docxmlrpc, " -#~ "test_functools, test_inspect, and test_statistics when python is run with " -#~ "-OO." -#~ msgstr "" -#~ "`Issue #19535 `__: Fixed test_docxmlrpc, " -#~ "test_functools, test_inspect, and test_statistics when python is run with " -#~ "-OO." - -#~ msgid "" -#~ "`Issue #19926 `__: Removed unneeded " -#~ "test_main from test_abstract_numbers. Patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #19926 `__: Removed unneeded " -#~ "test_main from test_abstract_numbers. Patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #19572 `__: More skipped tests " -#~ "explicitly marked as skipped." -#~ msgstr "" -#~ "`Issue #19572 `__: More skipped tests " -#~ "explicitly marked as skipped." - -#~ msgid "" -#~ "`Issue #19595 `__, #19987: Re-enabled a " -#~ "long-disabled test in test_winsound." -#~ msgstr "" -#~ "`Issue #19595 `__, #19987: Re-enabled a " -#~ "long-disabled test in test_winsound." - -#~ msgid "" -#~ "`Issue #19588 `__: Fixed tests in " -#~ "test_random that were silently skipped most of the time. Patch by Julian " -#~ "Gindi." -#~ msgstr "" -#~ "`Issue #19588 `__: Fixed tests in " -#~ "test_random that were silently skipped most of the time. Patch by Julian " -#~ "Gindi." - -#~ msgid "" -#~ "`Issue #19728 `__: Enable pip installation " -#~ "by default on Windows." -#~ msgstr "" -#~ "`Issue #19728 `__: Enable pip installation " -#~ "by default on Windows." - -#~ msgid "`Issue #16136 `__: Remove VMS support" -#~ msgstr "" -#~ "`Issue #16136 `__: Remove VMS support" - -#~ msgid "" -#~ "`Issue #18215 `__: Add script Tools/ssl/" -#~ "test_multiple_versions.py to compile and run Python's unit tests with " -#~ "multiple versions of OpenSSL." -#~ msgstr "" -#~ "`Issue #18215 `__: Add script Tools/ssl/" -#~ "test_multiple_versions.py to compile and run Python's unit tests with " -#~ "multiple versions of OpenSSL." - -#~ msgid "" -#~ "`Issue #19922 `__: define " -#~ "_INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t for mbrtowc()." -#~ msgstr "" -#~ "`Issue #19922 `__: define " -#~ "_INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t for mbrtowc()." - -#~ msgid "" -#~ "`Issue #19788 `__: kill_python(_d).exe is " -#~ "now run as a PreBuildEvent on the pythoncore sub-project. This should " -#~ "prevent build errors due a previous build's python(_d).exe still running." -#~ msgstr "" -#~ "`Issue #19788 `__: kill_python(_d).exe is " -#~ "now run as a PreBuildEvent on the pythoncore sub-project. This should " -#~ "prevent build errors due a previous build's python(_d).exe still running." - -#~ msgid "" -#~ "`Issue #20265 `__: Updated some parts of " -#~ "the Using Windows document." -#~ msgstr "" -#~ "`Issue #20265 `__: Updated some parts of " -#~ "the Using Windows document." - -#~ msgid "" -#~ "`Issue #20255 `__: Updated the about and " -#~ "bugs pages." -#~ msgstr "" -#~ "`Issue #20255 `__: Updated the about and " -#~ "bugs pages." - -#~ msgid "" -#~ "`Issue #20253 `__: Fixed a typo in the " -#~ "ipaddress docs that advertised an illegal attribute name. Found by INADA " -#~ "Naoki." -#~ msgstr "" -#~ "`Issue #20253 `__: Fixed a typo in the " -#~ "ipaddress docs that advertised an illegal attribute name. Found by INADA " -#~ "Naoki." - -#~ msgid "" -#~ "`Issue #18840 `__: Introduce the json " -#~ "module in the tutorial, and de-emphasize the pickle module." -#~ msgstr "" -#~ "`Issue #18840 `__: Introduce the json " -#~ "module in the tutorial, and de-emphasize the pickle module." - -#~ msgid "" -#~ "`Issue #19845 `__: Updated the Compiling " -#~ "Python on Windows section." -#~ msgstr "" -#~ "`Issue #19845 `__: Updated the Compiling " -#~ "Python on Windows section." - -#~ msgid "" -#~ "`Issue #19795 `__: Improved markup of True/" -#~ "False constants." -#~ msgstr "" -#~ "`Issue #19795 `__: Improved markup of True/" -#~ "False constants." - -#~ msgid "" -#~ "`Issue #19659 `__: Added documentation for " -#~ "Argument Clinic." -#~ msgstr "" -#~ "`Issue #19659 `__: Added documentation for " -#~ "Argument Clinic." - -#~ msgid "" -#~ "`Issue #19976 `__: Argument Clinic " -#~ "METH_NOARGS functions now always take two parameters." -#~ msgstr "" -#~ "`Issue #19976 `__: Argument Clinic " -#~ "METH_NOARGS functions now always take two parameters." - -#~ msgid "Python 3.4.0 Beta 1" -#~ msgstr "Python 3.4.0 Beta 1" - -#~ msgid "" -#~ "`Issue #19619 `__: str.encode, bytes." -#~ "decode and bytearray.decode now use an internal API to throw LookupError " -#~ "for known non-text encodings, rather than attempting the encoding or " -#~ "decoding operation and then throwing a TypeError for an unexpected output " -#~ "type. (The latter mechanism remains in place for third party non-text " -#~ "encodings)" -#~ msgstr "" -#~ "`Issue #19619 `__: str.encode, bytes." -#~ "decode and bytearray.decode now use an internal API to throw LookupError " -#~ "for known non-text encodings, rather than attempting the encoding or " -#~ "decoding operation and then throwing a TypeError for an unexpected output " -#~ "type. (The latter mechanism remains in place for third party non-text " -#~ "encodings)" - -#~ msgid "" -#~ "`Issue #19183 `__: Implement PEP 456 " -#~ "'secure and interchangeable hash algorithm'. Python now uses SipHash24 on " -#~ "all major platforms." -#~ msgstr "" -#~ "`Issue #19183 `__: Implement PEP 456 " -#~ "'secure and interchangeable hash algorithm'. Python now uses SipHash24 on " -#~ "all major platforms." - -#~ msgid "" -#~ "`Issue #12892 `__: The utf-16* and utf-32* " -#~ "encoders no longer allow surrogate code points (U+D800-U+DFFF) to be " -#~ "encoded. The utf-32* decoders no longer decode byte sequences that " -#~ "correspond to surrogate code points. The surrogatepass error handler now " -#~ "works with the utf-16* and utf-32* codecs. Based on patches by Victor " -#~ "Stinner and Kang-Hao (Kenny) Lu." -#~ msgstr "" -#~ "`Issue #12892 `__: The utf-16* and utf-32* " -#~ "encoders no longer allow surrogate code points (U+D800-U+DFFF) to be " -#~ "encoded. The utf-32* decoders no longer decode byte sequences that " -#~ "correspond to surrogate code points. The surrogatepass error handler now " -#~ "works with the utf-16* and utf-32* codecs. Based on patches by Victor " -#~ "Stinner and Kang-Hao (Kenny) Lu." - -#~ msgid "" -#~ "`Issue #17806 `__: Added keyword-argument " -#~ "support for \"tabsize\" to str/bytes.expandtabs()." -#~ msgstr "" -#~ "`Issue #17806 `__: Added keyword-argument " -#~ "support for \"tabsize\" to str/bytes.expandtabs()." - -#~ msgid "" -#~ "`Issue #17828 `__: Output type errors in " -#~ "str.encode(), bytes.decode() and bytearray.decode() now direct users to " -#~ "codecs.encode() or codecs.decode() as appropriate." -#~ msgstr "" -#~ "`Issue #17828 `__: Output type errors in " -#~ "str.encode(), bytes.decode() and bytearray.decode() now direct users to " -#~ "codecs.encode() or codecs.decode() as appropriate." - -#~ msgid "" -#~ "`Issue #17828 `__: The interpreter now " -#~ "attempts to chain errors that occur in codec processing with a " -#~ "replacement exception of the same type that includes the codec name in " -#~ "the error message. It ensures it only does this when the creation of the " -#~ "replacement exception won't lose any information." -#~ msgstr "" -#~ "`Issue #17828 `__: The interpreter now " -#~ "attempts to chain errors that occur in codec processing with a " -#~ "replacement exception of the same type that includes the codec name in " -#~ "the error message. It ensures it only does this when the creation of the " -#~ "replacement exception won't lose any information." - -#~ msgid "" -#~ "`Issue #19466 `__: Clear the frames of " -#~ "daemon threads earlier during the Python shutdown to call object " -#~ "destructors. So \"unclosed file\" resource warnings are now correctly " -#~ "emitted for daemon threads." -#~ msgstr "" -#~ "`Issue #19466 `__: Clear the frames of " -#~ "daemon threads earlier during the Python shutdown to call object " -#~ "destructors. So \"unclosed file\" resource warnings are now correctly " -#~ "emitted for daemon threads." - -#~ msgid "" -#~ "`Issue #19514 `__: Deduplicate some " -#~ "_Py_IDENTIFIER declarations. Patch by Andrei Dorian Duma." -#~ msgstr "" -#~ "`Issue #19514 `__: Deduplicate some " -#~ "_Py_IDENTIFIER declarations. Patch by Andrei Dorian Duma." - -#~ msgid "" -#~ "`Issue #17936 `__: Fix O(n**2) behaviour " -#~ "when adding or removing many subclasses of a given type." -#~ msgstr "" -#~ "`Issue #17936 `__: Fix O(n**2) behaviour " -#~ "when adding or removing many subclasses of a given type." - -#~ msgid "" -#~ "`Issue #19428 `__: zipimport now handles " -#~ "errors when reading truncated or invalid ZIP archive." -#~ msgstr "" -#~ "`Issue #19428 `__: zipimport now handles " -#~ "errors when reading truncated or invalid ZIP archive." - -#~ msgid "" -#~ "`Issue #18408 `__: Add a new " -#~ "PyFrame_FastToLocalsWithError() function to handle exceptions when " -#~ "merging fast locals into f_locals of a frame. PyEval_GetLocals() now " -#~ "raises an exception and return NULL on failure." -#~ msgstr "" -#~ "`Issue #18408 `__: Add a new " -#~ "PyFrame_FastToLocalsWithError() function to handle exceptions when " -#~ "merging fast locals into f_locals of a frame. PyEval_GetLocals() now " -#~ "raises an exception and return NULL on failure." - -#~ msgid "" -#~ "`Issue #19369 `__: Optimized the usage of " -#~ "__length_hint__()." -#~ msgstr "" -#~ "`Issue #19369 `__: Optimized the usage of " -#~ "__length_hint__()." - -#~ msgid "" -#~ "`Issue #28026 `__: Raise ImportError when " -#~ "exec_module() exists but create_module() is missing." -#~ msgstr "" -#~ "`Issue #28026 `__: Raise ImportError when " -#~ "exec_module() exists but create_module() is missing." - -#~ msgid "" -#~ "`Issue #18603 `__: Ensure that " -#~ "PyOS_mystricmp and PyOS_mystrnicmp are in the Python executable and not " -#~ "removed by the linker's optimizer." -#~ msgstr "" -#~ "`Issue #18603 `__: Ensure that " -#~ "PyOS_mystricmp and PyOS_mystrnicmp are in the Python executable and not " -#~ "removed by the linker's optimizer." - -#~ msgid "" -#~ "`Issue #19306 `__: Add extra hints to the " -#~ "faulthandler module's stack dumps that these are \"upside down\"." -#~ msgstr "" -#~ "`Issue #19306 `__: Add extra hints to the " -#~ "faulthandler module's stack dumps that these are \"upside down\"." - -#~ msgid "" -#~ "`Issue #3158 `__: doctest can now find " -#~ "doctests in functions and methods written in C." -#~ msgstr "" -#~ "`Issue #3158 `__: doctest can now find " -#~ "doctests in functions and methods written in C." - -#~ msgid "" -#~ "`Issue #13477 `__: Added command line " -#~ "interface to the tarfile module. Original patch by Berker Peksag." -#~ msgstr "" -#~ "`Issue #13477 `__: Added command line " -#~ "interface to the tarfile module. Original patch by Berker Peksag." - -#~ msgid "" -#~ "`Issue #19674 `__: inspect.signature() now " -#~ "produces a correct signature for some builtins." -#~ msgstr "" -#~ "`Issue #19674 `__: inspect.signature() now " -#~ "produces a correct signature for some builtins." - -#~ msgid "" -#~ "`Issue #19722 `__: Added opcode." -#~ "stack_effect(), which computes the stack effect of bytecode instructions." -#~ msgstr "" -#~ "`Issue #19722 `__: Added opcode." -#~ "stack_effect(), which computes the stack effect of bytecode instructions." - -#~ msgid "" -#~ "`Issue #19735 `__: Implement private " -#~ "function ssl._create_stdlib_context() to create SSLContext objects in " -#~ "Python's stdlib module. It provides a single configuration point and " -#~ "makes use of SSLContext.load_default_certs()." -#~ msgstr "" -#~ "`Issue #19735 `__: Implement private " -#~ "function ssl._create_stdlib_context() to create SSLContext objects in " -#~ "Python's stdlib module. It provides a single configuration point and " -#~ "makes use of SSLContext.load_default_certs()." - -#~ msgid "" -#~ "`Issue #16203 `__: Add re.fullmatch() " -#~ "function and regex.fullmatch() method, which anchor the pattern at both " -#~ "ends of the string to match. Original patch by Matthew Barnett." -#~ msgstr "" -#~ "`Issue #16203 `__: Add re.fullmatch() " -#~ "function and regex.fullmatch() method, which anchor the pattern at both " -#~ "ends of the string to match. Original patch by Matthew Barnett." - -#~ msgid "" -#~ "`Issue #13592 `__: Improved the repr for " -#~ "regular expression pattern objects. Based on patch by Hugo Lopes Tavares." -#~ msgstr "" -#~ "`Issue #13592 `__: Improved the repr for " -#~ "regular expression pattern objects. Based on patch by Hugo Lopes Tavares." - -#~ msgid "" -#~ "`Issue #19641 `__: Added the audioop." -#~ "byteswap() function to convert big-endian samples to little-endian and " -#~ "vice versa." -#~ msgstr "" -#~ "`Issue #19641 `__: Added the audioop." -#~ "byteswap() function to convert big-endian samples to little-endian and " -#~ "vice versa." - -#~ msgid "" -#~ "`Issue #15204 `__: Deprecated the 'U' mode " -#~ "in file-like objects." -#~ msgstr "" -#~ "`Issue #15204 `__: Deprecated the 'U' mode " -#~ "in file-like objects." - -#~ msgid "" -#~ "`Issue #17810 `__: Implement PEP 3154, " -#~ "pickle protocol 4." -#~ msgstr "" -#~ "`Issue #17810 `__: Implement PEP 3154, " -#~ "pickle protocol 4." - -#~ msgid "" -#~ "`Issue #19668 `__: Added support for the " -#~ "cp1125 encoding." -#~ msgstr "" -#~ "`Issue #19668 `__: Added support for the " -#~ "cp1125 encoding." - -#~ msgid "" -#~ "`Issue #19689 `__: Add ssl." -#~ "create_default_context() factory function. It creates a new SSLContext " -#~ "object with secure default settings." -#~ msgstr "" -#~ "`Issue #19689 `__: Add ssl." -#~ "create_default_context() factory function. It creates a new SSLContext " -#~ "object with secure default settings." - -#~ msgid "" -#~ "`Issue #19727 `__: os.utime(..., None) is " -#~ "now potentially more precise under Windows." -#~ msgstr "" -#~ "`Issue #19727 `__: os.utime(..., None) is " -#~ "now potentially more precise under Windows." - -#~ msgid "" -#~ "`Issue #17201 `__: ZIP64 extensions now " -#~ "are enabled by default. Patch by William Mallard." -#~ msgstr "" -#~ "`Issue #17201 `__: ZIP64 extensions now " -#~ "are enabled by default. Patch by William Mallard." - -#~ msgid "" -#~ "`Issue #19292 `__: Add SSLContext." -#~ "load_default_certs() to load default root CA certificates from default " -#~ "stores or system stores. By default the method loads CA certs for " -#~ "authentication of server certs." -#~ msgstr "" -#~ "`Issue #19292 `__: Add SSLContext." -#~ "load_default_certs() to load default root CA certificates from default " -#~ "stores or system stores. By default the method loads CA certs for " -#~ "authentication of server certs." - -#~ msgid "" -#~ "`Issue #19673 `__: Add pathlib to the " -#~ "stdlib as a provisional module (PEP 428)." -#~ msgstr "" -#~ "`Issue #19673 `__: Add pathlib to the " -#~ "stdlib as a provisional module (PEP 428)." - -#~ msgid "" -#~ "`Issue #16596 `__: pdb in a generator now " -#~ "properly skips over yield and yield from rather than stepping out of the " -#~ "generator into its caller. (This is essential for stepping through " -#~ "asyncio coroutines.)" -#~ msgstr "" -#~ "`Issue #16596 `__: pdb in a generator now " -#~ "properly skips over yield and yield from rather than stepping out of the " -#~ "generator into its caller. (This is essential for stepping through " -#~ "asyncio coroutines.)" - -#~ msgid "" -#~ "`Issue #17916 `__: Added dis.Bytecode." -#~ "from_traceback() and dis.Bytecode.current_offset to easily display " -#~ "\"current instruction\" markers in the new disassembly API (Patch by " -#~ "Claudiu Popa)." -#~ msgstr "" -#~ "`Issue #17916 `__: Added dis.Bytecode." -#~ "from_traceback() and dis.Bytecode.current_offset to easily display " -#~ "\"current instruction\" markers in the new disassembly API (Patch by " -#~ "Claudiu Popa)." - -#~ msgid "" -#~ "`Issue #19552 `__: venv now supports " -#~ "bootstrapping pip into virtual environments" -#~ msgstr "" -#~ "`Issue #19552 `__: venv now supports " -#~ "bootstrapping pip into virtual environments" - -#~ msgid "" -#~ "`Issue #17134 `__: Finalize interface to " -#~ "Windows' certificate store. Cert and CRL enumeration are now two " -#~ "functions. enum_certificates() also returns purpose flags as set of OIDs." -#~ msgstr "" -#~ "`Issue #17134 `__: Finalize interface to " -#~ "Windows' certificate store. Cert and CRL enumeration are now two " -#~ "functions. enum_certificates() also returns purpose flags as set of OIDs." - -#~ msgid "" -#~ "`Issue #19555 `__: Restore sysconfig." -#~ "get_config_var('SO'), (and the distutils equivalent) with a " -#~ "DeprecationWarning pointing people at $EXT_SUFFIX." -#~ msgstr "" -#~ "`Issue #19555 `__: Restore sysconfig." -#~ "get_config_var('SO'), (and the distutils equivalent) with a " -#~ "DeprecationWarning pointing people at $EXT_SUFFIX." - -#~ msgid "" -#~ "`Issue #8813 `__: Add SSLContext." -#~ "verify_flags to change the verification flags of the context in order to " -#~ "enable certification revocation list (CRL) checks or strict X509 rules." -#~ msgstr "" -#~ "`Issue #8813 `__: Add SSLContext." -#~ "verify_flags to change the verification flags of the context in order to " -#~ "enable certification revocation list (CRL) checks or strict X509 rules." - -#~ msgid "" -#~ "`Issue #18294 `__: Fix the zlib module to " -#~ "make it 64-bit safe." -#~ msgstr "" -#~ "`Issue #18294 `__: Fix the zlib module to " -#~ "make it 64-bit safe." - -#~ msgid "" -#~ "`Issue #19682 `__: Fix compatibility issue " -#~ "with old version of OpenSSL that was introduced by `Issue #18379 `__." -#~ msgstr "" -#~ "`Issue #19682 `__: Fix compatibility issue " -#~ "with old version of OpenSSL that was introduced by `Issue #18379 `__." - -#~ msgid "" -#~ "`Issue #14455 `__: plistlib now supports " -#~ "binary plists and has an updated API." -#~ msgstr "" -#~ "`Issue #14455 `__: plistlib now supports " -#~ "binary plists and has an updated API." - -#~ msgid "" -#~ "`Issue #19633 `__: Fixed writing not " -#~ "compressed 16- and 32-bit wave files on big-endian platforms." -#~ msgstr "" -#~ "`Issue #19633 `__: Fixed writing not " -#~ "compressed 16- and 32-bit wave files on big-endian platforms." - -#~ msgid "" -#~ "`Issue #18379 `__: SSLSocket.getpeercert() " -#~ "returns CA issuer AIA fields, OCSP and CRL distribution points." -#~ msgstr "" -#~ "`Issue #18379 `__: SSLSocket.getpeercert() " -#~ "returns CA issuer AIA fields, OCSP and CRL distribution points." - -#~ msgid "" -#~ "`Issue #18138 `__: Implement cadata " -#~ "argument of SSLContext.load_verify_location() to load CA certificates and " -#~ "CRL from memory. It supports PEM and DER encoded strings." -#~ msgstr "" -#~ "`Issue #18138 `__: Implement cadata " -#~ "argument of SSLContext.load_verify_location() to load CA certificates and " -#~ "CRL from memory. It supports PEM and DER encoded strings." - -#~ msgid "" -#~ "`Issue #18775 `__: Add name and block_size " -#~ "attribute to HMAC object. They now provide the same API elements as non-" -#~ "keyed cryptographic hash functions." -#~ msgstr "" -#~ "`Issue #18775 `__: Add name and block_size " -#~ "attribute to HMAC object. They now provide the same API elements as non-" -#~ "keyed cryptographic hash functions." - -#~ msgid "" -#~ "`Issue #17276 `__: MD5 as default " -#~ "digestmod for HMAC is deprecated. The HMAC module supports digestmod " -#~ "names, e.g. hmac.HMAC('sha1')." -#~ msgstr "" -#~ "`Issue #17276 `__: MD5 as default " -#~ "digestmod for HMAC is deprecated. The HMAC module supports digestmod " -#~ "names, e.g. hmac.HMAC('sha1')." - -#~ msgid "" -#~ "`Issue #19449 `__: in csv's writerow, " -#~ "handle non-string keys when generating the error message that certain " -#~ "keys are not in the 'fieldnames' list." -#~ msgstr "" -#~ "`Issue #19449 `__: in csv's writerow, " -#~ "handle non-string keys when generating the error message that certain " -#~ "keys are not in the 'fieldnames' list." - -#~ msgid "" -#~ "`Issue #13633 `__: Added a new " -#~ "convert_charrefs keyword arg to HTMLParser that, when True, automatically " -#~ "converts all character references." -#~ msgstr "" -#~ "`Issue #13633 `__: Added a new " -#~ "convert_charrefs keyword arg to HTMLParser that, when True, automatically " -#~ "converts all character references." - -#~ msgid "" -#~ "`Issue #2927 `__: Added the unescape() " -#~ "function to the html module." -#~ msgstr "" -#~ "`Issue #2927 `__: Added the unescape() " -#~ "function to the html module." - -#~ msgid "" -#~ "`Issue #8402 `__: Added the escape() " -#~ "function to the glob module." -#~ msgstr "" -#~ "`Issue #8402 `__: Added the escape() " -#~ "function to the glob module." - -#~ msgid "" -#~ "`Issue #17618 `__: Add Base85 and Ascii85 " -#~ "encoding/decoding to the base64 module." -#~ msgstr "" -#~ "`Issue #17618 `__: Add Base85 and Ascii85 " -#~ "encoding/decoding to the base64 module." - -#~ msgid "" -#~ "`Issue #19634 `__: time.strftime(\"%y\") " -#~ "now raises a ValueError on AIX when given a year before 1900." -#~ msgstr "" -#~ "`Issue #19634 `__: time.strftime(\"%y\") " -#~ "now raises a ValueError on AIX when given a year before 1900." - -#~ msgid "" -#~ "`Issue #19448 `__: Add private API to SSL " -#~ "module to lookup ASN.1 objects by OID, NID, short name and long name." -#~ msgstr "" -#~ "`Issue #19448 `__: Add private API to SSL " -#~ "module to lookup ASN.1 objects by OID, NID, short name and long name." - -#~ msgid "" -#~ "`Issue #19282 `__: dbm.open now supports " -#~ "the context management protocol. (Initial patch by Claudiu Popa)" -#~ msgstr "" -#~ "`Issue #19282 `__: dbm.open now supports " -#~ "the context management protocol. (Initial patch by Claudiu Popa)" - -#~ msgid "" -#~ "`Issue #8311 `__: Added support for writing " -#~ "any bytes-like objects in the aifc, sunau, and wave modules." -#~ msgstr "" -#~ "`Issue #8311 `__: Added support for writing " -#~ "any bytes-like objects in the aifc, sunau, and wave modules." - -#~ msgid "" -#~ "`Issue #5202 `__: Added support for " -#~ "unseekable files in the wave module." -#~ msgstr "" -#~ "`Issue #5202 `__: Added support for " -#~ "unseekable files in the wave module." - -#~ msgid "" -#~ "`Issue #19544 `__ and `Issue #1180 " -#~ "`__: Restore global option to ignore ~/." -#~ "pydistutils.cfg in Distutils, accidentally removed in backout of " -#~ "distutils2 changes." -#~ msgstr "" -#~ "`Issue #19544 `__ and `Issue #1180 " -#~ "`__: Restore global option to ignore ~/." -#~ "pydistutils.cfg in Distutils, accidentally removed in backout of " -#~ "distutils2 changes." - -#~ msgid "" -#~ "`Issue #19523 `__: Closed FileHandler leak " -#~ "which occurred when delay was set." -#~ msgstr "" -#~ "`Issue #19523 `__: Closed FileHandler leak " -#~ "which occurred when delay was set." - -#~ msgid "" -#~ "`Issue #19544 `__ and `Issue #6516 " -#~ "`__: Restore support for --user and --group " -#~ "parameters to sdist command accidentally rolled back as part of the " -#~ "distutils2 rollback." -#~ msgstr "" -#~ "`Issue #19544 `__ and `Issue #6516 " -#~ "`__: Restore support for --user and --group " -#~ "parameters to sdist command accidentally rolled back as part of the " -#~ "distutils2 rollback." - -#~ msgid "" -#~ "`Issue #13674 `__: Prevented time.strftime " -#~ "from crashing on Windows when given a year before 1900 and a format of %y." -#~ msgstr "" -#~ "`Issue #13674 `__: Prevented time.strftime " -#~ "from crashing on Windows when given a year before 1900 and a format of %y." - -#~ msgid "" -#~ "`Issue #19406 `__: implementation of the " -#~ "ensurepip module (part of PEP 453). Patch by Donald Stufft and Nick " -#~ "Coghlan." -#~ msgstr "" -#~ "`Issue #19406 `__: implementation of the " -#~ "ensurepip module (part of PEP 453). Patch by Donald Stufft and Nick " -#~ "Coghlan." - -#~ msgid "" -#~ "`Issue #19544 `__ and `Issue #6286 " -#~ "`__: Restore use of urllib over http " -#~ "allowing use of http_proxy for Distutils upload command, a feature " -#~ "accidentally lost in the rollback of distutils2." -#~ msgstr "" -#~ "`Issue #19544 `__ and `Issue #6286 " -#~ "`__: Restore use of urllib over http " -#~ "allowing use of http_proxy for Distutils upload command, a feature " -#~ "accidentally lost in the rollback of distutils2." - -#~ msgid "" -#~ "`Issue #19544 `__ and `Issue #7457 " -#~ "`__: Restore the read_pkg_file method to " -#~ "distutils.dist.DistributionMetadata accidentally removed in the undo of " -#~ "distutils2." -#~ msgstr "" -#~ "`Issue #19544 `__ and `Issue #7457 " -#~ "`__: Restore the read_pkg_file method to " -#~ "distutils.dist.DistributionMetadata accidentally removed in the undo of " -#~ "distutils2." - -#~ msgid "" -#~ "`Issue #16685 `__: Added support for any " -#~ "bytes-like objects in the audioop module. Removed support for strings." -#~ msgstr "" -#~ "`Issue #16685 `__: Added support for any " -#~ "bytes-like objects in the audioop module. Removed support for strings." - -#~ msgid "" -#~ "`Issue #7171 `__: Add Windows " -#~ "implementation of ``inet_ntop`` and ``inet_pton`` to socket module. Patch " -#~ "by Atsuo Ishimoto." -#~ msgstr "" -#~ "`Issue #7171 `__: Add Windows " -#~ "implementation of ``inet_ntop`` and ``inet_pton`` to socket module. Patch " -#~ "by Atsuo Ishimoto." - -#~ msgid "" -#~ "`Issue #19261 `__: Added support for " -#~ "writing 24-bit samples in the sunau module." -#~ msgstr "" -#~ "`Issue #19261 `__: Added support for " -#~ "writing 24-bit samples in the sunau module." - -#~ msgid "" -#~ "`Issue #1097797 `__: Added CP273 " -#~ "encoding, used on IBM mainframes in Germany and Austria. Mapping " -#~ "provided by Michael Bierenfeld." -#~ msgstr "" -#~ "`Issue #1097797 `__: Added CP273 " -#~ "encoding, used on IBM mainframes in Germany and Austria. Mapping " -#~ "provided by Michael Bierenfeld." - -#~ msgid "" -#~ "`Issue #1575020 `__: Fixed support of 24-" -#~ "bit wave files on big-endian platforms." -#~ msgstr "" -#~ "`Issue #1575020 `__: Fixed support of 24-" -#~ "bit wave files on big-endian platforms." - -#~ msgid "" -#~ "`Issue #19378 `__: Fixed a number of cases " -#~ "in the dis module where the new \"file\" parameter was not being honoured " -#~ "correctly" -#~ msgstr "" -#~ "`Issue #19378 `__: Fixed a number of cases " -#~ "in the dis module where the new \"file\" parameter was not being honoured " -#~ "correctly" - -#~ msgid "" -#~ "`Issue #19378 `__: Removed the \"dis." -#~ "Bytecode.show_info\" method" -#~ msgstr "" -#~ "`Issue #19378 `__: Removed the \"dis." -#~ "Bytecode.show_info\" method" - -#~ msgid "" -#~ "`Issue #19378 `__: Renamed the \"dis." -#~ "Bytecode.display_code\" method to \"dis.Bytecode.dis\" and converted it " -#~ "to returning a string rather than printing output." -#~ msgstr "" -#~ "`Issue #19378 `__: Renamed the \"dis." -#~ "Bytecode.display_code\" method to \"dis.Bytecode.dis\" and converted it " -#~ "to returning a string rather than printing output." - -#~ msgid "" -#~ "`Issue #19378 `__: the \"line_offset\" " -#~ "parameter in the new \"dis.get_instructions\" API has been renamed to " -#~ "\"first_line\" (and the default value and usage changed accordingly). " -#~ "This should reduce confusion with the more common use of \"offset\" in " -#~ "the dis docs to refer to bytecode offsets." -#~ msgstr "" -#~ "`Issue #19378 `__: the \"line_offset\" " -#~ "parameter in the new \"dis.get_instructions\" API has been renamed to " -#~ "\"first_line\" (and the default value and usage changed accordingly). " -#~ "This should reduce confusion with the more common use of \"offset\" in " -#~ "the dis docs to refer to bytecode offsets." - -#~ msgid "" -#~ "`Issue #18678 `__: Corrected spwd struct " -#~ "member names in spwd module: sp_nam->sp_namp, and sp_pwd->sp_pwdp. The " -#~ "old names are kept as extra structseq members, for backward compatibility." -#~ msgstr "" -#~ "`Issue #18678 `__: Corrected spwd struct " -#~ "member names in spwd module: sp_nam->sp_namp, and sp_pwd->sp_pwdp. The " -#~ "old names are kept as extra structseq members, for backward compatibility." - -#~ msgid "" -#~ "`Issue #6157 `__: Fixed tkinter.Text." -#~ "debug(). tkinter.Text.bbox() now raises TypeError instead of TclError on " -#~ "wrong number of arguments. Original patch by Guilherme Polo." -#~ msgstr "" -#~ "`Issue #6157 `__: Fixed tkinter.Text." -#~ "debug(). tkinter.Text.bbox() now raises TypeError instead of TclError on " -#~ "wrong number of arguments. Original patch by Guilherme Polo." - -#~ msgid "" -#~ "`Issue #10197 `__: Rework subprocess." -#~ "get[status]output to use subprocess functionality and thus to work on " -#~ "Windows. Patch by Nick Coghlan" -#~ msgstr "" -#~ "`Issue #10197 `__: Rework subprocess." -#~ "get[status]output to use subprocess functionality and thus to work on " -#~ "Windows. Patch by Nick Coghlan" - -#~ msgid "" -#~ "`Issue #6160 `__: The bbox() method of " -#~ "tkinter.Spinbox now returns a tuple of integers instead of a string. " -#~ "Based on patch by Guilherme Polo." -#~ msgstr "" -#~ "`Issue #6160 `__: The bbox() method of " -#~ "tkinter.Spinbox now returns a tuple of integers instead of a string. " -#~ "Based on patch by Guilherme Polo." - -#~ msgid "" -#~ "`Issue #19403 `__: contextlib." -#~ "redirect_stdout is now reentrant" -#~ msgstr "" -#~ "`Issue #19403 `__: contextlib." -#~ "redirect_stdout is now reentrant" - -#~ msgid "" -#~ "`Issue #19286 `__: Directories in " -#~ "``package_data`` are no longer added to the filelist, preventing failure " -#~ "outlined in the ticket." -#~ msgstr "" -#~ "`Issue #19286 `__: Directories in " -#~ "``package_data`` are no longer added to the filelist, preventing failure " -#~ "outlined in the ticket." - -#~ msgid "" -#~ "`Issue #19480 `__: HTMLParser now accepts " -#~ "all valid start-tag names as defined by the HTML5 standard." -#~ msgstr "" -#~ "`Issue #19480 `__: HTMLParser now accepts " -#~ "all valid start-tag names as defined by the HTML5 standard." - -#~ msgid "" -#~ "`Issue #15114 `__: The html.parser module " -#~ "now raises a DeprecationWarning when the strict argument of HTMLParser or " -#~ "the HTMLParser.error method are used." -#~ msgstr "" -#~ "`Issue #15114 `__: The html.parser module " -#~ "now raises a DeprecationWarning when the strict argument of HTMLParser or " -#~ "the HTMLParser.error method are used." - -#~ msgid "" -#~ "`Issue #19410 `__: Undo the special-casing " -#~ "removal of '' for importlib.machinery.FileFinder." -#~ msgstr "" -#~ "`Issue #19410 `__: Undo the special-casing " -#~ "removal of '' for importlib.machinery.FileFinder." - -#~ msgid "" -#~ "`Issue #19424 `__: Fix the warnings module " -#~ "to accept filename containing surrogate characters." -#~ msgstr "" -#~ "`Issue #19424 `__: Fix the warnings module " -#~ "to accept filename containing surrogate characters." - -#~ msgid "" -#~ "`Issue #19435 `__: Fix directory traversal " -#~ "attack on CGIHttpRequestHandler." -#~ msgstr "" -#~ "`Issue #19435 `__: Fix directory traversal " -#~ "attack on CGIHttpRequestHandler." - -#~ msgid "" -#~ "`Issue #19227 `__: Remove pthread_atfork() " -#~ "handler. The handler was added to solve #18747 but has caused issues." -#~ msgstr "" -#~ "`Issue #19227 `__: Remove pthread_atfork() " -#~ "handler. The handler was added to solve #18747 but has caused issues." - -#~ msgid "" -#~ "`Issue #19420 `__: Fix reference leak in " -#~ "module initialization code of _hashopenssl.c" -#~ msgstr "" -#~ "`Issue #19420 `__: Fix reference leak in " -#~ "module initialization code of _hashopenssl.c" - -#~ msgid "" -#~ "`Issue #19329 `__: Optimized compiling " -#~ "charsets in regular expressions." -#~ msgstr "" -#~ "`Issue #19329 `__: Optimized compiling " -#~ "charsets in regular expressions." - -#~ msgid "" -#~ "`Issue #19227 `__: Try to fix deadlocks " -#~ "caused by re-seeding then OpenSSL pseudo-random number generator on " -#~ "fork()." -#~ msgstr "" -#~ "`Issue #19227 `__: Try to fix deadlocks " -#~ "caused by re-seeding then OpenSSL pseudo-random number generator on " -#~ "fork()." - -#~ msgid "" -#~ "`Issue #16037 `__: HTTPMessage." -#~ "readheaders() raises an HTTPException when more than 100 headers are " -#~ "read. Adapted from patch by Jyrki Pulliainen." -#~ msgstr "" -#~ "`Issue #16037 `__: HTTPMessage." -#~ "readheaders() raises an HTTPException when more than 100 headers are " -#~ "read. Adapted from patch by Jyrki Pulliainen." - -#~ msgid "" -#~ "`Issue #16040 `__: CVE-2013-1752: nntplib: " -#~ "Limit maximum line lengths to 2048 to prevent readline() calls from " -#~ "consuming too much memory. Patch by Jyrki Pulliainen." -#~ msgstr "" -#~ "`Issue #16040 `__: CVE-2013-1752: nntplib: " -#~ "Limit maximum line lengths to 2048 to prevent readline() calls from " -#~ "consuming too much memory. Patch by Jyrki Pulliainen." - -#~ msgid "" -#~ "`Issue #16041 `__: CVE-2013-1752: poplib: " -#~ "Limit maximum line lengths to 2048 to prevent readline() calls from " -#~ "consuming too much memory. Patch by Jyrki Pulliainen." -#~ msgstr "" -#~ "`Issue #16041 `__: CVE-2013-1752: poplib: " -#~ "Limit maximum line lengths to 2048 to prevent readline() calls from " -#~ "consuming too much memory. Patch by Jyrki Pulliainen." - -#~ msgid "" -#~ "`Issue #17997 `__: Change behavior of " -#~ "``ssl.match_hostname()`` to follow RFC 6125, for security reasons. It " -#~ "now doesn't match multiple wildcards nor wildcards inside IDN fragments." -#~ msgstr "" -#~ "`Issue #17997 `__: Change behavior of " -#~ "``ssl.match_hostname()`` to follow RFC 6125, for security reasons. It " -#~ "now doesn't match multiple wildcards nor wildcards inside IDN fragments." - -#~ msgid "" -#~ "`Issue #16039 `__: CVE-2013-1752: Change " -#~ "use of readline in imaplib module to limit line length. Patch by Emil " -#~ "Lind." -#~ msgstr "" -#~ "`Issue #16039 `__: CVE-2013-1752: Change " -#~ "use of readline in imaplib module to limit line length. Patch by Emil " -#~ "Lind." - -#~ msgid "" -#~ "`Issue #19330 `__: the unnecessary wrapper " -#~ "functions have been removed from the implementations of the new " -#~ "contextlib.redirect_stdout and contextlib.suppress context managers, " -#~ "which also ensures they provide reasonable help() output on instances" -#~ msgstr "" -#~ "`Issue #19330 `__: the unnecessary wrapper " -#~ "functions have been removed from the implementations of the new " -#~ "contextlib.redirect_stdout and contextlib.suppress context managers, " -#~ "which also ensures they provide reasonable help() output on instances" - -#~ msgid "" -#~ "`Issue #19393 `__: Fix symtable.symtable " -#~ "function to not be confused when there are functions or classes named " -#~ "\"top\"." -#~ msgstr "" -#~ "`Issue #19393 `__: Fix symtable.symtable " -#~ "function to not be confused when there are functions or classes named " -#~ "\"top\"." - -#~ msgid "" -#~ "`Issue #18685 `__: Restore re performance " -#~ "to pre-PEP 393 levels." -#~ msgstr "" -#~ "`Issue #18685 `__: Restore re performance " -#~ "to pre-PEP 393 levels." - -#~ msgid "" -#~ "`Issue #19339 `__: telnetlib module is now " -#~ "using time.monotonic() when available to compute timeout." -#~ msgstr "" -#~ "`Issue #19339 `__: telnetlib module is now " -#~ "using time.monotonic() when available to compute timeout." - -#~ msgid "" -#~ "`Issue #19399 `__: fix sporadic " -#~ "test_subprocess failure." -#~ msgstr "" -#~ "`Issue #19399 `__: fix sporadic " -#~ "test_subprocess failure." - -#~ msgid "" -#~ "`Issue #13234 `__: Fix os.listdir to work " -#~ "with extended paths on Windows. Patch by Santoso Wijaya." -#~ msgstr "" -#~ "`Issue #13234 `__: Fix os.listdir to work " -#~ "with extended paths on Windows. Patch by Santoso Wijaya." - -#~ msgid "" -#~ "`Issue #19375 `__: The site module adding " -#~ "a \"site-python\" directory to sys.path, if it exists, is now deprecated." -#~ msgstr "" -#~ "`Issue #19375 `__: The site module adding " -#~ "a \"site-python\" directory to sys.path, if it exists, is now deprecated." - -#~ msgid "" -#~ "`Issue #19379 `__: Lazily import linecache " -#~ "in the warnings module, to make startup with warnings faster until a " -#~ "warning gets printed." -#~ msgstr "" -#~ "`Issue #19379 `__: Lazily import linecache " -#~ "in the warnings module, to make startup with warnings faster until a " -#~ "warning gets printed." - -#~ msgid "" -#~ "`Issue #19288 `__: Fixed the \"in\" " -#~ "operator of dbm.gnu databases for string argument. Original patch by " -#~ "Arfrever Frehtes Taifersar Arahesis." -#~ msgstr "" -#~ "`Issue #19288 `__: Fixed the \"in\" " -#~ "operator of dbm.gnu databases for string argument. Original patch by " -#~ "Arfrever Frehtes Taifersar Arahesis." - -#~ msgid "" -#~ "`Issue #19287 `__: Fixed the \"in\" " -#~ "operator of dbm.ndbm databases for string argument. Original patch by " -#~ "Arfrever Frehtes Taifersar Arahesis." -#~ msgstr "" -#~ "`Issue #19287 `__: Fixed the \"in\" " -#~ "operator of dbm.ndbm databases for string argument. Original patch by " -#~ "Arfrever Frehtes Taifersar Arahesis." - -#~ msgid "" -#~ "`Issue #19327 `__: Fixed the working of " -#~ "regular expressions with too big charset." -#~ msgstr "" -#~ "`Issue #19327 `__: Fixed the working of " -#~ "regular expressions with too big charset." - -#~ msgid "" -#~ "`Issue #17400 `__: New 'is_global' " -#~ "attribute for ipaddress to tell if an address is allocated by IANA for " -#~ "global or private networks." -#~ msgstr "" -#~ "`Issue #17400 `__: New 'is_global' " -#~ "attribute for ipaddress to tell if an address is allocated by IANA for " -#~ "global or private networks." - -#~ msgid "" -#~ "`Issue #19350 `__: Increasing the test " -#~ "coverage of macurl2path. Patch by Colin Williams." -#~ msgstr "" -#~ "`Issue #19350 `__: Increasing the test " -#~ "coverage of macurl2path. Patch by Colin Williams." - -#~ msgid "" -#~ "`Issue #19365 `__: Optimized the parsing " -#~ "of long replacement string in re.sub*() functions." -#~ msgstr "" -#~ "`Issue #19365 `__: Optimized the parsing " -#~ "of long replacement string in re.sub*() functions." - -#~ msgid "" -#~ "`Issue #19352 `__: Fix unittest discovery " -#~ "when a module can be reached through several paths (e.g. under Debian/" -#~ "Ubuntu with virtualenv)." -#~ msgstr "" -#~ "`Issue #19352 `__: Fix unittest discovery " -#~ "when a module can be reached through several paths (e.g. under Debian/" -#~ "Ubuntu with virtualenv)." - -#~ msgid "" -#~ "`Issue #15207 `__: Fix mimetypes to read " -#~ "from correct part of Windows registry Original patch by Dave Chambers" -#~ msgstr "" -#~ "`Issue #15207 `__: Fix mimetypes to read " -#~ "from correct part of Windows registry Original patch by Dave Chambers" - -#~ msgid "" -#~ "`Issue #16595 `__: Add prlimit() to " -#~ "resource module." -#~ msgstr "" -#~ "`Issue #16595 `__: Add prlimit() to " -#~ "resource module." - -#~ msgid "" -#~ "`Issue #19324 `__: Expose Linux-specific " -#~ "constants in resource module." -#~ msgstr "" -#~ "`Issue #19324 `__: Expose Linux-specific " -#~ "constants in resource module." - -#~ msgid "" -#~ "`Issue #18527 `__: Upgrade internal copy " -#~ "of zlib to 1.2.8." -#~ msgstr "" -#~ "`Issue #18527 `__: Upgrade internal copy " -#~ "of zlib to 1.2.8." - -#~ msgid "" -#~ "`Issue #19274 `__: Add a filterfunc " -#~ "parameter to PyZipFile.writepy." -#~ msgstr "" -#~ "`Issue #19274 `__: Add a filterfunc " -#~ "parameter to PyZipFile.writepy." - -#~ msgid "" -#~ "`Issue #8964 `__: fix platform._sys_version " -#~ "to handle IronPython 2.6+. Patch by Martin Matusiak." -#~ msgstr "" -#~ "`Issue #8964 `__: fix platform._sys_version " -#~ "to handle IronPython 2.6+. Patch by Martin Matusiak." - -#~ msgid "" -#~ "`Issue #19413 `__: Restore pre-3.3 " -#~ "reload() semantics of re-finding modules." -#~ msgstr "" -#~ "`Issue #19413 `__: Restore pre-3.3 " -#~ "reload() semantics of re-finding modules." - -#~ msgid "" -#~ "`Issue #18958 `__: Improve error message " -#~ "for json.load(s) while passing a string that starts with a UTF-8 BOM." -#~ msgstr "" -#~ "`Issue #18958 `__: Improve error message " -#~ "for json.load(s) while passing a string that starts with a UTF-8 BOM." - -#~ msgid "" -#~ "`Issue #16038 `__: CVE-2013-1752: ftplib: " -#~ "Limit amount of data read by limiting the call to readline(). Original " -#~ "patch by Michał Jastrzębski and Giampaolo Rodola." -#~ msgstr "" -#~ "`Issue #16038 `__: CVE-2013-1752: ftplib: " -#~ "Limit amount of data read by limiting the call to readline(). Original " -#~ "patch by Michał Jastrzębski and Giampaolo Rodola." - -#~ msgid "" -#~ "`Issue #17087 `__: Improved the repr for " -#~ "regular expression match objects." -#~ msgstr "" -#~ "`Issue #17087 `__: Improved the repr for " -#~ "regular expression match objects." - -#~ msgid "" -#~ "`Issue #19664 `__: test_userdict's repr " -#~ "test no longer depends on the order of dict elements." -#~ msgstr "" -#~ "`Issue #19664 `__: test_userdict's repr " -#~ "test no longer depends on the order of dict elements." - -#~ msgid "" -#~ "`Issue #19440 `__: Clean up test_capi by " -#~ "removing an unnecessary __future__ import, converting from test_main to " -#~ "unittest.main, and running the _testcapi module tests as subTests of a " -#~ "unittest TestCase method." -#~ msgstr "" -#~ "`Issue #19440 `__: Clean up test_capi by " -#~ "removing an unnecessary __future__ import, converting from test_main to " -#~ "unittest.main, and running the _testcapi module tests as subTests of a " -#~ "unittest TestCase method." - -#~ msgid "" -#~ "`Issue #19378 `__: the main dis module " -#~ "tests are now run with both stdout redirection *and* passing an explicit " -#~ "file parameter" -#~ msgstr "" -#~ "`Issue #19378 `__: the main dis module " -#~ "tests are now run with both stdout redirection *and* passing an explicit " -#~ "file parameter" - -#~ msgid "" -#~ "`Issue #19378 `__: removed the not-" -#~ "actually-helpful assertInstructionMatches and " -#~ "assertBytecodeExactlyMatches helpers from bytecode_helper" -#~ msgstr "" -#~ "`Issue #19378 `__: removed the not-" -#~ "actually-helpful assertInstructionMatches and " -#~ "assertBytecodeExactlyMatches helpers from bytecode_helper" - -#~ msgid "" -#~ "`Issue #18702 `__: All skipped tests now " -#~ "reported as skipped." -#~ msgstr "" -#~ "`Issue #18702 `__: All skipped tests now " -#~ "reported as skipped." - -#~ msgid "" -#~ "`Issue #19439 `__: interpreter embedding " -#~ "tests are now executed on Windows (Patch by Zachary Ware)" -#~ msgstr "" -#~ "`Issue #19439 `__: interpreter embedding " -#~ "tests are now executed on Windows (Patch by Zachary Ware)" - -#~ msgid "" -#~ "`Issue #19085 `__: Added basic tests for " -#~ "all tkinter widget options." -#~ msgstr "" -#~ "`Issue #19085 `__: Added basic tests for " -#~ "all tkinter widget options." - -#~ msgid "" -#~ "`Issue #19384 `__: Fix test_py_compile for " -#~ "root user, patch by Claudiu Popa." -#~ msgstr "" -#~ "`Issue #19384 `__: Fix test_py_compile for " -#~ "root user, patch by Claudiu Popa." - -#~ msgid "" -#~ "`Issue #18326 `__: Clarify that list." -#~ "sort's arguments are keyword-only. Also, attempt to reduce confusion in " -#~ "the glossary by not saying there are different \"types\" of arguments and " -#~ "parameters." -#~ msgstr "" -#~ "`Issue #18326 `__: Clarify that list." -#~ "sort's arguments are keyword-only. Also, attempt to reduce confusion in " -#~ "the glossary by not saying there are different \"types\" of arguments and " -#~ "parameters." - -#~ msgid "" -#~ "`Issue #19358 `__: \"make clinic\" now " -#~ "runs the Argument Clinic preprocessor over all CPython source files." -#~ msgstr "" -#~ "`Issue #19358 `__: \"make clinic\" now " -#~ "runs the Argument Clinic preprocessor over all CPython source files." - -#~ msgid "" -#~ "`Issue #16632 `__: Enable DEP and ASLR on " -#~ "Windows." -#~ msgstr "" -#~ "`Issue #16632 `__: Enable DEP and ASLR on " -#~ "Windows." - -#~ msgid "" -#~ "`Issue #17791 `__: Drop PREFIX and " -#~ "EXEC_PREFIX definitions from PC/pyconfig.h" -#~ msgstr "" -#~ "`Issue #17791 `__: Drop PREFIX and " -#~ "EXEC_PREFIX definitions from PC/pyconfig.h" - -#~ msgid "" -#~ "`Issue #19550 `__: Implement Windows " -#~ "installer changes of PEP 453 (ensurepip)." -#~ msgstr "" -#~ "`Issue #19550 `__: Implement Windows " -#~ "installer changes of PEP 453 (ensurepip)." - -#~ msgid "" -#~ "`Issue #19520 `__: Fix compiler warning in " -#~ "the _sha3 module on 32bit Windows." -#~ msgstr "" -#~ "`Issue #19520 `__: Fix compiler warning in " -#~ "the _sha3 module on 32bit Windows." - -#~ msgid "" -#~ "`Issue #19356 `__: Avoid using a C " -#~ "variabled named \"_self\", it's a reserved word in some C compilers." -#~ msgstr "" -#~ "`Issue #19356 `__: Avoid using a C " -#~ "variabled named \"_self\", it's a reserved word in some C compilers." - -#~ msgid "" -#~ "`Issue #15792 `__: Correct build options " -#~ "on Win64. Patch by Jeremy Kloth." -#~ msgstr "" -#~ "`Issue #15792 `__: Correct build options " -#~ "on Win64. Patch by Jeremy Kloth." - -#~ msgid "" -#~ "`Issue #19373 `__: Apply upstream change " -#~ "to Tk 8.5.15 fixing OS X 10.9 screen refresh problem for OS X installer " -#~ "build." -#~ msgstr "" -#~ "`Issue #19373 `__: Apply upstream change " -#~ "to Tk 8.5.15 fixing OS X 10.9 screen refresh problem for OS X installer " -#~ "build." - -#~ msgid "" -#~ "`Issue #19649 `__: On OS X, the same set " -#~ "of file names are now installed in bin directories for all " -#~ "configurations: non-framework vs framework, and single arch vs universal " -#~ "builds. pythonx.y-32 is now always installed for 64-bit/32-bit universal " -#~ "builds. The obsolete and undocumented pythonw* symlinks are no longer " -#~ "installed anywhere." -#~ msgstr "" -#~ "`Issue #19649 `__: On OS X, the same set " -#~ "of file names are now installed in bin directories for all " -#~ "configurations: non-framework vs framework, and single arch vs universal " -#~ "builds. pythonx.y-32 is now always installed for 64-bit/32-bit universal " -#~ "builds. The obsolete and undocumented pythonw* symlinks are no longer " -#~ "installed anywhere." - -#~ msgid "" -#~ "`Issue #19553 `__: PEP 453 - \"make install" -#~ "\" and \"make altinstall\" now install or upgrade pip by default, using " -#~ "the bundled pip provided by the new ensurepip module. A new configure " -#~ "option, --with-ensurepip[=upgrade|install|no], is available to override " -#~ "the default ensurepip \"--upgrade\" option. The option can also be set " -#~ "with \"make [alt]install ENSUREPIP=[upgrade|install|no]\"." -#~ msgstr "" -#~ "`Issue #19553 `__: PEP 453 - \"make install" -#~ "\" and \"make altinstall\" now install or upgrade pip by default, using " -#~ "the bundled pip provided by the new ensurepip module. A new configure " -#~ "option, --with-ensurepip[=upgrade|install|no], is available to override " -#~ "the default ensurepip \"--upgrade\" option. The option can also be set " -#~ "with \"make [alt]install ENSUREPIP=[upgrade|install|no]\"." - -#~ msgid "" -#~ "`Issue #19551 `__: PEP 453 - the OS X " -#~ "installer now installs pip by default." -#~ msgstr "" -#~ "`Issue #19551 `__: PEP 453 - the OS X " -#~ "installer now installs pip by default." - -#~ msgid "" -#~ "`Issue #15663 `__: Revert OS X installer " -#~ "built-in Tcl/Tk support for 3.4.0b1. Some third-party projects, such as " -#~ "Matplotlib and PIL/Pillow, depended on being able to build with Tcl and " -#~ "Tk frameworks in /Library/Frameworks." -#~ msgstr "" -#~ "`Issue #15663 `__: Revert OS X installer " -#~ "built-in Tcl/Tk support for 3.4.0b1. Some third-party projects, such as " -#~ "Matplotlib and PIL/Pillow, depended on being able to build with Tcl and " -#~ "Tk frameworks in /Library/Frameworks." - -#~ msgid "" -#~ "`Issue #19730 `__: Argument Clinic now " -#~ "supports all the existing PyArg \"format units\" as legacy converters, as " -#~ "well as two new features: \"self converters\" and the \"version\" " -#~ "directive." -#~ msgstr "" -#~ "`Issue #19730 `__: Argument Clinic now " -#~ "supports all the existing PyArg \"format units\" as legacy converters, as " -#~ "well as two new features: \"self converters\" and the \"version\" " -#~ "directive." - -#~ msgid "" -#~ "`Issue #19552 `__: pyvenv now bootstraps " -#~ "pip into virtual environments by default (pass --without-pip to request " -#~ "the old behaviour)" -#~ msgstr "" -#~ "`Issue #19552 `__: pyvenv now bootstraps " -#~ "pip into virtual environments by default (pass --without-pip to request " -#~ "the old behaviour)" - -#~ msgid "" -#~ "`Issue #19390 `__: Argument Clinic no " -#~ "longer accepts malformed Python and C ids." -#~ msgstr "" -#~ "`Issue #19390 `__: Argument Clinic no " -#~ "longer accepts malformed Python and C ids." - -#~ msgid "Python 3.4.0 Alpha 4" -#~ msgstr "Python 3.4.0 Alpha 4" - -#~ msgid "" -#~ "`Issue #19301 `__: Give classes and " -#~ "functions that are explicitly marked global a global qualname." -#~ msgstr "" -#~ "`Issue #19301 `__: Give classes and " -#~ "functions that are explicitly marked global a global qualname." - -#~ msgid "" -#~ "`Issue #19279 `__: UTF-7 decoder no longer " -#~ "produces illegal strings." -#~ msgstr "" -#~ "`Issue #19279 `__: UTF-7 decoder no longer " -#~ "produces illegal strings." - -#~ msgid "" -#~ "`Issue #16612 `__: Add \"Argument Clinic" -#~ "\", a compile-time preprocessor for C files to generate argument parsing " -#~ "code. (See PEP 436.)" -#~ msgstr "" -#~ "`Issue #16612 `__: Add \"Argument Clinic" -#~ "\", a compile-time preprocessor for C files to generate argument parsing " -#~ "code. (See PEP 436.)" - -#~ msgid "" -#~ "`Issue #18810 `__: Shift stat calls in " -#~ "importlib.machinery.FileFinder such that the code is optimistic that if " -#~ "something exists in a directory named exactly like the possible package " -#~ "being searched for that it's in actuality a directory." -#~ msgstr "" -#~ "`Issue #18810 `__: Shift stat calls in " -#~ "importlib.machinery.FileFinder such that the code is optimistic that if " -#~ "something exists in a directory named exactly like the possible package " -#~ "being searched for that it's in actuality a directory." - -#~ msgid "" -#~ "`Issue #18416 `__: importlib.machinery." -#~ "PathFinder now treats '' as the cwd and importlib.machinery.FileFinder no " -#~ "longer special-cases '' to '.'. This leads to modules imported from cwd " -#~ "to now possess an absolute file path for __file__ (this does not affect " -#~ "modules specified by path on the CLI but it does affect -m/runpy). It " -#~ "also allows FileFinder to be more consistent by not having an edge case." -#~ msgstr "" -#~ "`Issue #18416 `__: importlib.machinery." -#~ "PathFinder now treats '' as the cwd and importlib.machinery.FileFinder no " -#~ "longer special-cases '' to '.'. This leads to modules imported from cwd " -#~ "to now possess an absolute file path for __file__ (this does not affect " -#~ "modules specified by path on the CLI but it does affect -m/runpy). It " -#~ "also allows FileFinder to be more consistent by not having an edge case." - -#~ msgid "" -#~ "`Issue #4555 `__: All exported C symbols " -#~ "are now prefixed with either \"Py\" or \"_Py\"." -#~ msgstr "" -#~ "`Issue #4555 `__: All exported C symbols " -#~ "are now prefixed with either \"Py\" or \"_Py\"." - -#~ msgid "" -#~ "`Issue #19219 `__: Speed up marshal." -#~ "loads(), and make pyc files slightly (5% to 10%) smaller." -#~ msgstr "" -#~ "`Issue #19219 `__: Speed up marshal." -#~ "loads(), and make pyc files slightly (5% to 10%) smaller." - -#~ msgid "" -#~ "`Issue #19221 `__: Upgrade Unicode " -#~ "database to version 6.3.0." -#~ msgstr "" -#~ "`Issue #19221 `__: Upgrade Unicode " -#~ "database to version 6.3.0." - -#~ msgid "" -#~ "`Issue #16742 `__: The result of the C " -#~ "callback PyOS_ReadlineFunctionPointer must now be a string allocated by " -#~ "PyMem_RawMalloc() or PyMem_RawRealloc() (or NULL if an error occurred), " -#~ "instead of a string allocated by PyMem_Malloc() or PyMem_Realloc()." -#~ msgstr "" -#~ "`Issue #16742 `__: The result of the C " -#~ "callback PyOS_ReadlineFunctionPointer must now be a string allocated by " -#~ "PyMem_RawMalloc() or PyMem_RawRealloc() (or NULL if an error occurred), " -#~ "instead of a string allocated by PyMem_Malloc() or PyMem_Realloc()." - -#~ msgid "" -#~ "`Issue #19199 `__: Remove ``PyThreadState." -#~ "tick_counter`` field" -#~ msgstr "" -#~ "`Issue #19199 `__: Remove ``PyThreadState." -#~ "tick_counter`` field" - -#~ msgid "" -#~ "`Issue #19087 `__: Improve bytearray " -#~ "allocation in order to allow cheap popping of data at the front (slice " -#~ "deletion)." -#~ msgstr "" -#~ "`Issue #19087 `__: Improve bytearray " -#~ "allocation in order to allow cheap popping of data at the front (slice " -#~ "deletion)." - -#~ msgid "" -#~ "`Issue #19014 `__: memoryview.cast() is " -#~ "now allowed on zero-length views." -#~ msgstr "" -#~ "`Issue #19014 `__: memoryview.cast() is " -#~ "now allowed on zero-length views." - -#~ msgid "" -#~ "`Issue #18690 `__: memoryview is now " -#~ "automatically registered with collections.abc.Sequence" -#~ msgstr "" -#~ "`Issue #18690 `__: memoryview is now " -#~ "automatically registered with collections.abc.Sequence" - -#~ msgid "" -#~ "`Issue #19078 `__: memoryview now " -#~ "correctly supports the reversed builtin (Patch by Claudiu Popa)" -#~ msgstr "" -#~ "`Issue #19078 `__: memoryview now " -#~ "correctly supports the reversed builtin (Patch by Claudiu Popa)" - -#~ msgid "" -#~ "`Issue #17457 `__: unittest test discovery " -#~ "now works with namespace packages. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`Issue #17457 `__: unittest test discovery " -#~ "now works with namespace packages. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`Issue #18235 `__: Fix the sysconfig " -#~ "variables LDSHARED and BLDSHARED under AIX. Patch by David Edelsohn." -#~ msgstr "" -#~ "`Issue #18235 `__: Fix the sysconfig " -#~ "variables LDSHARED and BLDSHARED under AIX. Patch by David Edelsohn." - -#~ msgid "" -#~ "`Issue #18606 `__: Add the new \"statistics" -#~ "\" module (PEP 450). Contributed by Steven D'Aprano." -#~ msgstr "" -#~ "`Issue #18606 `__: Add the new \"statistics" -#~ "\" module (PEP 450). Contributed by Steven D'Aprano." - -#~ msgid "" -#~ "`Issue #12866 `__: The audioop module now " -#~ "supports 24-bit samples." -#~ msgstr "" -#~ "`Issue #12866 `__: The audioop module now " -#~ "supports 24-bit samples." - -#~ msgid "" -#~ "`Issue #19254 `__: Provide an optimized " -#~ "Python implementation of pbkdf2_hmac." -#~ msgstr "" -#~ "`Issue #19254 `__: Provide an optimized " -#~ "Python implementation of pbkdf2_hmac." - -#~ msgid "" -#~ "`Issue #19262 `__: Initial check in of the " -#~ "'asyncio' package (a.k.a. Tulip, a.k.a. PEP 3156). There are no docs " -#~ "yet, and the PEP is slightly out of date with the code. This module will " -#~ "have *provisional* status in Python 3.4." -#~ msgstr "" -#~ "`Issue #19262 `__: Initial check in of the " -#~ "'asyncio' package (a.k.a. Tulip, a.k.a. PEP 3156). There are no docs " -#~ "yet, and the PEP is slightly out of date with the code. This module will " -#~ "have *provisional* status in Python 3.4." - -#~ msgid "" -#~ "`Issue #19276 `__: Fixed the wave module " -#~ "on 64-bit big-endian platforms." -#~ msgstr "" -#~ "`Issue #19276 `__: Fixed the wave module " -#~ "on 64-bit big-endian platforms." - -#~ msgid "" -#~ "`Issue #19266 `__: Rename the new-in-3.4 " -#~ "``contextlib.ignore`` context manager to ``contextlib.suppress`` in order " -#~ "to be more consistent with existing descriptions of that operation " -#~ "elsewhere in the language and standard library documentation (Patch by " -#~ "Zero Piraeus)." -#~ msgstr "" -#~ "`Issue #19266 `__: Rename the new-in-3.4 " -#~ "``contextlib.ignore`` context manager to ``contextlib.suppress`` in order " -#~ "to be more consistent with existing descriptions of that operation " -#~ "elsewhere in the language and standard library documentation (Patch by " -#~ "Zero Piraeus)." - -#~ msgid "" -#~ "`Issue #18891 `__: Completed the new email " -#~ "package (provisional) API additions by adding new classes EmailMessage, " -#~ "MIMEPart, and ContentManager." -#~ msgstr "" -#~ "`Issue #18891 `__: Completed the new email " -#~ "package (provisional) API additions by adding new classes EmailMessage, " -#~ "MIMEPart, and ContentManager." - -#~ msgid "" -#~ "`Issue #18281 `__: Unused stat constants " -#~ "removed from `tarfile`." -#~ msgstr "" -#~ "`Issue #18281 `__: Unused stat constants " -#~ "removed from `tarfile`." - -#~ msgid "" -#~ "`Issue #18999 `__: Multiprocessing now " -#~ "supports 'contexts' with the same API as the module, but bound to " -#~ "specified start methods." -#~ msgstr "" -#~ "`Issue #18999 `__: Multiprocessing now " -#~ "supports 'contexts' with the same API as the module, but bound to " -#~ "specified start methods." - -#~ msgid "" -#~ "`Issue #18468 `__: The re.split, re." -#~ "findall, and re.sub functions and the group() and groups() methods of " -#~ "match object now always return a string or a bytes object." -#~ msgstr "" -#~ "`Issue #18468 `__: The re.split, re." -#~ "findall, and re.sub functions and the group() and groups() methods of " -#~ "match object now always return a string or a bytes object." - -#~ msgid "" -#~ "`Issue #18725 `__: The textwrap module now " -#~ "supports truncating multiline text." -#~ msgstr "" -#~ "`Issue #18725 `__: The textwrap module now " -#~ "supports truncating multiline text." - -#~ msgid "" -#~ "`Issue #18776 `__: atexit callbacks now " -#~ "display their full traceback when they raise an exception." -#~ msgstr "" -#~ "`Issue #18776 `__: atexit callbacks now " -#~ "display their full traceback when they raise an exception." - -#~ msgid "" -#~ "`Issue #17827 `__: Add the missing " -#~ "documentation for ``codecs.encode`` and ``codecs.decode``." -#~ msgstr "" -#~ "`Issue #17827 `__: Add the missing " -#~ "documentation for ``codecs.encode`` and ``codecs.decode``." - -#~ msgid "" -#~ "`Issue #19218 `__: Rename collections.abc " -#~ "to _collections_abc in order to speed up interpreter start." -#~ msgstr "" -#~ "`Issue #19218 `__: Rename collections.abc " -#~ "to _collections_abc in order to speed up interpreter start." - -#~ msgid "" -#~ "`Issue #18582 `__: Add 'pbkdf2_hmac' to " -#~ "the hashlib module. It implements PKCS#5 password-based key derivation " -#~ "functions with HMAC as pseudorandom function." -#~ msgstr "" -#~ "`Issue #18582 `__: Add 'pbkdf2_hmac' to " -#~ "the hashlib module. It implements PKCS#5 password-based key derivation " -#~ "functions with HMAC as pseudorandom function." - -#~ msgid "" -#~ "`Issue #19131 `__: The aifc module now " -#~ "correctly reads and writes sampwidth of compressed streams." -#~ msgstr "" -#~ "`Issue #19131 `__: The aifc module now " -#~ "correctly reads and writes sampwidth of compressed streams." - -#~ msgid "" -#~ "`Issue #19209 `__: Remove import of " -#~ "copyreg from the os module to speed up interpreter startup. stat_result " -#~ "and statvfs_result are now hard-coded to reside in the os module." -#~ msgstr "" -#~ "`Issue #19209 `__: Remove import of " -#~ "copyreg from the os module to speed up interpreter startup. stat_result " -#~ "and statvfs_result are now hard-coded to reside in the os module." - -#~ msgid "" -#~ "`Issue #19205 `__: Don't import the 're' " -#~ "module in site and sysconfig module to speed up interpreter start." -#~ msgstr "" -#~ "`Issue #19205 `__: Don't import the 're' " -#~ "module in site and sysconfig module to speed up interpreter start." - -#~ msgid "" -#~ "`Issue #9548 `__: Add a minimal " -#~ "\"_bootlocale\" module that is imported by the _io module instead of the " -#~ "full locale module." -#~ msgstr "" -#~ "`Issue #9548 `__: Add a minimal " -#~ "\"_bootlocale\" module that is imported by the _io module instead of the " -#~ "full locale module." - -#~ msgid "" -#~ "`Issue #18764 `__: Remove the 'print' " -#~ "alias for the PDB 'p' command so that it no longer shadows the print " -#~ "function." -#~ msgstr "" -#~ "`Issue #18764 `__: Remove the 'print' " -#~ "alias for the PDB 'p' command so that it no longer shadows the print " -#~ "function." - -#~ msgid "" -#~ "`Issue #19158 `__: A rare race in " -#~ "BoundedSemaphore could allow .release() too often." -#~ msgstr "" -#~ "`Issue #19158 `__: A rare race in " -#~ "BoundedSemaphore could allow .release() too often." - -#~ msgid "" -#~ "`Issue #15805 `__: Add contextlib." -#~ "redirect_stdout()." -#~ msgstr "" -#~ "`Issue #15805 `__: Add contextlib." -#~ "redirect_stdout()." - -#~ msgid "" -#~ "`Issue #18716 `__: Deprecate the formatter " -#~ "module." -#~ msgstr "" -#~ "`Issue #18716 `__: Deprecate the formatter " -#~ "module." - -#~ msgid "" -#~ "`Issue #10712 `__: 2to3 has a new \"asserts" -#~ "\" fixer that replaces deprecated names of unittest methods (e.g. " -#~ "failUnlessEqual -> assertEqual)." -#~ msgstr "" -#~ "`Issue #10712 `__: 2to3 has a new \"asserts" -#~ "\" fixer that replaces deprecated names of unittest methods (e.g. " -#~ "failUnlessEqual -> assertEqual)." - -#~ msgid "" -#~ "`Issue #17839 `__: base64.decodebytes and " -#~ "base64.encodebytes now accept any object that exports a 1 dimensional " -#~ "array of bytes (this means the same is now also true for base64_codec)" -#~ msgstr "" -#~ "`Issue #17839 `__: base64.decodebytes and " -#~ "base64.encodebytes now accept any object that exports a 1 dimensional " -#~ "array of bytes (this means the same is now also true for base64_codec)" - -#~ msgid "" -#~ "`Issue #19132 `__: The pprint module now " -#~ "supports compact mode." -#~ msgstr "" -#~ "`Issue #19132 `__: The pprint module now " -#~ "supports compact mode." - -#~ msgid "" -#~ "`Issue #19137 `__: The pprint module now " -#~ "correctly formats instances of set and frozenset subclasses." -#~ msgstr "" -#~ "`Issue #19137 `__: The pprint module now " -#~ "correctly formats instances of set and frozenset subclasses." - -#~ msgid "" -#~ "`Issue #10042 `__: functools." -#~ "total_ordering now correctly handles NotImplemented being returned by the " -#~ "underlying comparison function (Patch by Katie Miller)" -#~ msgstr "" -#~ "`Issue #10042 `__: functools." -#~ "total_ordering now correctly handles NotImplemented being returned by the " -#~ "underlying comparison function (Patch by Katie Miller)" - -#~ msgid "" -#~ "`Issue #19092 `__: contextlib.ExitStack " -#~ "now correctly reraises exceptions from the __exit__ callbacks of inner " -#~ "context managers (Patch by Hrvoje Nikšić)" -#~ msgstr "" -#~ "`Issue #19092 `__: contextlib.ExitStack " -#~ "now correctly reraises exceptions from the __exit__ callbacks of inner " -#~ "context managers (Patch by Hrvoje Nikšić)" - -#~ msgid "" -#~ "`Issue #12641 `__: Avoid passing \"-mno-" -#~ "cygwin\" to the mingw32 compiler, except when necessary. Patch by Oscar " -#~ "Benjamin." -#~ msgstr "" -#~ "`Issue #12641 `__: Avoid passing \"-mno-" -#~ "cygwin\" to the mingw32 compiler, except when necessary. Patch by Oscar " -#~ "Benjamin." - -#~ msgid "" -#~ "`Issue #5845 `__: In site.py, only load " -#~ "readline history from ~/.python_history if no history has been read " -#~ "already. This avoids double writes to the history file at shutdown." -#~ msgstr "" -#~ "`Issue #5845 `__: In site.py, only load " -#~ "readline history from ~/.python_history if no history has been read " -#~ "already. This avoids double writes to the history file at shutdown." - -#~ msgid "" -#~ "`Issue #19095 `__: SSLSocket.getpeercert() " -#~ "now raises ValueError when the SSL handshake hasn't been done." -#~ msgstr "" -#~ "`Issue #19095 `__: SSLSocket.getpeercert() " -#~ "now raises ValueError when the SSL handshake hasn't been done." - -#~ msgid "" -#~ "`Issue #4366 `__: Fix building extensions " -#~ "on all platforms when --enable-shared is used." -#~ msgstr "" -#~ "`Issue #4366 `__: Fix building extensions " -#~ "on all platforms when --enable-shared is used." - -#~ msgid "" -#~ "`Issue #19030 `__: Fixed `inspect." -#~ "getmembers` and `inspect.classify_class_attrs` to attempt activating " -#~ "descriptors before falling back to a __dict__ search for faulty " -#~ "descriptors. `inspect.classify_class_attrs` no longer returns Attributes " -#~ "whose home class is None." -#~ msgstr "" -#~ "`Issue #19030 `__: Fixed `inspect." -#~ "getmembers` and `inspect.classify_class_attrs` to attempt activating " -#~ "descriptors before falling back to a __dict__ search for faulty " -#~ "descriptors. `inspect.classify_class_attrs` no longer returns Attributes " -#~ "whose home class is None." - -#~ msgid "" -#~ "`Issue #1772673 `__: The type of `char*` " -#~ "arguments now changed to `const char*`." -#~ msgstr "" -#~ "`Issue #1772673 `__: The type of `char*` " -#~ "arguments now changed to `const char*`." - -#~ msgid "" -#~ "`Issue #16129 `__: Added a " -#~ "`Py_SetStandardStreamEncoding` pre-initialization API to allow embedding " -#~ "applications like Blender to force a particular encoding and error " -#~ "handler for the standard IO streams (initial patch by Bastien Montagne)" -#~ msgstr "" -#~ "`Issue #16129 `__: Added a " -#~ "`Py_SetStandardStreamEncoding` pre-initialization API to allow embedding " -#~ "applications like Blender to force a particular encoding and error " -#~ "handler for the standard IO streams (initial patch by Bastien Montagne)" - -#~ msgid "" -#~ "`Issue #19275 `__: Fix test_site on AMD64 " -#~ "Snow Leopard" -#~ msgstr "" -#~ "`Issue #19275 `__: Fix test_site on AMD64 " -#~ "Snow Leopard" - -#~ msgid "" -#~ "`Issue #14407 `__: Fix unittest test " -#~ "discovery in test_concurrent_futures." -#~ msgstr "" -#~ "`Issue #14407 `__: Fix unittest test " -#~ "discovery in test_concurrent_futures." - -#~ msgid "" -#~ "`Issue #18919 `__: Unified and extended " -#~ "tests for audio modules: aifc, sunau and wave." -#~ msgstr "" -#~ "`Issue #18919 `__: Unified and extended " -#~ "tests for audio modules: aifc, sunau and wave." - -#~ msgid "" -#~ "`Issue #18714 `__: Added tests for ``pdb." -#~ "find_function()``." -#~ msgstr "" -#~ "`Issue #18714 `__: Added tests for ``pdb." -#~ "find_function()``." - -#~ msgid "" -#~ "`Issue #18758 `__: Fixed and improved " -#~ "cross-references." -#~ msgstr "" -#~ "`Issue #18758 `__: Fixed and improved " -#~ "cross-references." - -#~ msgid "" -#~ "`Issue #18972 `__: Modernize email " -#~ "examples and use the argparse module in them." -#~ msgstr "" -#~ "`Issue #18972 `__: Modernize email " -#~ "examples and use the argparse module in them." - -#~ msgid "" -#~ "`Issue #19130 `__: Correct PCbuild/readme." -#~ "txt, Python 3.3 and 3.4 require VS 2010." -#~ msgstr "" -#~ "`Issue #19130 `__: Correct PCbuild/readme." -#~ "txt, Python 3.3 and 3.4 require VS 2010." - -#~ msgid "" -#~ "`Issue #15663 `__: Update OS X 10.6+ " -#~ "installer to use Tcl/Tk 8.5.15." -#~ msgstr "" -#~ "`Issue #15663 `__: Update OS X 10.6+ " -#~ "installer to use Tcl/Tk 8.5.15." - -#~ msgid "" -#~ "`Issue #14499 `__: Fix several problems " -#~ "with OS X universal build support:" -#~ msgstr "" -#~ "`Issue #14499 `__: Fix several problems " -#~ "with OS X universal build support:" - -#~ msgid "" -#~ "`Issue #19019 `__: Change the OS X " -#~ "installer build script to use CFLAGS instead of OPT for special build " -#~ "options. By setting OPT, some compiler-specific options like -fwrapv " -#~ "were overridden and thus not used, which could result in broken " -#~ "interpreters when building with clang." -#~ msgstr "" -#~ "`Issue #19019 `__: Change the OS X " -#~ "installer build script to use CFLAGS instead of OPT for special build " -#~ "options. By setting OPT, some compiler-specific options like -fwrapv " -#~ "were overridden and thus not used, which could result in broken " -#~ "interpreters when building with clang." - -#~ msgid "Python 3.4.0 Alpha 3" -#~ msgstr "Python 3.4.0 Alpha 3" - -#~ msgid "Release date: 2013-09-29" -#~ msgstr "Date de sortie : 29-09-2013" - -#~ msgid "" -#~ "`Issue #18818 `__: The \"encodingname\" " -#~ "part of PYTHONIOENCODING is now optional." -#~ msgstr "" -#~ "`Issue #18818 `__: The \"encodingname\" " -#~ "part of PYTHONIOENCODING is now optional." - -#~ msgid "" -#~ "`Issue #19098 `__: Prevent overflow in the " -#~ "compiler when the recursion limit is set absurdly high." -#~ msgstr "" -#~ "`Issue #19098 `__: Prevent overflow in the " -#~ "compiler when the recursion limit is set absurdly high." - -#~ msgid "" -#~ "`Issue #18929 `__: `inspect." -#~ "classify_class_attrs()` now correctly finds class attributes returned by " -#~ "`dir()` that are located in the metaclass." -#~ msgstr "" -#~ "`Issue #18929 `__: `inspect." -#~ "classify_class_attrs()` now correctly finds class attributes returned by " -#~ "`dir()` that are located in the metaclass." - -#~ msgid "" -#~ "`Issue #18950 `__: Fix miscellaneous bugs " -#~ "in the sunau module. Au_read.readframes() now updates current file " -#~ "position and reads correct number of frames from multichannel stream. " -#~ "Au_write.writeframesraw() now correctly updates current file position. " -#~ "Au_read.getnframes() now returns an integer (as in Python 2). Au_read " -#~ "and Au_write now correctly works with file object if start file position " -#~ "is not a zero." -#~ msgstr "" -#~ "`Issue #18950 `__: Fix miscellaneous bugs " -#~ "in the sunau module. Au_read.readframes() now updates current file " -#~ "position and reads correct number of frames from multichannel stream. " -#~ "Au_write.writeframesraw() now correctly updates current file position. " -#~ "Au_read.getnframes() now returns an integer (as in Python 2). Au_read " -#~ "and Au_write now correctly works with file object if start file position " -#~ "is not a zero." - -#~ msgid "" -#~ "`Issue #18594 `__: The fast path for " -#~ "collections.Counter() was never taken due to an over-restrictive type " -#~ "check." -#~ msgstr "" -#~ "`Issue #18594 `__: The fast path for " -#~ "collections.Counter() was never taken due to an over-restrictive type " -#~ "check." - -#~ msgid "" -#~ "`Issue #19053 `__: ZipExtFile.read1() with " -#~ "non-zero argument no more returns empty bytes until end of data." -#~ msgstr "" -#~ "`Issue #19053 `__: ZipExtFile.read1() with " -#~ "non-zero argument no more returns empty bytes until end of data." - -#~ msgid "" -#~ "`Issue #18996 `__: TestCase.assertEqual() " -#~ "now more cleverly shorten differing strings in error report." -#~ msgstr "" -#~ "`Issue #18996 `__: TestCase.assertEqual() " -#~ "now more cleverly shorten differing strings in error report." - -#~ msgid "" -#~ "`Issue #19034 `__: repr() for tkinter." -#~ "Tcl_Obj now exposes string reperesentation." -#~ msgstr "" -#~ "`Issue #19034 `__: repr() for tkinter." -#~ "Tcl_Obj now exposes string reperesentation." - -#~ msgid "" -#~ "`Issue #18978 `__: ``urllib.request." -#~ "Request`` now allows the method to be indicated on the class and no " -#~ "longer sets it to None in ``__init__``." -#~ msgstr "" -#~ "`Issue #18978 `__: ``urllib.request." -#~ "Request`` now allows the method to be indicated on the class and no " -#~ "longer sets it to None in ``__init__``." - -#~ msgid "" -#~ "`Issue #18626 `__: the inspect module now " -#~ "offers a basic command line introspection interface (Initial patch by " -#~ "Claudiu Popa)" -#~ msgstr "" -#~ "`Issue #18626 `__: the inspect module now " -#~ "offers a basic command line introspection interface (Initial patch by " -#~ "Claudiu Popa)" - -#~ msgid "" -#~ "`Issue #3015 `__: Fixed tkinter with " -#~ "wantobject=False. Any Tcl command call returned empty string." -#~ msgstr "" -#~ "`Issue #3015 `__: Fixed tkinter with " -#~ "wantobject=False. Any Tcl command call returned empty string." - -#~ msgid "" -#~ "`Issue #19037 `__: The mailbox module now " -#~ "makes all changes to maildir files before moving them into place, to " -#~ "avoid race conditions with other programs that may be accessing the " -#~ "maildir directory." -#~ msgstr "" -#~ "`Issue #19037 `__: The mailbox module now " -#~ "makes all changes to maildir files before moving them into place, to " -#~ "avoid race conditions with other programs that may be accessing the " -#~ "maildir directory." - -#~ msgid "" -#~ "`Issue #14984 `__: On POSIX systems, when " -#~ "netrc is called without a filename argument (and therefore is reading the " -#~ "user's $HOME/.netrc file), it now enforces the same security rules as " -#~ "typical ftp clients: the .netrc file must be owned by the user that owns " -#~ "the process and must not be readable by any other user." -#~ msgstr "" -#~ "`Issue #14984 `__: On POSIX systems, when " -#~ "netrc is called without a filename argument (and therefore is reading the " -#~ "user's $HOME/.netrc file), it now enforces the same security rules as " -#~ "typical ftp clients: the .netrc file must be owned by the user that owns " -#~ "the process and must not be readable by any other user." - -#~ msgid "" -#~ "`Issue #18873 `__: The tokenize module now " -#~ "detects Python source code encoding only in comment lines." -#~ msgstr "" -#~ "`Issue #18873 `__: The tokenize module now " -#~ "detects Python source code encoding only in comment lines." - -#~ msgid "" -#~ "`Issue #17764 `__: Enable http.server to " -#~ "bind to a user specified network interface. Patch contributed by Malte " -#~ "Swart." -#~ msgstr "" -#~ "`Issue #17764 `__: Enable http.server to " -#~ "bind to a user specified network interface. Patch contributed by Malte " -#~ "Swart." - -#~ msgid "" -#~ "`Issue #18937 `__: Add an assertLogs() " -#~ "context manager to unittest.TestCase to ensure that a block of code emits " -#~ "a message using the logging module." -#~ msgstr "" -#~ "`Issue #18937 `__: Add an assertLogs() " -#~ "context manager to unittest.TestCase to ensure that a block of code emits " -#~ "a message using the logging module." - -#~ msgid "" -#~ "`Issue #17324 `__: Fix http.server's " -#~ "request handling case on trailing '/'. Patch contributed by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #17324 `__: Fix http.server's " -#~ "request handling case on trailing '/'. Patch contributed by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #19018 `__: The heapq.merge() " -#~ "function no longer suppresses IndexError in the underlying iterables." -#~ msgstr "" -#~ "`Issue #19018 `__: The heapq.merge() " -#~ "function no longer suppresses IndexError in the underlying iterables." - -#~ msgid "" -#~ "`Issue #18784 `__: The uuid module no " -#~ "longer attempts to load libc via ctypes.CDLL if all the necessary " -#~ "functions have already been found in libuuid. Patch by Evgeny Sologubov." -#~ msgstr "" -#~ "`Issue #18784 `__: The uuid module no " -#~ "longer attempts to load libc via ctypes.CDLL if all the necessary " -#~ "functions have already been found in libuuid. Patch by Evgeny Sologubov." - -#~ msgid "" -#~ "`Issue #1565525 `__: New function " -#~ "``traceback.clear_frames`` will clear the local variables of all the " -#~ "stack frames referenced by a traceback object." -#~ msgstr "" -#~ "`Issue #1565525 `__: New function " -#~ "``traceback.clear_frames`` will clear the local variables of all the " -#~ "stack frames referenced by a traceback object." - -#~ msgid "" -#~ "`Issue #18952 `__: Fix regression in " -#~ "support data downloads introduced when test.support was converted to a " -#~ "package. Regression noticed by Zachary Ware." -#~ msgstr "" -#~ "`Issue #18952 `__: Fix regression in " -#~ "support data downloads introduced when test.support was converted to a " -#~ "package. Regression noticed by Zachary Ware." - -#~ msgid "" -#~ "`Issue #18873 `__: IDLE now detects Python " -#~ "source code encoding only in comment lines." -#~ msgstr "" -#~ "`Issue #18873 `__: IDLE now detects Python " -#~ "source code encoding only in comment lines." - -#~ msgid "" -#~ "`Issue #18988 `__: The \"Tab\" key now " -#~ "works when a word is already autocompleted." -#~ msgstr "" -#~ "`Issue #18988 `__: The \"Tab\" key now " -#~ "works when a word is already autocompleted." - -#~ msgid "" -#~ "`Issue #17003 `__: Unified the size " -#~ "argument names in the io module with common practice." -#~ msgstr "" -#~ "`Issue #17003 `__: Unified the size " -#~ "argument names in the io module with common practice." - -#~ msgid "" -#~ "`Issue #18596 `__: Support the use of " -#~ "address sanity checking in recent versions of clang and GCC by " -#~ "appropriately marking known false alarms in the small object allocator. " -#~ "Patch contributed by Dhiru Kholia." -#~ msgstr "" -#~ "`Issue #18596 `__: Support the use of " -#~ "address sanity checking in recent versions of clang and GCC by " -#~ "appropriately marking known false alarms in the small object allocator. " -#~ "Patch contributed by Dhiru Kholia." - -#~ msgid "" -#~ "`Issue #18873 `__: 2to3 and the " -#~ "findnocoding.py script now detect Python source code encoding only in " -#~ "comment lines." -#~ msgstr "" -#~ "`Issue #18873 `__: 2to3 and the " -#~ "findnocoding.py script now detect Python source code encoding only in " -#~ "comment lines." - -#~ msgid "Python 3.4.0 Alpha 2" -#~ msgstr "Python 3.4.0 Alpha 2" - -#~ msgid "Release date: 2013-09-09" -#~ msgstr "Date de sortie : 09-09-2013" - -#~ msgid "" -#~ "`Issue #18942 `__: sys._debugmallocstats() " -#~ "output was damaged on Windows." -#~ msgstr "" -#~ "`Issue #18942 `__: sys._debugmallocstats() " -#~ "output was damaged on Windows." - -#~ msgid "" -#~ "`Issue #18571 `__: Implementation of the " -#~ "PEP 446: file descriptors and file handles are now created non-" -#~ "inheritable; add functions os.get/set_inheritable(), os.get/" -#~ "set_handle_inheritable() and socket.socket.get/set_inheritable()." -#~ msgstr "" -#~ "`Issue #18571 `__: Implementation of the " -#~ "PEP 446: file descriptors and file handles are now created non-" -#~ "inheritable; add functions os.get/set_inheritable(), os.get/" -#~ "set_handle_inheritable() and socket.socket.get/set_inheritable()." - -#~ msgid "" -#~ "`Issue #11619 `__: The parser and the " -#~ "import machinery do not encode Unicode filenames anymore on Windows." -#~ msgstr "" -#~ "`Issue #11619 `__: The parser and the " -#~ "import machinery do not encode Unicode filenames anymore on Windows." - -#~ msgid "" -#~ "`Issue #18808 `__: Non-daemon threads are " -#~ "now automatically joined when a sub-interpreter is shutdown (it would " -#~ "previously dump a fatal error)." -#~ msgstr "" -#~ "`Issue #18808 `__: Non-daemon threads are " -#~ "now automatically joined when a sub-interpreter is shutdown (it would " -#~ "previously dump a fatal error)." - -#~ msgid "" -#~ "`Issue #18774 `__: Remove last bits of GNU " -#~ "PTH thread code and thread_pth.h." -#~ msgstr "" -#~ "`Issue #18774 `__: Remove last bits of GNU " -#~ "PTH thread code and thread_pth.h." - -#~ msgid "" -#~ "`Issue #18771 `__: Add optimization to set " -#~ "object lookups to reduce the cost of hash collisions. The core idea is " -#~ "to inspect a second key/hash pair for each cache line retrieved." -#~ msgstr "" -#~ "`Issue #18771 `__: Add optimization to set " -#~ "object lookups to reduce the cost of hash collisions. The core idea is " -#~ "to inspect a second key/hash pair for each cache line retrieved." - -#~ msgid "" -#~ "`Issue #16105 `__: When a signal handler " -#~ "fails to write to the file descriptor registered with ``signal." -#~ "set_wakeup_fd()``, report an exception instead of ignoring the error." -#~ msgstr "" -#~ "`Issue #16105 `__: When a signal handler " -#~ "fails to write to the file descriptor registered with ``signal." -#~ "set_wakeup_fd()``, report an exception instead of ignoring the error." - -#~ msgid "" -#~ "`Issue #18722 `__: Remove uses of the " -#~ "\"register\" keyword in C code." -#~ msgstr "" -#~ "`Issue #18722 `__: Remove uses of the " -#~ "\"register\" keyword in C code." - -#~ msgid "" -#~ "`Issue #18667 `__: Add missing " -#~ "\"HAVE_FCHOWNAT\" symbol to posix._have_functions." -#~ msgstr "" -#~ "`Issue #18667 `__: Add missing " -#~ "\"HAVE_FCHOWNAT\" symbol to posix._have_functions." - -#~ msgid "" -#~ "`Issue #16499 `__: Add command line option " -#~ "for isolated mode." -#~ msgstr "" -#~ "`Issue #16499 `__: Add command line option " -#~ "for isolated mode." - -#~ msgid "" -#~ "`Issue #15301 `__: Parsing fd, uid, and " -#~ "gid parameters for builtins in Modules/posixmodule.c is now far more " -#~ "robust." -#~ msgstr "" -#~ "`Issue #15301 `__: Parsing fd, uid, and " -#~ "gid parameters for builtins in Modules/posixmodule.c is now far more " -#~ "robust." - -#~ msgid "" -#~ "`Issue #18368 `__: PyOS_StdioReadline() no " -#~ "longer leaks memory when realloc() fail." -#~ msgstr "" -#~ "`Issue #18368 `__: PyOS_StdioReadline() no " -#~ "longer leaks memory when realloc() fail." - -#~ msgid "" -#~ "`Issue #17934 `__: Add a clear() method to " -#~ "frame objects, to help clean up expensive details (local variables) and " -#~ "break reference cycles." -#~ msgstr "" -#~ "`Issue #17934 `__: Add a clear() method to " -#~ "frame objects, to help clean up expensive details (local variables) and " -#~ "break reference cycles." - -#~ msgid "" -#~ "`Issue #18780 `__: %-formatting codes %d, " -#~ "%i, and %u now treat int-subclasses as int (displays value of int-" -#~ "subclass instead of str(int-subclass) )." -#~ msgstr "" -#~ "`Issue #18780 `__: %-formatting codes %d, " -#~ "%i, and %u now treat int-subclasses as int (displays value of int-" -#~ "subclass instead of str(int-subclass) )." - -#~ msgid "" -#~ "`Issue #18808 `__: Thread.join() now waits " -#~ "for the underlying thread state to be destroyed before returning. This " -#~ "prevents unpredictable aborts in Py_EndInterpreter() when some non-daemon " -#~ "threads are still running." -#~ msgstr "" -#~ "`Issue #18808 `__: Thread.join() now waits " -#~ "for the underlying thread state to be destroyed before returning. This " -#~ "prevents unpredictable aborts in Py_EndInterpreter() when some non-daemon " -#~ "threads are still running." - -#~ msgid "" -#~ "`Issue #18458 `__: Prevent crashes with " -#~ "newer versions of libedit. Its readline emulation has changed from 0-" -#~ "based indexing to 1-based like gnu readline." -#~ msgstr "" -#~ "`Issue #18458 `__: Prevent crashes with " -#~ "newer versions of libedit. Its readline emulation has changed from 0-" -#~ "based indexing to 1-based like gnu readline." - -#~ msgid "" -#~ "`Issue #18852 `__: Handle case of " -#~ "``readline.__doc__`` being ``None`` in the new readline activation code " -#~ "in ``site.py``." -#~ msgstr "" -#~ "`Issue #18852 `__: Handle case of " -#~ "``readline.__doc__`` being ``None`` in the new readline activation code " -#~ "in ``site.py``." - -#~ msgid "" -#~ "`Issue #18672 `__: Fixed format specifiers " -#~ "for Py_ssize_t in debugging output in the _sre module." -#~ msgstr "" -#~ "`Issue #18672 `__: Fixed format specifiers " -#~ "for Py_ssize_t in debugging output in the _sre module." - -#~ msgid "" -#~ "`Issue #18830 `__: inspect.getclasstree() " -#~ "no longer produces duplicate entries even when input list contains " -#~ "duplicates." -#~ msgstr "" -#~ "`Issue #18830 `__: inspect.getclasstree() " -#~ "no longer produces duplicate entries even when input list contains " -#~ "duplicates." - -#~ msgid "" -#~ "`Issue #18878 `__: sunau.open now supports " -#~ "the context management protocol. Based on patches by Claudiu Popa and R. " -#~ "David Murray." -#~ msgstr "" -#~ "`Issue #18878 `__: sunau.open now supports " -#~ "the context management protocol. Based on patches by Claudiu Popa and R. " -#~ "David Murray." - -#~ msgid "" -#~ "`Issue #18909 `__: Fix _tkinter.tkapp." -#~ "interpaddr() on Windows 64-bit, don't cast 64-bit pointer to long (32 " -#~ "bits)." -#~ msgstr "" -#~ "`Issue #18909 `__: Fix _tkinter.tkapp." -#~ "interpaddr() on Windows 64-bit, don't cast 64-bit pointer to long (32 " -#~ "bits)." - -#~ msgid "" -#~ "`Issue #18876 `__: The FileIO.mode " -#~ "attribute now better reflects the actual mode under which the file was " -#~ "opened. Patch by Erik Bray." -#~ msgstr "" -#~ "`Issue #18876 `__: The FileIO.mode " -#~ "attribute now better reflects the actual mode under which the file was " -#~ "opened. Patch by Erik Bray." - -#~ msgid "" -#~ "`Issue #16853 `__: Add new selectors " -#~ "module." -#~ msgstr "" -#~ "`Issue #16853 `__: Add new selectors " -#~ "module." - -#~ msgid "" -#~ "`Issue #18882 `__: Add threading." -#~ "main_thread() function." -#~ msgstr "" -#~ "`Issue #18882 `__: Add threading." -#~ "main_thread() function." - -#~ msgid "" -#~ "`Issue #18901 `__: The sunau getparams " -#~ "method now returns a namedtuple rather than a plain tuple. Patch by " -#~ "Claudiu Popa." -#~ msgstr "" -#~ "`Issue #18901 `__: The sunau getparams " -#~ "method now returns a namedtuple rather than a plain tuple. Patch by " -#~ "Claudiu Popa." - -#~ msgid "" -#~ "`Issue #17487 `__: The result of the wave " -#~ "getparams method now is pickleable again. Patch by Claudiu Popa." -#~ msgstr "" -#~ "`Issue #17487 `__: The result of the wave " -#~ "getparams method now is pickleable again. Patch by Claudiu Popa." - -#~ msgid "" -#~ "`Issue #18756 `__: os.urandom() now uses a " -#~ "lazily-opened persistent file descriptor, so as to avoid using many file " -#~ "descriptors when run in parallel from multiple threads." -#~ msgstr "" -#~ "`Issue #18756 `__: os.urandom() now uses a " -#~ "lazily-opened persistent file descriptor, so as to avoid using many file " -#~ "descriptors when run in parallel from multiple threads." - -#~ msgid "" -#~ "`Issue #18418 `__: After fork(), reinit " -#~ "all threads states, not only active ones. Patch by A. Jesse Jiryu Davis." -#~ msgstr "" -#~ "`Issue #18418 `__: After fork(), reinit " -#~ "all threads states, not only active ones. Patch by A. Jesse Jiryu Davis." - -#~ msgid "" -#~ "`Issue #17974 `__: Switch unittest from " -#~ "using getopt to using argparse." -#~ msgstr "" -#~ "`Issue #17974 `__: Switch unittest from " -#~ "using getopt to using argparse." - -#~ msgid "" -#~ "`Issue #11798 `__: TestSuite now drops " -#~ "references to own tests after execution." -#~ msgstr "" -#~ "`Issue #11798 `__: TestSuite now drops " -#~ "references to own tests after execution." - -#~ msgid "" -#~ "`Issue #16611 `__: http.cookie now " -#~ "correctly parses the 'secure' and 'httponly' cookie flags." -#~ msgstr "" -#~ "`Issue #16611 `__: http.cookie now " -#~ "correctly parses the 'secure' and 'httponly' cookie flags." - -#~ msgid "" -#~ "`Issue #11973 `__: Fix a problem in " -#~ "kevent. The flags and fflags fields are now properly handled as unsigned." -#~ msgstr "" -#~ "`Issue #11973 `__: Fix a problem in " -#~ "kevent. The flags and fflags fields are now properly handled as unsigned." - -#~ msgid "" -#~ "`Issue #18807 `__: ``pyvenv`` now takes a " -#~ "--copies argument allowing copies instead of symlinks even where symlinks " -#~ "are available and the default." -#~ msgstr "" -#~ "`Issue #18807 `__: ``pyvenv`` now takes a " -#~ "--copies argument allowing copies instead of symlinks even where symlinks " -#~ "are available and the default." - -#~ msgid "" -#~ "`Issue #18538 `__: ``python -m dis`` now " -#~ "uses argparse for argument processing. Patch by Michele Orrù." -#~ msgstr "" -#~ "`Issue #18538 `__: ``python -m dis`` now " -#~ "uses argparse for argument processing. Patch by Michele Orrù." - -#~ msgid "" -#~ "`Issue #18394 `__: Close cgi." -#~ "FieldStorage's optional file." -#~ msgstr "" -#~ "`Issue #18394 `__: Close cgi." -#~ "FieldStorage's optional file." - -#~ msgid "" -#~ "`Issue #17702 `__: On error, os.environb " -#~ "now suppresses the exception context when raising a new KeyError with the " -#~ "original key." -#~ msgstr "" -#~ "`Issue #17702 `__: On error, os.environb " -#~ "now suppresses the exception context when raising a new KeyError with the " -#~ "original key." - -#~ msgid "" -#~ "`Issue #16809 `__: Fixed some tkinter " -#~ "incompabilities with Tcl/Tk 8.6." -#~ msgstr "" -#~ "`Issue #16809 `__: Fixed some tkinter " -#~ "incompabilities with Tcl/Tk 8.6." - -#~ msgid "" -#~ "`Issue #16809 `__: Tkinter's splitlist() " -#~ "and split() methods now accept Tcl_Obj argument." -#~ msgstr "" -#~ "`Issue #16809 `__: Tkinter's splitlist() " -#~ "and split() methods now accept Tcl_Obj argument." - -#~ msgid "" -#~ "`Issue #17211 `__: Yield a namedtuple in " -#~ "pkgutil. Patch by Ramchandra Apte." -#~ msgstr "" -#~ "`Issue #17211 `__: Yield a namedtuple in " -#~ "pkgutil. Patch by Ramchandra Apte." - -#~ msgid "" -#~ "`Issue #18324 `__: set_payload now " -#~ "correctly handles binary input. This also supersedes the previous fixes " -#~ "for #14360, #1717, and #16564." -#~ msgstr "" -#~ "`Issue #18324 `__: set_payload now " -#~ "correctly handles binary input. This also supersedes the previous fixes " -#~ "for #14360, #1717, and #16564." - -#~ msgid "" -#~ "`Issue #18794 `__: Add a fileno() method " -#~ "and a closed attribute to select.devpoll objects." -#~ msgstr "" -#~ "`Issue #18794 `__: Add a fileno() method " -#~ "and a closed attribute to select.devpoll objects." - -#~ msgid "" -#~ "`Issue #17119 `__: Fixed integer overflows " -#~ "when processing large strings and tuples in the tkinter module." -#~ msgstr "" -#~ "`Issue #17119 `__: Fixed integer overflows " -#~ "when processing large strings and tuples in the tkinter module." - -#~ msgid "" -#~ "`Issue #15352 `__: Rebuild frozen modules " -#~ "when marshal.c is changed." -#~ msgstr "" -#~ "`Issue #15352 `__: Rebuild frozen modules " -#~ "when marshal.c is changed." - -#~ msgid "" -#~ "`Issue #18747 `__: Re-seed OpenSSL's " -#~ "pseudo-random number generator after fork. A pthread_atfork() parent " -#~ "handler is used to seed the PRNG with pid, time and some stack data." -#~ msgstr "" -#~ "`Issue #18747 `__: Re-seed OpenSSL's " -#~ "pseudo-random number generator after fork. A pthread_atfork() parent " -#~ "handler is used to seed the PRNG with pid, time and some stack data." - -#~ msgid "" -#~ "`Issue #8865 `__: Concurrent invocation of " -#~ "select.poll.poll() now raises a RuntimeError exception. Patch by " -#~ "Christian Schubert." -#~ msgstr "" -#~ "`Issue #8865 `__: Concurrent invocation of " -#~ "select.poll.poll() now raises a RuntimeError exception. Patch by " -#~ "Christian Schubert." - -#~ msgid "" -#~ "`Issue #18777 `__: The ssl module now uses " -#~ "the new CRYPTO_THREADID API of OpenSSL 1.0.0+ instead of the deprecated " -#~ "CRYPTO id callback function." -#~ msgstr "" -#~ "`Issue #18777 `__: The ssl module now uses " -#~ "the new CRYPTO_THREADID API of OpenSSL 1.0.0+ instead of the deprecated " -#~ "CRYPTO id callback function." - -#~ msgid "" -#~ "`Issue #18768 `__: Correct doc string of " -#~ "RAND_edg(). Patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #18768 `__: Correct doc string of " -#~ "RAND_edg(). Patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #18178 `__: Fix ctypes on BSD. " -#~ "dlmalloc.c was compiled twice which broke malloc weak symbols." -#~ msgstr "" -#~ "`Issue #18178 `__: Fix ctypes on BSD. " -#~ "dlmalloc.c was compiled twice which broke malloc weak symbols." - -#~ msgid "" -#~ "`Issue #18709 `__: Fix CVE-2013-4238. The " -#~ "SSL module now handles NULL bytes inside subjectAltName correctly. " -#~ "Formerly the module has used OpenSSL's GENERAL_NAME_print() function to " -#~ "get the string representation of ASN.1 strings for ``rfc822Name`` " -#~ "(email), ``dNSName`` (DNS) and ``uniformResourceIdentifier`` (URI)." -#~ msgstr "" -#~ "`Issue #18709 `__: Fix CVE-2013-4238. The " -#~ "SSL module now handles NULL bytes inside subjectAltName correctly. " -#~ "Formerly the module has used OpenSSL's GENERAL_NAME_print() function to " -#~ "get the string representation of ASN.1 strings for ``rfc822Name`` " -#~ "(email), ``dNSName`` (DNS) and ``uniformResourceIdentifier`` (URI)." - -#~ msgid "" -#~ "`Issue #18701 `__: Remove support of old " -#~ "CPython versions (<3.0) from C code." -#~ msgstr "" -#~ "`Issue #18701 `__: Remove support of old " -#~ "CPython versions (<3.0) from C code." - -#~ msgid "" -#~ "`Issue #18756 `__: Improve error reporting " -#~ "in os.urandom() when the failure is due to something else than /dev/" -#~ "urandom not existing (for example, exhausting the file descriptor limit)." -#~ msgstr "" -#~ "`Issue #18756 `__: Improve error reporting " -#~ "in os.urandom() when the failure is due to something else than /dev/" -#~ "urandom not existing (for example, exhausting the file descriptor limit)." - -#~ msgid "" -#~ "`Issue #18673 `__: Add O_TMPFILE to os " -#~ "module. O_TMPFILE requires Linux kernel 3.11 or newer. It's only defined " -#~ "on system with 3.11 uapi headers, too." -#~ msgstr "" -#~ "`Issue #18673 `__: Add O_TMPFILE to os " -#~ "module. O_TMPFILE requires Linux kernel 3.11 or newer. It's only defined " -#~ "on system with 3.11 uapi headers, too." - -#~ msgid "" -#~ "`Issue #18532 `__: Change the builtin hash " -#~ "algorithms' names to lower case names as promised by hashlib's " -#~ "documentation." -#~ msgstr "" -#~ "`Issue #18532 `__: Change the builtin hash " -#~ "algorithms' names to lower case names as promised by hashlib's " -#~ "documentation." - -#~ msgid "" -#~ "`Issue #8713 `__: add new spwan and " -#~ "forkserver start methods, and new functions get_all_start_methods, " -#~ "get_start_method, and set_start_method, to multiprocessing." -#~ msgstr "" -#~ "`Issue #8713 `__: add new spwan and " -#~ "forkserver start methods, and new functions get_all_start_methods, " -#~ "get_start_method, and set_start_method, to multiprocessing." - -#~ msgid "" -#~ "`Issue #18405 `__: Improve the entropy of " -#~ "crypt.mksalt()." -#~ msgstr "" -#~ "`Issue #18405 `__: Improve the entropy of " -#~ "crypt.mksalt()." - -#~ msgid "" -#~ "`Issue #12015 `__: The tempfile module now " -#~ "uses a suffix of 8 random characters instead of 6, to reduce the risk of " -#~ "filename collision. The entropy was reduced when uppercase letters were " -#~ "removed from the charset used to generate random characters." -#~ msgstr "" -#~ "`Issue #12015 `__: The tempfile module now " -#~ "uses a suffix of 8 random characters instead of 6, to reduce the risk of " -#~ "filename collision. The entropy was reduced when uppercase letters were " -#~ "removed from the charset used to generate random characters." - -#~ msgid "" -#~ "`Issue #18585 `__: Add :func:`textwrap." -#~ "shorten` to collapse and truncate a piece of text to a given length." -#~ msgstr "" -#~ "`Issue #18585 `__: Add :func:`textwrap." -#~ "shorten` to collapse and truncate a piece of text to a given length." - -#~ msgid "" -#~ "`Issue #18598 `__: Tweak exception message " -#~ "for importlib.import_module() to include the module name when a key " -#~ "argument is missing." -#~ msgstr "" -#~ "`Issue #18598 `__: Tweak exception message " -#~ "for importlib.import_module() to include the module name when a key " -#~ "argument is missing." - -#~ msgid "" -#~ "`Issue #19151 `__: Fix docstring and use " -#~ "of _get_supported_file_loaders() to reflect 2-tuples." -#~ msgstr "" -#~ "`Issue #19151 `__: Fix docstring and use " -#~ "of _get_supported_file_loaders() to reflect 2-tuples." - -#~ msgid "" -#~ "`Issue #19152 `__: Add ExtensionFileLoader." -#~ "get_filename()." -#~ msgstr "" -#~ "`Issue #19152 `__: Add ExtensionFileLoader." -#~ "get_filename()." - -#~ msgid "" -#~ "`Issue #18676 `__: Change 'positive' to " -#~ "'non-negative' in queue.py put and get docstrings and ValueError " -#~ "messages. Patch by Zhongyue Luo" -#~ msgstr "" -#~ "`Issue #18676 `__: Change 'positive' to " -#~ "'non-negative' in queue.py put and get docstrings and ValueError " -#~ "messages. Patch by Zhongyue Luo" - -#~ msgid "" -#~ "`Issue #8112 `__: xlmrpc.server's " -#~ "DocXMLRPCServer server no longer raises an error if methods have " -#~ "annotations; it now correctly displays the annotations." -#~ msgstr "" -#~ "`Issue #8112 `__: xlmrpc.server's " -#~ "DocXMLRPCServer server no longer raises an error if methods have " -#~ "annotations; it now correctly displays the annotations." - -#~ msgid "" -#~ "`Issue #18600 `__: Added policy argument " -#~ "to email.message.Message.as_string, and as_bytes and __bytes__ methods to " -#~ "Message." -#~ msgstr "" -#~ "`Issue #18600 `__: Added policy argument " -#~ "to email.message.Message.as_string, and as_bytes and __bytes__ methods to " -#~ "Message." - -#~ msgid "" -#~ "`Issue #18671 `__: Output more information " -#~ "when logging exceptions occur." -#~ msgstr "" -#~ "`Issue #18671 `__: Output more information " -#~ "when logging exceptions occur." - -#~ msgid "" -#~ "`Issue #18621 `__: Prevent the site " -#~ "module's patched builtins from keeping too many references alive for too " -#~ "long." -#~ msgstr "" -#~ "`Issue #18621 `__: Prevent the site " -#~ "module's patched builtins from keeping too many references alive for too " -#~ "long." - -#~ msgid "" -#~ "`Issue #4885 `__: Add weakref support to " -#~ "mmap objects. Patch by Valerie Lambert." -#~ msgstr "" -#~ "`Issue #4885 `__: Add weakref support to " -#~ "mmap objects. Patch by Valerie Lambert." - -#~ msgid "" -#~ "`Issue #8860 `__: Fixed rounding in " -#~ "timedelta constructor." -#~ msgstr "" -#~ "`Issue #8860 `__: Fixed rounding in " -#~ "timedelta constructor." - -#~ msgid "" -#~ "`Issue #18849 `__: Fixed a Windows-" -#~ "specific tempfile bug where collision with an existing directory caused " -#~ "mkstemp and related APIs to fail instead of retrying. Report and fix by " -#~ "Vlad Shcherbina." -#~ msgstr "" -#~ "`Issue #18849 `__: Fixed a Windows-" -#~ "specific tempfile bug where collision with an existing directory caused " -#~ "mkstemp and related APIs to fail instead of retrying. Report and fix by " -#~ "Vlad Shcherbina." - -#~ msgid "" -#~ "`Issue #18920 `__: argparse's default " -#~ "destination for the version action (-v, --version) has also been changed " -#~ "to stdout, to match the Python executable." -#~ msgstr "" -#~ "`Issue #18920 `__: argparse's default " -#~ "destination for the version action (-v, --version) has also been changed " -#~ "to stdout, to match the Python executable." - -#~ msgid "" -#~ "`Issue #18623 `__: Factor out the " -#~ "_SuppressCoreFiles context manager into test.support. Patch by Valerie " -#~ "Lambert." -#~ msgstr "" -#~ "`Issue #18623 `__: Factor out the " -#~ "_SuppressCoreFiles context manager into test.support. Patch by Valerie " -#~ "Lambert." - -#~ msgid "" -#~ "`Issue #12037 `__: Fix test_email for " -#~ "desktop Windows." -#~ msgstr "" -#~ "`Issue #12037 `__: Fix test_email for " -#~ "desktop Windows." - -#~ msgid "" -#~ "`Issue #15507 `__: test_subprocess's " -#~ "test_send_signal could fail if the test runner were run in an environment " -#~ "where the process inherited an ignore setting for SIGINT. Restore the " -#~ "SIGINT handler to the desired KeyboardInterrupt raising one during that " -#~ "test." -#~ msgstr "" -#~ "`Issue #15507 `__: test_subprocess's " -#~ "test_send_signal could fail if the test runner were run in an environment " -#~ "where the process inherited an ignore setting for SIGINT. Restore the " -#~ "SIGINT handler to the desired KeyboardInterrupt raising one during that " -#~ "test." - -#~ msgid "" -#~ "`Issue #16799 `__: Switched from getopt to " -#~ "argparse style in regrtest's argument parsing. Added more tests for " -#~ "regrtest's argument parsing." -#~ msgstr "" -#~ "`Issue #16799 `__: Switched from getopt to " -#~ "argparse style in regrtest's argument parsing. Added more tests for " -#~ "regrtest's argument parsing." - -#~ msgid "" -#~ "`Issue #18792 `__: Use \"127.0.0.1\" or " -#~ "\"::1\" instead of \"localhost\" as much as possible, since \"localhost\" " -#~ "goes through a DNS lookup under recent Windows versions." -#~ msgstr "" -#~ "`Issue #18792 `__: Use \"127.0.0.1\" or " -#~ "\"::1\" instead of \"localhost\" as much as possible, since \"localhost\" " -#~ "goes through a DNS lookup under recent Windows versions." - -#~ msgid "" -#~ "`Issue #18489 `__: Add tests for " -#~ "SearchEngine. Original patch by Phil Webster." -#~ msgstr "" -#~ "`Issue #18489 `__: Add tests for " -#~ "SearchEngine. Original patch by Phil Webster." - -#~ msgid "" -#~ "`Issue #18743 `__: Fix references to non-" -#~ "existent \"StringIO\" module." -#~ msgstr "" -#~ "`Issue #18743 `__: Fix references to non-" -#~ "existent \"StringIO\" module." - -#~ msgid "" -#~ "`Issue #18783 `__: Removed existing " -#~ "mentions of Python long type in docstrings, error messages and comments." -#~ msgstr "" -#~ "`Issue #18783 `__: Removed existing " -#~ "mentions of Python long type in docstrings, error messages and comments." - -#~ msgid "" -#~ "`Issue #1584 `__: Provide configure options " -#~ "to override default search paths for Tcl and Tk when building _tkinter." -#~ msgstr "" -#~ "`Issue #1584 `__: Provide configure options " -#~ "to override default search paths for Tcl and Tk when building _tkinter." - -#~ msgid "" -#~ "`Issue #15663 `__: Tcl/Tk 8.5.14 is now " -#~ "included with the OS X 10.6+ 64-/32-bit installer. It is no longer " -#~ "necessary to install a third-party version of Tcl/Tk 8.5 to work around " -#~ "the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and " -#~ "later releases." -#~ msgstr "" -#~ "`Issue #15663 `__: Tcl/Tk 8.5.14 is now " -#~ "included with the OS X 10.6+ 64-/32-bit installer. It is no longer " -#~ "necessary to install a third-party version of Tcl/Tk 8.5 to work around " -#~ "the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and " -#~ "later releases." - -#~ msgid "" -#~ "`Issue #18922 `__: Now The Lib/smtpd.py " -#~ "and Tools/i18n/msgfmt.py scripts write their version strings to stdout, " -#~ "and not to sderr." -#~ msgstr "" -#~ "`Issue #18922 `__: Now The Lib/smtpd.py " -#~ "and Tools/i18n/msgfmt.py scripts write their version strings to stdout, " -#~ "and not to sderr." - -#~ msgid "Python 3.4.0 Alpha 1" -#~ msgstr "Python 3.4.0 Alpha 1" - -#~ msgid "Release date: 2013-08-03" -#~ msgstr "Date de sortie : 2013-08-03" - -#~ msgid "" -#~ "`Issue #16741 `__: Fix an error reporting " -#~ "in int()." -#~ msgstr "" -#~ "`Issue #16741 `__: Fix an error reporting " -#~ "in int()." - -#~ msgid "" -#~ "`Issue #17899 `__: Fix rare file " -#~ "descriptor leak in os.listdir()." -#~ msgstr "" -#~ "`Issue #17899 `__: Fix rare file " -#~ "descriptor leak in os.listdir()." - -#~ msgid "" -#~ "`Issue #10241 `__: Clear extension module " -#~ "dict copies at interpreter shutdown. Patch by Neil Schemenauer, minimally " -#~ "modified." -#~ msgstr "" -#~ "`Issue #10241 `__: Clear extension module " -#~ "dict copies at interpreter shutdown. Patch by Neil Schemenauer, minimally " -#~ "modified." - -#~ msgid "" -#~ "`Issue #9035 `__: ismount now recognises " -#~ "volumes mounted below a drive root on Windows. Original patch by Atsuo " -#~ "Ishimoto." -#~ msgstr "" -#~ "`Issue #9035 `__: ismount now recognises " -#~ "volumes mounted below a drive root on Windows. Original patch by Atsuo " -#~ "Ishimoto." - -#~ msgid "" -#~ "`Issue #18214 `__: Improve finalization of " -#~ "Python modules to avoid setting their globals to None, in most cases." -#~ msgstr "" -#~ "`Issue #18214 `__: Improve finalization of " -#~ "Python modules to avoid setting their globals to None, in most cases." - -#~ msgid "" -#~ "`Issue #18112 `__: PEP 442 implementation " -#~ "(safe object finalization)." -#~ msgstr "" -#~ "`Issue #18112 `__: PEP 442 implementation " -#~ "(safe object finalization)." - -#~ msgid "" -#~ "`Issue #18552 `__: Check return value of " -#~ "PyArena_AddPyObject() in obj2ast_object()." -#~ msgstr "" -#~ "`Issue #18552 `__: Check return value of " -#~ "PyArena_AddPyObject() in obj2ast_object()." - -#~ msgid "" -#~ "`Issue #18560 `__: Fix potential NULL " -#~ "pointer dereference in sum()." -#~ msgstr "" -#~ "`Issue #18560 `__: Fix potential NULL " -#~ "pointer dereference in sum()." - -#~ msgid "" -#~ "`Issue #18520 `__: Add a new " -#~ "PyStructSequence_InitType2() function, same than " -#~ "PyStructSequence_InitType() except that it has a return value (0 on " -#~ "success, -1 on error)." -#~ msgstr "" -#~ "`Issue #18520 `__: Add a new " -#~ "PyStructSequence_InitType2() function, same than " -#~ "PyStructSequence_InitType() except that it has a return value (0 on " -#~ "success, -1 on error)." - -#~ msgid "" -#~ "`Issue #15905 `__: Fix theoretical buffer " -#~ "overflow in handling of sys.argv[0], prefix and exec_prefix if the " -#~ "operation system does not obey MAXPATHLEN." -#~ msgstr "" -#~ "`Issue #15905 `__: Fix theoretical buffer " -#~ "overflow in handling of sys.argv[0], prefix and exec_prefix if the " -#~ "operation system does not obey MAXPATHLEN." - -#~ msgid "" -#~ "`Issue #18408 `__: Fix many various bugs " -#~ "in code handling errors, especially on memory allocation failure " -#~ "(MemoryError)." -#~ msgstr "" -#~ "`Issue #18408 `__: Fix many various bugs " -#~ "in code handling errors, especially on memory allocation failure " -#~ "(MemoryError)." - -#~ msgid "" -#~ "`Issue #18344 `__: Fix potential ref-leaks " -#~ "in _bufferedreader_read_all()." -#~ msgstr "" -#~ "`Issue #18344 `__: Fix potential ref-leaks " -#~ "in _bufferedreader_read_all()." - -#~ msgid "" -#~ "`Issue #18342 `__: Use the repr of a " -#~ "module name when an import fails when using ``from ... import ...``." -#~ msgstr "" -#~ "`Issue #18342 `__: Use the repr of a " -#~ "module name when an import fails when using ``from ... import ...``." - -#~ msgid "" -#~ "`Issue #17872 `__: Fix a segfault in " -#~ "marshal.load() when input stream returns more bytes than requested." -#~ msgstr "" -#~ "`Issue #17872 `__: Fix a segfault in " -#~ "marshal.load() when input stream returns more bytes than requested." - -#~ msgid "" -#~ "`Issue #18338 `__: `python --version` now " -#~ "prints version string to stdout, and not to stderr. Patch by Berker " -#~ "Peksag and Michael Dickens." -#~ msgstr "" -#~ "`Issue #18338 `__: `python --version` now " -#~ "prints version string to stdout, and not to stderr. Patch by Berker " -#~ "Peksag and Michael Dickens." - -#~ msgid "" -#~ "`Issue #18426 `__: Fix NULL pointer " -#~ "dereference in C extension import when PyModule_GetDef() returns an error." -#~ msgstr "" -#~ "`Issue #18426 `__: Fix NULL pointer " -#~ "dereference in C extension import when PyModule_GetDef() returns an error." - -#~ msgid "" -#~ "`Issue #17206 `__: On Windows, increase " -#~ "the stack size from 2 MB to 4.2 MB to fix a stack overflow in the marshal " -#~ "module (fix a crash in test_marshal). Patch written by Jeremy Kloth." -#~ msgstr "" -#~ "`Issue #17206 `__: On Windows, increase " -#~ "the stack size from 2 MB to 4.2 MB to fix a stack overflow in the marshal " -#~ "module (fix a crash in test_marshal). Patch written by Jeremy Kloth." - -#~ msgid "" -#~ "`Issue #3329 `__: Implement the PEP 445: " -#~ "Add new APIs to customize Python memory allocators." -#~ msgstr "" -#~ "`Issue #3329 `__: Implement the PEP 445: " -#~ "Add new APIs to customize Python memory allocators." - -#~ msgid "" -#~ "`Issue #18328 `__: Reorder ops in " -#~ "PyThreadState_Delete*() functions. Now the tstate is first removed from " -#~ "TLS and then deallocated." -#~ msgstr "" -#~ "`Issue #18328 `__: Reorder ops in " -#~ "PyThreadState_Delete*() functions. Now the tstate is first removed from " -#~ "TLS and then deallocated." - -#~ msgid "" -#~ "`Issue #13483 `__: Use VirtualAlloc in " -#~ "obmalloc on Windows." -#~ msgstr "" -#~ "`Issue #13483 `__: Use VirtualAlloc in " -#~ "obmalloc on Windows." - -#~ msgid "" -#~ "`Issue #18184 `__: PyUnicode_FromFormat() " -#~ "and PyUnicode_FromFormatV() now raise OverflowError when an argument of " -#~ "%c format is out of range." -#~ msgstr "" -#~ "`Issue #18184 `__: PyUnicode_FromFormat() " -#~ "and PyUnicode_FromFormatV() now raise OverflowError when an argument of " -#~ "%c format is out of range." - -#~ msgid "" -#~ "`Issue #18111 `__: The min() and max() " -#~ "functions now support a default argument to be returned instead of " -#~ "raising a ValueError on an empty sequence. (Contributed by Julian Berman.)" -#~ msgstr "" -#~ "`Issue #18111 `__: The min() and max() " -#~ "functions now support a default argument to be returned instead of " -#~ "raising a ValueError on an empty sequence. (Contributed by Julian Berman.)" - -#~ msgid "" -#~ "`Issue #18137 `__: Detect integer overflow " -#~ "on precision in float.__format__() and complex.__format__()." -#~ msgstr "" -#~ "`Issue #18137 `__: Detect integer overflow " -#~ "on precision in float.__format__() and complex.__format__()." - -#~ msgid "" -#~ "`Issue #15767 `__: Introduce " -#~ "ModuleNotFoundError which is raised when a module could not be found." -#~ msgstr "" -#~ "`Issue #15767 `__: Introduce " -#~ "ModuleNotFoundError which is raised when a module could not be found." - -#~ msgid "" -#~ "`Issue #18183 `__: Fix various unicode " -#~ "operations on strings with large unicode codepoints." -#~ msgstr "" -#~ "`Issue #18183 `__: Fix various unicode " -#~ "operations on strings with large unicode codepoints." - -#~ msgid "" -#~ "`Issue #18180 `__: Fix ref leak in " -#~ "_PyImport_GetDynLoadWindows()." -#~ msgstr "" -#~ "`Issue #18180 `__: Fix ref leak in " -#~ "_PyImport_GetDynLoadWindows()." - -#~ msgid "" -#~ "`Issue #18038 `__: SyntaxError raised " -#~ "during compilation sources with illegal encoding now always contains an " -#~ "encoding name." -#~ msgstr "" -#~ "`Issue #18038 `__: SyntaxError raised " -#~ "during compilation sources with illegal encoding now always contains an " -#~ "encoding name." - -#~ msgid "" -#~ "`Issue #17931 `__: Resolve confusion on " -#~ "Windows between pids and process handles." -#~ msgstr "" -#~ "`Issue #17931 `__: Resolve confusion on " -#~ "Windows between pids and process handles." - -#~ msgid "" -#~ "`Issue #17932 `__: Fix an integer overflow " -#~ "issue on Windows 64-bit in iterators: change the C type of seqiterobject." -#~ "it_index from long to Py_ssize_t." -#~ msgstr "" -#~ "`Issue #17932 `__: Fix an integer overflow " -#~ "issue on Windows 64-bit in iterators: change the C type of seqiterobject." -#~ "it_index from long to Py_ssize_t." - -#~ msgid "" -#~ "`Issue #18065 `__: Don't set __path__ to " -#~ "the package name for frozen packages." -#~ msgstr "" -#~ "`Issue #18065 `__: Don't set __path__ to " -#~ "the package name for frozen packages." - -#~ msgid "" -#~ "`Issue #18088 `__: When reloading a " -#~ "module, unconditionally reset all relevant attributes on the module (e.g. " -#~ "__name__, __loader__, __package__, __file__, __cached__)." -#~ msgstr "" -#~ "`Issue #18088 `__: When reloading a " -#~ "module, unconditionally reset all relevant attributes on the module (e.g. " -#~ "__name__, __loader__, __package__, __file__, __cached__)." - -#~ msgid "" -#~ "`Issue #17937 `__: Try harder to collect " -#~ "cyclic garbage at shutdown." -#~ msgstr "" -#~ "`Issue #17937 `__: Try harder to collect " -#~ "cyclic garbage at shutdown." - -#~ msgid "" -#~ "`Issue #12370 `__: Prevent class bodies " -#~ "from interfering with the __class__ closure." -#~ msgstr "" -#~ "`Issue #12370 `__: Prevent class bodies " -#~ "from interfering with the __class__ closure." - -#~ msgid "" -#~ "`Issue #17237 `__: Fix crash in the ASCII " -#~ "decoder on m68k." -#~ msgstr "" -#~ "`Issue #17237 `__: Fix crash in the ASCII " -#~ "decoder on m68k." - -#~ msgid "" -#~ "`Issue #17927 `__: Frame objects kept " -#~ "arguments alive if they had been copied into a cell, even if the cell was " -#~ "cleared." -#~ msgstr "" -#~ "`Issue #17927 `__: Frame objects kept " -#~ "arguments alive if they had been copied into a cell, even if the cell was " -#~ "cleared." - -#~ msgid "" -#~ "`Issue #1545463 `__: At shutdown, defer " -#~ "finalization of codec modules so that stderr remains usable." -#~ msgstr "" -#~ "`Issue #1545463 `__: At shutdown, defer " -#~ "finalization of codec modules so that stderr remains usable." - -#~ msgid "" -#~ "`Issue #7330 `__: Implement width and " -#~ "precision (ex: \"%5.3s\") for the format string of PyUnicode_FromFormat() " -#~ "function, original patch written by Ysj Ray." -#~ msgstr "" -#~ "`Issue #7330 `__: Implement width and " -#~ "precision (ex: \"%5.3s\") for the format string of PyUnicode_FromFormat() " -#~ "function, original patch written by Ysj Ray." - -#~ msgid "" -#~ "`Issue #1545463 `__: Global variables " -#~ "caught in reference cycles are now garbage-collected at shutdown." -#~ msgstr "" -#~ "`Issue #1545463 `__: Global variables " -#~ "caught in reference cycles are now garbage-collected at shutdown." - -#~ msgid "" -#~ "`Issue #17094 `__: Clear stale thread " -#~ "states after fork(). Note that this is a potentially disruptive change " -#~ "since it may release some system resources which would otherwise remain " -#~ "perpetually alive (e.g. database connections kept in thread-local " -#~ "storage)." -#~ msgstr "" -#~ "`Issue #17094 `__: Clear stale thread " -#~ "states after fork(). Note that this is a potentially disruptive change " -#~ "since it may release some system resources which would otherwise remain " -#~ "perpetually alive (e.g. database connections kept in thread-local " -#~ "storage)." - -#~ msgid "" -#~ "`Issue #17408 `__: Avoid using an obsolete " -#~ "instance of the copyreg module when the interpreter is shutdown and then " -#~ "started again." -#~ msgstr "" -#~ "`Issue #17408 `__: Avoid using an obsolete " -#~ "instance of the copyreg module when the interpreter is shutdown and then " -#~ "started again." - -#~ msgid "" -#~ "`Issue #5845 `__: Enable tab-completion in " -#~ "the interactive interpreter by default, thanks to a new sys." -#~ "__interactivehook__." -#~ msgstr "" -#~ "`Issue #5845 `__: Enable tab-completion in " -#~ "the interactive interpreter by default, thanks to a new sys." -#~ "__interactivehook__." - -#~ msgid "" -#~ "`Issue #17115 `__,17116: Module " -#~ "initialization now includes setting __package__ and __loader__ attributes " -#~ "to None." -#~ msgstr "" -#~ "`Issue #17115 `__,17116: Module " -#~ "initialization now includes setting __package__ and __loader__ attributes " -#~ "to None." - -#~ msgid "" -#~ "`Issue #17853 `__: Ensure locals of a " -#~ "class that shadow free variables always win over the closures." -#~ msgstr "" -#~ "`Issue #17853 `__: Ensure locals of a " -#~ "class that shadow free variables always win over the closures." - -#~ msgid "" -#~ "`Issue #17863 `__: In the interactive " -#~ "console, don't loop forever if the encoding can't be fetched from stdin." -#~ msgstr "" -#~ "`Issue #17863 `__: In the interactive " -#~ "console, don't loop forever if the encoding can't be fetched from stdin." - -#~ msgid "" -#~ "`Issue #17867 `__: Raise an ImportError if " -#~ "__import__ is not found in __builtins__." -#~ msgstr "" -#~ "`Issue #17867 `__: Raise an ImportError if " -#~ "__import__ is not found in __builtins__." - -#~ msgid "" -#~ "`Issue #18698 `__: Ensure importlib." -#~ "reload() returns the module out of sys.modules." -#~ msgstr "" -#~ "`Issue #18698 `__: Ensure importlib." -#~ "reload() returns the module out of sys.modules." - -#~ msgid "" -#~ "`Issue #17857 `__: Prevent build failures " -#~ "with pre-3.5.0 versions of sqlite3, such as was shipped with Centos 5 and " -#~ "Mac OS X 10.4." -#~ msgstr "" -#~ "`Issue #17857 `__: Prevent build failures " -#~ "with pre-3.5.0 versions of sqlite3, such as was shipped with Centos 5 and " -#~ "Mac OS X 10.4." - -#~ msgid "" -#~ "`Issue #17413 `__: sys.settrace callbacks " -#~ "were being passed a string instead of an exception instance for the " -#~ "'value' element of the arg tuple if the exception originated from C code; " -#~ "now an exception instance is always provided." -#~ msgstr "" -#~ "`Issue #17413 `__: sys.settrace callbacks " -#~ "were being passed a string instead of an exception instance for the " -#~ "'value' element of the arg tuple if the exception originated from C code; " -#~ "now an exception instance is always provided." - -#~ msgid "" -#~ "`Issue #17782 `__: Fix undefined behaviour " -#~ "on platforms where ``struct timespec``'s \"tv_nsec\" member is not a C " -#~ "long." -#~ msgstr "" -#~ "`Issue #17782 `__: Fix undefined behaviour " -#~ "on platforms where ``struct timespec``'s \"tv_nsec\" member is not a C " -#~ "long." - -#~ msgid "" -#~ "`Issue #17722 `__: When looking up " -#~ "__round__, resolve descriptors." -#~ msgstr "" -#~ "`Issue #17722 `__: When looking up " -#~ "__round__, resolve descriptors." - -#~ msgid "" -#~ "`Issue #16061 `__: Speed up str.replace() " -#~ "for replacing 1-character strings." -#~ msgstr "" -#~ "`Issue #16061 `__: Speed up str.replace() " -#~ "for replacing 1-character strings." - -#~ msgid "" -#~ "`Issue #17715 `__: Fix segmentation fault " -#~ "from raising an exception in a __trunc__ method." -#~ msgstr "" -#~ "`Issue #17715 `__: Fix segmentation fault " -#~ "from raising an exception in a __trunc__ method." - -#~ msgid "" -#~ "`Issue #17643 `__: Add __callback__ " -#~ "attribute to weakref.ref." -#~ msgstr "" -#~ "`Issue #17643 `__: Add __callback__ " -#~ "attribute to weakref.ref." - -#~ msgid "" -#~ "`Issue #16447 `__: Fixed potential " -#~ "segmentation fault when setting __name__ on a class." -#~ msgstr "" -#~ "`Issue #16447 `__: Fixed potential " -#~ "segmentation fault when setting __name__ on a class." - -#~ msgid "" -#~ "`Issue #17669 `__: Fix crash involving " -#~ "finalization of generators using yield from." -#~ msgstr "" -#~ "`Issue #17669 `__: Fix crash involving " -#~ "finalization of generators using yield from." - -#~ msgid "" -#~ "`Issue #14439 `__: Python now prints the " -#~ "traceback on runpy failure at startup." -#~ msgstr "" -#~ "`Issue #14439 `__: Python now prints the " -#~ "traceback on runpy failure at startup." - -#~ msgid "" -#~ "`Issue #17469 `__: Fix " -#~ "_Py_GetAllocatedBlocks() and sys.getallocatedblocks() when running on " -#~ "valgrind." -#~ msgstr "" -#~ "`Issue #17469 `__: Fix " -#~ "_Py_GetAllocatedBlocks() and sys.getallocatedblocks() when running on " -#~ "valgrind." - -#~ msgid "" -#~ "`Issue #17619 `__: Make input() check for " -#~ "Ctrl-C correctly on Windows." -#~ msgstr "" -#~ "`Issue #17619 `__: Make input() check for " -#~ "Ctrl-C correctly on Windows." - -#~ msgid "" -#~ "`Issue #17357 `__: Add missing verbosity " -#~ "messages for -v/-vv that were lost during the importlib transition." -#~ msgstr "" -#~ "`Issue #17357 `__: Add missing verbosity " -#~ "messages for -v/-vv that were lost during the importlib transition." - -#~ msgid "" -#~ "`Issue #17610 `__: Don't rely on non-" -#~ "standard behavior of the C qsort() function." -#~ msgstr "" -#~ "`Issue #17610 `__: Don't rely on non-" -#~ "standard behavior of the C qsort() function." - -#~ msgid "" -#~ "`Issue #17323 `__: The \"[X refs, Y " -#~ "blocks]\" printed by debug builds has been disabled by default. It can " -#~ "be re-enabled with the `-X showrefcount` option." -#~ msgstr "" -#~ "`Issue #17323 `__: The \"[X refs, Y " -#~ "blocks]\" printed by debug builds has been disabled by default. It can " -#~ "be re-enabled with the `-X showrefcount` option." - -#~ msgid "" -#~ "`Issue #17328 `__: Fix possible refleak in " -#~ "dict.setdefault." -#~ msgstr "" -#~ "`Issue #17328 `__: Fix possible refleak in " -#~ "dict.setdefault." - -#~ msgid "" -#~ "`Issue #17275 `__: Corrected class name in " -#~ "init error messages of the C version of BufferedWriter and BufferedRandom." -#~ msgstr "" -#~ "`Issue #17275 `__: Corrected class name in " -#~ "init error messages of the C version of BufferedWriter and BufferedRandom." - -#~ msgid "" -#~ "`Issue #8745 `__: Small speed up zipimport " -#~ "on Windows. Patch by Catalin Iacob." -#~ msgstr "" -#~ "`Issue #8745 `__: Small speed up zipimport " -#~ "on Windows. Patch by Catalin Iacob." - -#~ msgid "" -#~ "`Issue #5308 `__: Raise ValueError when " -#~ "marshalling too large object (a sequence with size >= 2**31), instead of " -#~ "producing illegal marshal data." -#~ msgstr "" -#~ "`Issue #5308 `__: Raise ValueError when " -#~ "marshalling too large object (a sequence with size >= 2**31), instead of " -#~ "producing illegal marshal data." - -#~ msgid "" -#~ "`Issue #12983 `__: Bytes literals with " -#~ "invalid ``\\x`` escape now raise a SyntaxError and a full traceback " -#~ "including line number." -#~ msgstr "" -#~ "`Issue #12983 `__: Bytes literals with " -#~ "invalid ``\\x`` escape now raise a SyntaxError and a full traceback " -#~ "including line number." - -#~ msgid "" -#~ "`Issue #16967 `__: In function definition, " -#~ "evaluate positional defaults before keyword-only defaults." -#~ msgstr "" -#~ "`Issue #16967 `__: In function definition, " -#~ "evaluate positional defaults before keyword-only defaults." - -#~ msgid "" -#~ "`Issue #17173 `__: Remove uses of locale-" -#~ "dependent C functions (isalpha() etc.) in the interpreter." -#~ msgstr "" -#~ "`Issue #17173 `__: Remove uses of locale-" -#~ "dependent C functions (isalpha() etc.) in the interpreter." - -#~ msgid "" -#~ "`Issue #17137 `__: When a Unicode string " -#~ "is resized, the internal wide character string (wstr) format is now " -#~ "cleared." -#~ msgstr "" -#~ "`Issue #17137 `__: When a Unicode string " -#~ "is resized, the internal wide character string (wstr) format is now " -#~ "cleared." - -#~ msgid "" -#~ "`Issue #17043 `__: The unicode-internal " -#~ "decoder no longer read past the end of input buffer." -#~ msgstr "" -#~ "`Issue #17043 `__: The unicode-internal " -#~ "decoder no longer read past the end of input buffer." - -#~ msgid "" -#~ "`Issue #17098 `__: All modules now have " -#~ "__loader__ set even if they pre-exist the bootstrapping of importlib." -#~ msgstr "" -#~ "`Issue #17098 `__: All modules now have " -#~ "__loader__ set even if they pre-exist the bootstrapping of importlib." - -#~ msgid "" -#~ "`Issue #16979 `__: Fix error handling bugs " -#~ "in the unicode-escape-decode decoder." -#~ msgstr "" -#~ "`Issue #16979 `__: Fix error handling bugs " -#~ "in the unicode-escape-decode decoder." - -#~ msgid "" -#~ "`Issue #16772 `__: The base argument to " -#~ "the int constructor no longer accepts floats, or other non-integer " -#~ "objects with an __int__ method. Objects with an __index__ method are now " -#~ "accepted." -#~ msgstr "" -#~ "`Issue #16772 `__: The base argument to " -#~ "the int constructor no longer accepts floats, or other non-integer " -#~ "objects with an __int__ method. Objects with an __index__ method are now " -#~ "accepted." - -#~ msgid "" -#~ "`Issue #10156 `__: In the interpreter's " -#~ "initialization phase, unicode globals are now initialized dynamically as " -#~ "needed." -#~ msgstr "" -#~ "`Issue #10156 `__: In the interpreter's " -#~ "initialization phase, unicode globals are now initialized dynamically as " -#~ "needed." - -#~ msgid "" -#~ "`Issue #16980 `__: Fix processing of " -#~ "escaped non-ascii bytes in the unicode-escape-decode decoder." -#~ msgstr "" -#~ "`Issue #16980 `__: Fix processing of " -#~ "escaped non-ascii bytes in the unicode-escape-decode decoder." - -#~ msgid "" -#~ "`Issue #16975 `__: Fix error handling bug " -#~ "in the escape-decode bytes decoder." -#~ msgstr "" -#~ "`Issue #16975 `__: Fix error handling bug " -#~ "in the escape-decode bytes decoder." - -#~ msgid "" -#~ "`Issue #14850 `__: Now a charmap decoder " -#~ "treats U+FFFE as \"undefined mapping\" in any mapping, not only in a " -#~ "string." -#~ msgstr "" -#~ "`Issue #14850 `__: Now a charmap decoder " -#~ "treats U+FFFE as \"undefined mapping\" in any mapping, not only in a " -#~ "string." - -#~ msgid "" -#~ "`Issue #16613 `__: Add *m* argument to " -#~ "``collections.Chainmap.new_child`` to allow the new child map to be " -#~ "specified explicitly." -#~ msgstr "" -#~ "`Issue #16613 `__: Add *m* argument to " -#~ "``collections.Chainmap.new_child`` to allow the new child map to be " -#~ "specified explicitly." - -#~ msgid "" -#~ "`Issue #16730 `__: importlib.machinery." -#~ "FileFinder now no longers raises an exception when trying to populate its " -#~ "cache and it finds out the directory is unreadable or has turned into a " -#~ "file. Reported and diagnosed by David Pritchard." -#~ msgstr "" -#~ "`Issue #16730 `__: importlib.machinery." -#~ "FileFinder now no longers raises an exception when trying to populate its " -#~ "cache and it finds out the directory is unreadable or has turned into a " -#~ "file. Reported and diagnosed by David Pritchard." - -#~ msgid "" -#~ "`Issue #16906 `__: Fix a logic error that " -#~ "prevented most static strings from being cleared." -#~ msgstr "" -#~ "`Issue #16906 `__: Fix a logic error that " -#~ "prevented most static strings from being cleared." - -#~ msgid "" -#~ "`Issue #11461 `__: Fix the incremental " -#~ "UTF-16 decoder. Original patch by Amaury Forgeot d'Arc." -#~ msgstr "" -#~ "`Issue #11461 `__: Fix the incremental " -#~ "UTF-16 decoder. Original patch by Amaury Forgeot d'Arc." - -#~ msgid "" -#~ "`Issue #16856 `__: Fix a segmentation " -#~ "fault from calling repr() on a dict with a key whose repr raise an " -#~ "exception." -#~ msgstr "" -#~ "`Issue #16856 `__: Fix a segmentation " -#~ "fault from calling repr() on a dict with a key whose repr raise an " -#~ "exception." - -#~ msgid "" -#~ "`Issue #16367 `__: Fix FileIO.readall() on " -#~ "Windows for files larger than 2 GB." -#~ msgstr "" -#~ "`Issue #16367 `__: Fix FileIO.readall() on " -#~ "Windows for files larger than 2 GB." - -#~ msgid "" -#~ "`Issue #16761 `__: Calling int() with base " -#~ "argument only now raises TypeError." -#~ msgstr "" -#~ "`Issue #16761 `__: Calling int() with base " -#~ "argument only now raises TypeError." - -#~ msgid "" -#~ "`Issue #16759 `__: Support the full DWORD " -#~ "(unsigned long) range in Reg2Py when retrieving a REG_DWORD value. This " -#~ "corrects functions like winreg.QueryValueEx that may have been returning " -#~ "truncated values." -#~ msgstr "" -#~ "`Issue #16759 `__: Support the full DWORD " -#~ "(unsigned long) range in Reg2Py when retrieving a REG_DWORD value. This " -#~ "corrects functions like winreg.QueryValueEx that may have been returning " -#~ "truncated values." - -#~ msgid "" -#~ "`Issue #14420 `__: Support the full DWORD " -#~ "(unsigned long) range in Py2Reg when passed a REG_DWORD value. Fixes " -#~ "OverflowError in winreg.SetValueEx." -#~ msgstr "" -#~ "`Issue #14420 `__: Support the full DWORD " -#~ "(unsigned long) range in Py2Reg when passed a REG_DWORD value. Fixes " -#~ "OverflowError in winreg.SetValueEx." - -#~ msgid "" -#~ "`Issue #11939 `__: Set the st_dev " -#~ "attribute of stat_result to allow Windows to take advantage of the os." -#~ "path.samefile/sameopenfile/samestat implementations used by other " -#~ "platforms." -#~ msgstr "" -#~ "`Issue #11939 `__: Set the st_dev " -#~ "attribute of stat_result to allow Windows to take advantage of the os." -#~ "path.samefile/sameopenfile/samestat implementations used by other " -#~ "platforms." - -#~ msgid "" -#~ "`Issue #16772 `__: The int() constructor's " -#~ "second argument (base) no longer accepts non integer values. Consistent " -#~ "with the behavior in Python 2." -#~ msgstr "" -#~ "`Issue #16772 `__: The int() constructor's " -#~ "second argument (base) no longer accepts non integer values. Consistent " -#~ "with the behavior in Python 2." - -#~ msgid "" -#~ "`Issue #14470 `__: Remove w9xpopen support " -#~ "per PEP 11." -#~ msgstr "" -#~ "`Issue #14470 `__: Remove w9xpopen support " -#~ "per PEP 11." - -#~ msgid "" -#~ "`Issue #9856 `__: Replace deprecation " -#~ "warning with raising TypeError in object.__format__. Patch by Florent " -#~ "Xicluna." -#~ msgstr "" -#~ "`Issue #9856 `__: Replace deprecation " -#~ "warning with raising TypeError in object.__format__. Patch by Florent " -#~ "Xicluna." - -#~ msgid "" -#~ "`Issue #16597 `__: In buffered and text " -#~ "IO, call close() on the underlying stream if invoking flush() fails." -#~ msgstr "" -#~ "`Issue #16597 `__: In buffered and text " -#~ "IO, call close() on the underlying stream if invoking flush() fails." - -#~ msgid "" -#~ "`Issue #16722 `__: In the bytes() " -#~ "constructor, try to call __bytes__ on the argument before __index__." -#~ msgstr "" -#~ "`Issue #16722 `__: In the bytes() " -#~ "constructor, try to call __bytes__ on the argument before __index__." - -#~ msgid "" -#~ "`Issue #16421 `__: loading multiple " -#~ "modules from one shared object is now handled correctly (previously, the " -#~ "first module loaded from that file was silently returned). Patch by " -#~ "Václav Šmilauer." -#~ msgstr "" -#~ "`Issue #16421 `__: loading multiple " -#~ "modules from one shared object is now handled correctly (previously, the " -#~ "first module loaded from that file was silently returned). Patch by " -#~ "Václav Šmilauer." - -#~ msgid "" -#~ "`Issue #16602 `__: When a weakref's target " -#~ "was part of a long deallocation chain, the object could remain reachable " -#~ "through its weakref even though its refcount had dropped to zero." -#~ msgstr "" -#~ "`Issue #16602 `__: When a weakref's target " -#~ "was part of a long deallocation chain, the object could remain reachable " -#~ "through its weakref even though its refcount had dropped to zero." - -#~ msgid "" -#~ "`Issue #16495 `__: Remove extraneous NULL " -#~ "encoding check from bytes_decode()." -#~ msgstr "" -#~ "`Issue #16495 `__: Remove extraneous NULL " -#~ "encoding check from bytes_decode()." - -#~ msgid "" -#~ "`Issue #16619 `__: Create NameConstant AST " -#~ "class to represent None, True, and False literals. As a result, these " -#~ "constants are never loaded at runtime from builtins." -#~ msgstr "" -#~ "`Issue #16619 `__: Create NameConstant AST " -#~ "class to represent None, True, and False literals. As a result, these " -#~ "constants are never loaded at runtime from builtins." - -#~ msgid "" -#~ "`Issue #16455 `__: On FreeBSD and Solaris, " -#~ "if the locale is C, the ASCII/surrogateescape codec is now used (instead " -#~ "of the locale encoding) to decode the command line arguments. This change " -#~ "fixes inconsistencies with os.fsencode() and os.fsdecode(), because these " -#~ "operating systems announce an ASCII locale encoding, but actually use the " -#~ "ISO-8859-1 encoding in practice." -#~ msgstr "" -#~ "`Issue #16455 `__: On FreeBSD and Solaris, " -#~ "if the locale is C, the ASCII/surrogateescape codec is now used (instead " -#~ "of the locale encoding) to decode the command line arguments. This change " -#~ "fixes inconsistencies with os.fsencode() and os.fsdecode(), because these " -#~ "operating systems announce an ASCII locale encoding, but actually use the " -#~ "ISO-8859-1 encoding in practice." - -#~ msgid "" -#~ "`Issue #16562 `__: Optimize dict equality " -#~ "testing. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16562 `__: Optimize dict equality " -#~ "testing. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16588 `__: Silence unused-but-set " -#~ "warnings in Python/thread_pthread" -#~ msgstr "" -#~ "`Issue #16588 `__: Silence unused-but-set " -#~ "warnings in Python/thread_pthread" - -#~ msgid "" -#~ "`Issue #16592 `__: stringlib_bytes_join " -#~ "doesn't raise MemoryError on allocation failure." -#~ msgstr "" -#~ "`Issue #16592 `__: stringlib_bytes_join " -#~ "doesn't raise MemoryError on allocation failure." - -#~ msgid "" -#~ "`Issue #16546 `__: Fix: ast.YieldFrom " -#~ "argument is now mandatory." -#~ msgstr "" -#~ "`Issue #16546 `__: Fix: ast.YieldFrom " -#~ "argument is now mandatory." - -#~ msgid "" -#~ "`Issue #16514 `__: Fix regression causing " -#~ "a traceback when sys.path[0] is None (actually, any non-string or non-" -#~ "bytes type)." -#~ msgstr "" -#~ "`Issue #16514 `__: Fix regression causing " -#~ "a traceback when sys.path[0] is None (actually, any non-string or non-" -#~ "bytes type)." - -#~ msgid "" -#~ "`Issue #16306 `__: Fix multiple error " -#~ "messages when unknown command line parameters where passed to the " -#~ "interpreter. Patch by Hieu Nguyen." -#~ msgstr "" -#~ "`Issue #16306 `__: Fix multiple error " -#~ "messages when unknown command line parameters where passed to the " -#~ "interpreter. Patch by Hieu Nguyen." - -#~ msgid "" -#~ "`Issue #16215 `__: Fix potential double " -#~ "memory free in str.replace(). Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16215 `__: Fix potential double " -#~ "memory free in str.replace(). Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16290 `__: A float return value " -#~ "from the __complex__ special method is no longer accepted in the " -#~ "complex() constructor." -#~ msgstr "" -#~ "`Issue #16290 `__: A float return value " -#~ "from the __complex__ special method is no longer accepted in the " -#~ "complex() constructor." - -#~ msgid "" -#~ "`Issue #16453 `__: Fix equality testing of " -#~ "dead weakref objects." -#~ msgstr "" -#~ "`Issue #16453 `__: Fix equality testing of " -#~ "dead weakref objects." - -#~ msgid "" -#~ "`Issue #9535 `__: Fix pending signals that " -#~ "have been received but not yet handled by Python to not persist after os." -#~ "fork() in the child process." -#~ msgstr "" -#~ "`Issue #9535 `__: Fix pending signals that " -#~ "have been received but not yet handled by Python to not persist after os." -#~ "fork() in the child process." - -#~ msgid "" -#~ "`Issue #14794 `__: Fix slice.indices to " -#~ "return correct results for huge values, rather than raising OverflowError." -#~ msgstr "" -#~ "`Issue #14794 `__: Fix slice.indices to " -#~ "return correct results for huge values, rather than raising OverflowError." - -#~ msgid "" -#~ "`Issue #15001 `__: fix segfault on \"del " -#~ "sys.modules['__main__']\". Patch by Victor Stinner." -#~ msgstr "" -#~ "`Issue #15001 `__: fix segfault on \"del " -#~ "sys.modules['__main__']\". Patch by Victor Stinner." - -#~ msgid "" -#~ "`Issue #8271 `__: the utf-8 decoder now " -#~ "outputs the correct number of U+FFFD characters when used with the " -#~ "'replace' error handler on invalid utf-8 sequences. Patch by Serhiy " -#~ "Storchaka, tests by Ezio Melotti." -#~ msgstr "" -#~ "`Issue #8271 `__: the utf-8 decoder now " -#~ "outputs the correct number of U+FFFD characters when used with the " -#~ "'replace' error handler on invalid utf-8 sequences. Patch by Serhiy " -#~ "Storchaka, tests by Ezio Melotti." - -#~ msgid "" -#~ "`Issue #5765 `__: Apply a hard recursion " -#~ "limit in the compiler instead of blowing the stack and segfaulting. " -#~ "Initial patch by Andrea Griffini." -#~ msgstr "" -#~ "`Issue #5765 `__: Apply a hard recursion " -#~ "limit in the compiler instead of blowing the stack and segfaulting. " -#~ "Initial patch by Andrea Griffini." - -#~ msgid "" -#~ "`Issue #16402 `__: When slicing a range, " -#~ "fix shadowing of exceptions from __index__." -#~ msgstr "" -#~ "`Issue #16402 `__: When slicing a range, " -#~ "fix shadowing of exceptions from __index__." - -#~ msgid "" -#~ "`Issue #16336 `__: fix input checking in " -#~ "the surrogatepass error handler. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16336 `__: fix input checking in " -#~ "the surrogatepass error handler. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #8401 `__: assigning an int to a " -#~ "bytearray slice (e.g. b[3:4] = 5) now raises an error." -#~ msgstr "" -#~ "`Issue #8401 `__: assigning an int to a " -#~ "bytearray slice (e.g. b[3:4] = 5) now raises an error." - -#~ msgid "" -#~ "`Issue #7317 `__: Display full tracebacks " -#~ "when an error occurs asynchronously. Patch by Alon Horev with update by " -#~ "Alexey Kachayev." -#~ msgstr "" -#~ "`Issue #7317 `__: Display full tracebacks " -#~ "when an error occurs asynchronously. Patch by Alon Horev with update by " -#~ "Alexey Kachayev." - -#~ msgid "" -#~ "`Issue #16309 `__: Make PYTHONPATH=\"\" " -#~ "behavior the same as if PYTHONPATH not set at all." -#~ msgstr "" -#~ "`Issue #16309 `__: Make PYTHONPATH=\"\" " -#~ "behavior the same as if PYTHONPATH not set at all." - -#~ msgid "" -#~ "`Issue #10189 `__: Improve the error " -#~ "reporting of SyntaxErrors related to global and nonlocal statements." -#~ msgstr "" -#~ "`Issue #10189 `__: Improve the error " -#~ "reporting of SyntaxErrors related to global and nonlocal statements." - -#~ msgid "" -#~ "`Issue #14625 `__: Rewrite the UTF-32 " -#~ "decoder. It is now 3x to 4x faster. Patch written by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #14625 `__: Rewrite the UTF-32 " -#~ "decoder. It is now 3x to 4x faster. Patch written by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16345 `__: Fix an infinite loop " -#~ "when ``fromkeys`` on a dict subclass received a nonempty dict from the " -#~ "constructor." -#~ msgstr "" -#~ "`Issue #16345 `__: Fix an infinite loop " -#~ "when ``fromkeys`` on a dict subclass received a nonempty dict from the " -#~ "constructor." - -#~ msgid "" -#~ "`Issue #16271 `__: Fix strange bugs that " -#~ "resulted from __qualname__ appearing in a class's __dict__ and on type." -#~ msgstr "" -#~ "`Issue #16271 `__: Fix strange bugs that " -#~ "resulted from __qualname__ appearing in a class's __dict__ and on type." - -#~ msgid "" -#~ "`Issue #12805 `__: Make bytes.join and " -#~ "bytearray.join faster when the separator is empty. Patch by Serhiy " -#~ "Storchaka." -#~ msgstr "" -#~ "`Issue #12805 `__: Make bytes.join and " -#~ "bytearray.join faster when the separator is empty. Patch by Serhiy " -#~ "Storchaka." - -#~ msgid "" -#~ "`Issue #6074 `__: Ensure cached bytecode " -#~ "files can always be updated by the user that created them, even when the " -#~ "source file is read-only." -#~ msgstr "" -#~ "`Issue #6074 `__: Ensure cached bytecode " -#~ "files can always be updated by the user that created them, even when the " -#~ "source file is read-only." - -#~ msgid "" -#~ "`Issue #15958 `__: bytes.join and " -#~ "bytearray.join now accept arbitrary buffer objects." -#~ msgstr "" -#~ "`Issue #15958 `__: bytes.join and " -#~ "bytearray.join now accept arbitrary buffer objects." - -#~ msgid "" -#~ "`Issue #14783 `__: Improve int() docstring " -#~ "and switch docstrings for str(), range(), and slice() to use multi-line " -#~ "signatures." -#~ msgstr "" -#~ "`Issue #14783 `__: Improve int() docstring " -#~ "and switch docstrings for str(), range(), and slice() to use multi-line " -#~ "signatures." - -#~ msgid "" -#~ "`Issue #16160 `__: Subclass support now " -#~ "works for types.SimpleNamespace." -#~ msgstr "" -#~ "`Issue #16160 `__: Subclass support now " -#~ "works for types.SimpleNamespace." - -#~ msgid "" -#~ "`Issue #16148 `__: Implement PEP 424, " -#~ "adding operator.length_hint and PyObject_LengthHint." -#~ msgstr "" -#~ "`Issue #16148 `__: Implement PEP 424, " -#~ "adding operator.length_hint and PyObject_LengthHint." - -#~ msgid "" -#~ "`Issue #15379 `__: Fix passing of non-BMP " -#~ "characters as integers for the charmap decoder (already working as " -#~ "unicode strings). Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #15379 `__: Fix passing of non-BMP " -#~ "characters as integers for the charmap decoder (already working as " -#~ "unicode strings). Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15144 `__: Fix possible integer " -#~ "overflow when handling pointers as integer values, by using " -#~ "`Py_uintptr_t` instead of `size_t`. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #15144 `__: Fix possible integer " -#~ "overflow when handling pointers as integer values, by using " -#~ "`Py_uintptr_t` instead of `size_t`. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15965 `__: Explicitly cast " -#~ "`AT_FDCWD` as (int). Required on Solaris 10 (which defines `AT_FDCWD` as " -#~ "``0xffd19553``), harmless on other platforms." -#~ msgstr "" -#~ "`Issue #15965 `__: Explicitly cast " -#~ "`AT_FDCWD` as (int). Required on Solaris 10 (which defines `AT_FDCWD` as " -#~ "``0xffd19553``), harmless on other platforms." - -#~ msgid "" -#~ "`Issue #15839 `__: Convert SystemErrors in " -#~ "`super()` to RuntimeErrors." -#~ msgstr "" -#~ "`Issue #15839 `__: Convert SystemErrors in " -#~ "`super()` to RuntimeErrors." - -#~ msgid "" -#~ "`Issue #15448 `__: Buffered IO now frees " -#~ "the buffer when closed, instead of when deallocating." -#~ msgstr "" -#~ "`Issue #15448 `__: Buffered IO now frees " -#~ "the buffer when closed, instead of when deallocating." - -#~ msgid "" -#~ "`Issue #15846 `__: Fix SystemError which " -#~ "happened when using `ast.parse()` in an exception handler on code with " -#~ "syntax errors." -#~ msgstr "" -#~ "`Issue #15846 `__: Fix SystemError which " -#~ "happened when using `ast.parse()` in an exception handler on code with " -#~ "syntax errors." - -#~ msgid "" -#~ "`Issue #15897 `__: zipimport.c doesn't " -#~ "check return value of fseek(). Patch by Felipe Cruz." -#~ msgstr "" -#~ "`Issue #15897 `__: zipimport.c doesn't " -#~ "check return value of fseek(). Patch by Felipe Cruz." - -#~ msgid "" -#~ "`Issue #15801 `__: Make sure mappings " -#~ "passed to '%' formatting are actually subscriptable." -#~ msgstr "" -#~ "`Issue #15801 `__: Make sure mappings " -#~ "passed to '%' formatting are actually subscriptable." - -#~ msgid "" -#~ "`Issue #15111 `__: __import__ should " -#~ "propagate ImportError when raised as a side-effect of a module triggered " -#~ "from using fromlist." -#~ msgstr "" -#~ "`Issue #15111 `__: __import__ should " -#~ "propagate ImportError when raised as a side-effect of a module triggered " -#~ "from using fromlist." - -#~ msgid "" -#~ "`Issue #15022 `__: Add pickle and " -#~ "comparison support to types.SimpleNamespace." -#~ msgstr "" -#~ "`Issue #15022 `__: Add pickle and " -#~ "comparison support to types.SimpleNamespace." - -#~ msgid "" -#~ "`Issue #4331 `__: Added functools." -#~ "partialmethod (Initial patch by Alon Horev)" -#~ msgstr "" -#~ "`Issue #4331 `__: Added functools." -#~ "partialmethod (Initial patch by Alon Horev)" - -#~ msgid "" -#~ "`Issue #13461 `__: Fix a crash in the " -#~ "TextIOWrapper.tell method on 64-bit platforms. Patch by Yogesh Chaudhari." -#~ msgstr "" -#~ "`Issue #13461 `__: Fix a crash in the " -#~ "TextIOWrapper.tell method on 64-bit platforms. Patch by Yogesh Chaudhari." - -#~ msgid "" -#~ "`Issue #18681 `__: Fix a NameError in " -#~ "importlib.reload() (noticed by Weizhao Li)." -#~ msgstr "" -#~ "`Issue #18681 `__: Fix a NameError in " -#~ "importlib.reload() (noticed by Weizhao Li)." - -#~ msgid "" -#~ "`Issue #14323 `__: Expanded the number of " -#~ "digits in the coefficients for the RGB -- YIQ conversions so that they " -#~ "match the FCC NTSC versions." -#~ msgstr "" -#~ "`Issue #14323 `__: Expanded the number of " -#~ "digits in the coefficients for the RGB -- YIQ conversions so that they " -#~ "match the FCC NTSC versions." - -#~ msgid "" -#~ "`Issue #17998 `__: Fix an internal error " -#~ "in regular expression engine." -#~ msgstr "" -#~ "`Issue #17998 `__: Fix an internal error " -#~ "in regular expression engine." - -#~ msgid "" -#~ "`Issue #17557 `__: Fix os.getgroups() to " -#~ "work with the modified behavior of getgroups(2) on OS X 10.8. Original " -#~ "patch by Mateusz Lenik." -#~ msgstr "" -#~ "`Issue #17557 `__: Fix os.getgroups() to " -#~ "work with the modified behavior of getgroups(2) on OS X 10.8. Original " -#~ "patch by Mateusz Lenik." - -#~ msgid "" -#~ "`Issue #18608 `__: Avoid keeping a strong " -#~ "reference to the locale module inside the _io module." -#~ msgstr "" -#~ "`Issue #18608 `__: Avoid keeping a strong " -#~ "reference to the locale module inside the _io module." - -#~ msgid "" -#~ "`Issue #18619 `__: Fix atexit leaking " -#~ "callbacks registered from sub-interpreters, and make it GC-aware." -#~ msgstr "" -#~ "`Issue #18619 `__: Fix atexit leaking " -#~ "callbacks registered from sub-interpreters, and make it GC-aware." - -#~ msgid "" -#~ "`Issue #15699 `__: The readline module now " -#~ "uses PEP 3121-style module initialization, so as to reclaim allocated " -#~ "resources (Python callbacks) at shutdown. Original patch by Robin " -#~ "Schreiber." -#~ msgstr "" -#~ "`Issue #15699 `__: The readline module now " -#~ "uses PEP 3121-style module initialization, so as to reclaim allocated " -#~ "resources (Python callbacks) at shutdown. Original patch by Robin " -#~ "Schreiber." - -#~ msgid "" -#~ "`Issue #17616 `__: wave.open now supports " -#~ "the context management protocol." -#~ msgstr "" -#~ "`Issue #17616 `__: wave.open now supports " -#~ "the context management protocol." - -#~ msgid "" -#~ "`Issue #18599 `__: Fix name attribute of " -#~ "_sha1.sha1() object. It now returns 'SHA1' instead of 'SHA'." -#~ msgstr "" -#~ "`Issue #18599 `__: Fix name attribute of " -#~ "_sha1.sha1() object. It now returns 'SHA1' instead of 'SHA'." - -#~ msgid "" -#~ "`Issue #13266 `__: Added inspect.unwrap to " -#~ "easily unravel __wrapped__ chains (initial patch by Daniel Urban and " -#~ "Aaron Iles)" -#~ msgstr "" -#~ "`Issue #13266 `__: Added inspect.unwrap to " -#~ "easily unravel __wrapped__ chains (initial patch by Daniel Urban and " -#~ "Aaron Iles)" - -#~ msgid "" -#~ "`Issue #18561 `__: Skip name in ctypes' " -#~ "_build_callargs() if name is NULL." -#~ msgstr "" -#~ "`Issue #18561 `__: Skip name in ctypes' " -#~ "_build_callargs() if name is NULL." - -#~ msgid "" -#~ "`Issue #18559 `__: Fix NULL pointer " -#~ "dereference error in _pickle module" -#~ msgstr "" -#~ "`Issue #18559 `__: Fix NULL pointer " -#~ "dereference error in _pickle module" - -#~ msgid "" -#~ "`Issue #18556 `__: Check the return type " -#~ "of PyUnicode_AsWideChar() in ctype's U_set()." -#~ msgstr "" -#~ "`Issue #18556 `__: Check the return type " -#~ "of PyUnicode_AsWideChar() in ctype's U_set()." - -#~ msgid "" -#~ "`Issue #17818 `__: aifc.getparams now " -#~ "returns a namedtuple." -#~ msgstr "" -#~ "`Issue #17818 `__: aifc.getparams now " -#~ "returns a namedtuple." - -#~ msgid "" -#~ "`Issue #18549 `__: Eliminate dead code in " -#~ "socket_ntohl()" -#~ msgstr "" -#~ "`Issue #18549 `__: Eliminate dead code in " -#~ "socket_ntohl()" - -#~ msgid "" -#~ "`Issue #18530 `__: Remove additional stat " -#~ "call from posixpath.ismount. Patch by Alex Gaynor." -#~ msgstr "" -#~ "`Issue #18530 `__: Remove additional stat " -#~ "call from posixpath.ismount. Patch by Alex Gaynor." - -#~ msgid "" -#~ "`Issue #18514 `__: Fix unreachable " -#~ "Py_DECREF() call in PyCData_FromBaseObj()" -#~ msgstr "" -#~ "`Issue #18514 `__: Fix unreachable " -#~ "Py_DECREF() call in PyCData_FromBaseObj()" - -#~ msgid "" -#~ "`Issue #9177 `__: Calling read() or write() " -#~ "now raises ValueError, not AttributeError, on a closed SSL socket. Patch " -#~ "by Senko Rasic." -#~ msgstr "" -#~ "`Issue #9177 `__: Calling read() or write() " -#~ "now raises ValueError, not AttributeError, on a closed SSL socket. Patch " -#~ "by Senko Rasic." - -#~ msgid "" -#~ "`Issue #18513 `__: Fix behaviour of cmath." -#~ "rect w.r.t. signed zeros on OS X 10.8 + gcc." -#~ msgstr "" -#~ "`Issue #18513 `__: Fix behaviour of cmath." -#~ "rect w.r.t. signed zeros on OS X 10.8 + gcc." - -#~ msgid "" -#~ "`Issue #18479 `__: Changed venv Activate." -#~ "ps1 to make deactivate a function, and removed Deactivate.ps1." -#~ msgstr "" -#~ "`Issue #18479 `__: Changed venv Activate." -#~ "ps1 to make deactivate a function, and removed Deactivate.ps1." - -#~ msgid "" -#~ "`Issue #18480 `__: Add missing call to " -#~ "PyType_Ready to the _elementtree extension." -#~ msgstr "" -#~ "`Issue #18480 `__: Add missing call to " -#~ "PyType_Ready to the _elementtree extension." - -#~ msgid "" -#~ "`Issue #17778 `__: Fix test discovery for " -#~ "test_multiprocessing. (Patch by Zachary Ware.)" -#~ msgstr "" -#~ "`Issue #17778 `__: Fix test discovery for " -#~ "test_multiprocessing. (Patch by Zachary Ware.)" - -#~ msgid "" -#~ "`Issue #18393 `__: The private module " -#~ "_gestalt and private functions platform._mac_ver_gestalt, platform." -#~ "_mac_ver_lookup and platform._bcd2str have been removed. This does not " -#~ "affect the public interface of the platform module." -#~ msgstr "" -#~ "`Issue #18393 `__: The private module " -#~ "_gestalt and private functions platform._mac_ver_gestalt, platform." -#~ "_mac_ver_lookup and platform._bcd2str have been removed. This does not " -#~ "affect the public interface of the platform module." - -#~ msgid "" -#~ "`Issue #17482 `__: functools." -#~ "update_wrapper (and functools.wraps) now set the __wrapped__ attribute " -#~ "correctly even if the underlying function has a __wrapped__ attribute set." -#~ msgstr "" -#~ "`Issue #17482 `__: functools." -#~ "update_wrapper (and functools.wraps) now set the __wrapped__ attribute " -#~ "correctly even if the underlying function has a __wrapped__ attribute set." - -#~ msgid "" -#~ "`Issue #18431 `__: The new email header " -#~ "parser now decodes RFC2047 encoded words in structured headers." -#~ msgstr "" -#~ "`Issue #18431 `__: The new email header " -#~ "parser now decodes RFC2047 encoded words in structured headers." - -#~ msgid "" -#~ "`Issue #18432 `__: The sched module's " -#~ "queue method was incorrectly returning an iterator instead of a list." -#~ msgstr "" -#~ "`Issue #18432 `__: The sched module's " -#~ "queue method was incorrectly returning an iterator instead of a list." - -#~ msgid "" -#~ "`Issue #18044 `__: The new email header " -#~ "parser was mis-parsing encoded words where an encoded character " -#~ "immediately followed the '?' that follows the CTE character, resulting in " -#~ "a decoding failure. They are now decoded correctly." -#~ msgstr "" -#~ "`Issue #18044 `__: The new email header " -#~ "parser was mis-parsing encoded words where an encoded character " -#~ "immediately followed the '?' that follows the CTE character, resulting in " -#~ "a decoding failure. They are now decoded correctly." - -#~ msgid "" -#~ "`Issue #18101 `__: Tcl.split() now process " -#~ "strings nested in a tuple as it do with byte strings." -#~ msgstr "" -#~ "`Issue #18101 `__: Tcl.split() now process " -#~ "strings nested in a tuple as it do with byte strings." - -#~ msgid "" -#~ "`Issue #18116 `__: getpass was always " -#~ "getting an error when testing /dev/tty, and thus was always falling back " -#~ "to stdin, and would then raise an exception if stdin could not be used " -#~ "(such as /dev/null). It also leaked an open file. All of these issues " -#~ "are now fixed." -#~ msgstr "" -#~ "`Issue #18116 `__: getpass was always " -#~ "getting an error when testing /dev/tty, and thus was always falling back " -#~ "to stdin, and would then raise an exception if stdin could not be used " -#~ "(such as /dev/null). It also leaked an open file. All of these issues " -#~ "are now fixed." - -#~ msgid "" -#~ "`Issue #17198 `__: Fix a NameError in the " -#~ "dbm module. Patch by Valentina Mukhamedzhanova." -#~ msgstr "" -#~ "`Issue #17198 `__: Fix a NameError in the " -#~ "dbm module. Patch by Valentina Mukhamedzhanova." - -#~ msgid "" -#~ "`Issue #18013 `__: Fix cgi.FieldStorage to " -#~ "parse the W3C sample form." -#~ msgstr "" -#~ "`Issue #18013 `__: Fix cgi.FieldStorage to " -#~ "parse the W3C sample form." - -#~ msgid "" -#~ "`Issue #18020 `__: improve html.escape " -#~ "speed by an order of magnitude. Patch by Matt Bryant." -#~ msgstr "" -#~ "`Issue #18020 `__: improve html.escape " -#~ "speed by an order of magnitude. Patch by Matt Bryant." - -#~ msgid "" -#~ "`Issue #18347 `__: ElementTree's html " -#~ "serializer now preserves the case of closing tags." -#~ msgstr "" -#~ "`Issue #18347 `__: ElementTree's html " -#~ "serializer now preserves the case of closing tags." - -#~ msgid "" -#~ "`Issue #17261 `__: Ensure " -#~ "multiprocessing's proxies use proper address." -#~ msgstr "" -#~ "`Issue #17261 `__: Ensure " -#~ "multiprocessing's proxies use proper address." - -#~ msgid "" -#~ "`Issue #18343 `__: faulthandler.register() " -#~ "now keeps the previous signal handler when the function is called twice, " -#~ "so faulthandler.unregister() restores correctly the original signal " -#~ "handler." -#~ msgstr "" -#~ "`Issue #18343 `__: faulthandler.register() " -#~ "now keeps the previous signal handler when the function is called twice, " -#~ "so faulthandler.unregister() restores correctly the original signal " -#~ "handler." - -#~ msgid "" -#~ "`Issue #17097 `__: Make multiprocessing " -#~ "ignore EINTR." -#~ msgstr "" -#~ "`Issue #17097 `__: Make multiprocessing " -#~ "ignore EINTR." - -#~ msgid "" -#~ "`Issue #18339 `__: Negative ints keys in " -#~ "unpickler.memo dict no longer cause a segfault inside the _pickle C " -#~ "extension." -#~ msgstr "" -#~ "`Issue #18339 `__: Negative ints keys in " -#~ "unpickler.memo dict no longer cause a segfault inside the _pickle C " -#~ "extension." - -#~ msgid "" -#~ "`Issue #18240 `__: The HMAC module is no " -#~ "longer restricted to bytes and accepts any bytes-like object, e.g. " -#~ "memoryview. Original patch by Jonas Borgström." -#~ msgstr "" -#~ "`Issue #18240 `__: The HMAC module is no " -#~ "longer restricted to bytes and accepts any bytes-like object, e.g. " -#~ "memoryview. Original patch by Jonas Borgström." - -#~ msgid "" -#~ "`Issue #18224 `__: Removed pydoc script " -#~ "from created venv, as it causes problems on Windows and adds no value " -#~ "over and above python -m pydoc ..." -#~ msgstr "" -#~ "`Issue #18224 `__: Removed pydoc script " -#~ "from created venv, as it causes problems on Windows and adds no value " -#~ "over and above python -m pydoc ..." - -#~ msgid "" -#~ "`Issue #18155 `__: The csv module now " -#~ "correctly handles csv files that use a delimiter character that has a " -#~ "special meaning in regexes, instead of throwing an exception." -#~ msgstr "" -#~ "`Issue #18155 `__: The csv module now " -#~ "correctly handles csv files that use a delimiter character that has a " -#~ "special meaning in regexes, instead of throwing an exception." - -#~ msgid "" -#~ "`Issue #14360 `__: encode_quopri can now " -#~ "be successfully used as an encoder when constructing a MIMEApplication " -#~ "object." -#~ msgstr "" -#~ "`Issue #14360 `__: encode_quopri can now " -#~ "be successfully used as an encoder when constructing a MIMEApplication " -#~ "object." - -#~ msgid "" -#~ "`Issue #11390 `__: Add -o and -f command " -#~ "line options to the doctest CLI to specify doctest options (and convert " -#~ "it to using argparse)." -#~ msgstr "" -#~ "`Issue #11390 `__: Add -o and -f command " -#~ "line options to the doctest CLI to specify doctest options (and convert " -#~ "it to using argparse)." - -#~ msgid "" -#~ "`Issue #18135 `__: ssl.SSLSocket.write() " -#~ "now raises an OverflowError if the input string in longer than 2 " -#~ "gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if " -#~ "the password is longer than 2 gigabytes. The ssl module does not support " -#~ "partial write." -#~ msgstr "" -#~ "`Issue #18135 `__: ssl.SSLSocket.write() " -#~ "now raises an OverflowError if the input string in longer than 2 " -#~ "gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if " -#~ "the password is longer than 2 gigabytes. The ssl module does not support " -#~ "partial write." - -#~ msgid "" -#~ "`Issue #11016 `__: Add C implementation of " -#~ "the stat module as _stat." -#~ msgstr "" -#~ "`Issue #11016 `__: Add C implementation of " -#~ "the stat module as _stat." - -#~ msgid "" -#~ "`Issue #18248 `__: Fix libffi build on AIX." -#~ msgstr "" -#~ "`Issue #18248 `__: Fix libffi build on AIX." - -#~ msgid "" -#~ "`Issue #18259 `__: Declare sethostname in " -#~ "socketmodule.c for AIX" -#~ msgstr "" -#~ "`Issue #18259 `__: Declare sethostname in " -#~ "socketmodule.c for AIX" - -#~ msgid "" -#~ "`Issue #18147 `__: Add diagnostic " -#~ "functions to ssl.SSLContext(). get_ca_list() lists all loaded CA " -#~ "certificates and cert_store_stats() returns amount of loaded X.509 certs, " -#~ "X.509 CA certs and CRLs." -#~ msgstr "" -#~ "`Issue #18147 `__: Add diagnostic " -#~ "functions to ssl.SSLContext(). get_ca_list() lists all loaded CA " -#~ "certificates and cert_store_stats() returns amount of loaded X.509 certs, " -#~ "X.509 CA certs and CRLs." - -#~ msgid "" -#~ "`Issue #18167 `__: cgi.FieldStorage no " -#~ "longer fails to handle multipart/form-data when ``\\r\\n`` appears at end " -#~ "of 65535 bytes without other newlines." -#~ msgstr "" -#~ "`Issue #18167 `__: cgi.FieldStorage no " -#~ "longer fails to handle multipart/form-data when ``\\r\\n`` appears at end " -#~ "of 65535 bytes without other newlines." - -#~ msgid "" -#~ "`Issue #18076 `__: Introduce importlib." -#~ "util.decode_source()." -#~ msgstr "" -#~ "`Issue #18076 `__: Introduce importlib." -#~ "util.decode_source()." - -#~ msgid "" -#~ "`Issue #18357 `__: add tests for dictview " -#~ "set difference. Patch by Fraser Tweedale." -#~ msgstr "" -#~ "`Issue #18357 `__: add tests for dictview " -#~ "set difference. Patch by Fraser Tweedale." - -#~ msgid "" -#~ "`Issue #18058 `__, 18057: Make the " -#~ "namespace package loader meet the importlib.abc.InspectLoader ABC, " -#~ "allowing for namespace packages to work with runpy." -#~ msgstr "" -#~ "`Issue #18058 `__, 18057: Make the " -#~ "namespace package loader meet the importlib.abc.InspectLoader ABC, " -#~ "allowing for namespace packages to work with runpy." - -#~ msgid "" -#~ "`Issue #17177 `__: The imp module is " -#~ "pending deprecation." -#~ msgstr "" -#~ "`Issue #17177 `__: The imp module is " -#~ "pending deprecation." - -#~ msgid "" -#~ "`Issue #18194 `__: Introduce importlib." -#~ "util.cache_from_source() and source_from_cache() while documenting the " -#~ "equivalent functions in imp as deprecated." -#~ msgstr "" -#~ "`Issue #18194 `__: Introduce importlib." -#~ "util.cache_from_source() and source_from_cache() while documenting the " -#~ "equivalent functions in imp as deprecated." - -#~ msgid "" -#~ "`Issue #17907 `__: Document imp." -#~ "new_module() as deprecated in favour of types.ModuleType." -#~ msgstr "" -#~ "`Issue #17907 `__: Document imp." -#~ "new_module() as deprecated in favour of types.ModuleType." - -#~ msgid "" -#~ "`Issue #18192 `__: Introduce importlib." -#~ "util.MAGIC_NUMBER and document as deprecated imp.get_magic()." -#~ msgstr "" -#~ "`Issue #18192 `__: Introduce importlib." -#~ "util.MAGIC_NUMBER and document as deprecated imp.get_magic()." - -#~ msgid "" -#~ "`Issue #18149 `__: Add filecmp." -#~ "clear_cache() to manually clear the filecmp cache. Patch by Mark Levitt" -#~ msgstr "" -#~ "`Issue #18149 `__: Add filecmp." -#~ "clear_cache() to manually clear the filecmp cache. Patch by Mark Levitt" - -#~ msgid "" -#~ "`Issue #18193 `__: Add importlib.reload()." -#~ msgstr "" -#~ "`Issue #18193 `__: Add importlib.reload()." - -#~ msgid "" -#~ "`Issue #18157 `__: Stop using imp." -#~ "load_module() in pydoc." -#~ msgstr "" -#~ "`Issue #18157 `__: Stop using imp." -#~ "load_module() in pydoc." - -#~ msgid "" -#~ "`Issue #16102 `__: Make uuid." -#~ "_netbios_getnode() work again on Python 3." -#~ msgstr "" -#~ "`Issue #16102 `__: Make uuid." -#~ "_netbios_getnode() work again on Python 3." - -#~ msgid "" -#~ "`Issue #17134 `__: Add ssl." -#~ "enum_cert_store() as interface to Windows' cert store." -#~ msgstr "" -#~ "`Issue #17134 `__: Add ssl." -#~ "enum_cert_store() as interface to Windows' cert store." - -#~ msgid "" -#~ "`Issue #18143 `__: Implement ssl." -#~ "get_default_verify_paths() in order to debug the default locations for " -#~ "cafile and capath." -#~ msgstr "" -#~ "`Issue #18143 `__: Implement ssl." -#~ "get_default_verify_paths() in order to debug the default locations for " -#~ "cafile and capath." - -#~ msgid "" -#~ "`Issue #17314 `__: Move multiprocessing." -#~ "forking over to importlib." -#~ msgstr "" -#~ "`Issue #17314 `__: Move multiprocessing." -#~ "forking over to importlib." - -#~ msgid "" -#~ "`Issue #11959 `__: SMTPServer and " -#~ "SMTPChannel now take an optional map, use of which avoids affecting " -#~ "global state." -#~ msgstr "" -#~ "`Issue #11959 `__: SMTPServer and " -#~ "SMTPChannel now take an optional map, use of which avoids affecting " -#~ "global state." - -#~ msgid "" -#~ "`Issue #18109 `__: os.uname() now decodes " -#~ "fields from the locale encoding, and socket.gethostname() now decodes the " -#~ "hostname from the locale encoding, instead of using the UTF-8 encoding in " -#~ "strict mode." -#~ msgstr "" -#~ "`Issue #18109 `__: os.uname() now decodes " -#~ "fields from the locale encoding, and socket.gethostname() now decodes the " -#~ "hostname from the locale encoding, instead of using the UTF-8 encoding in " -#~ "strict mode." - -#~ msgid "" -#~ "`Issue #18089 `__: Implement importlib.abc." -#~ "InspectLoader.load_module." -#~ msgstr "" -#~ "`Issue #18089 `__: Implement importlib.abc." -#~ "InspectLoader.load_module." - -#~ msgid "" -#~ "`Issue #18088 `__: Introduce importlib.abc." -#~ "Loader.init_module_attrs for setting module attributes. Leads to the " -#~ "pending deprecation of importlib.util.module_for_loader." -#~ msgstr "" -#~ "`Issue #18088 `__: Introduce importlib.abc." -#~ "Loader.init_module_attrs for setting module attributes. Leads to the " -#~ "pending deprecation of importlib.util.module_for_loader." - -#~ msgid "" -#~ "`Issue #17403 `__: urllib.parse." -#~ "robotparser normalizes the urls before adding to ruleline. This helps in " -#~ "handling certain types invalid urls in a conservative manner. Patch " -#~ "contributed by Mher Movsisyan." -#~ msgstr "" -#~ "`Issue #17403 `__: urllib.parse." -#~ "robotparser normalizes the urls before adding to ruleline. This helps in " -#~ "handling certain types invalid urls in a conservative manner. Patch " -#~ "contributed by Mher Movsisyan." - -#~ msgid "" -#~ "`Issue #18070 `__: Have importlib.util." -#~ "module_for_loader() set attributes unconditionally in order to properly " -#~ "support reloading." -#~ msgstr "" -#~ "`Issue #18070 `__: Have importlib.util." -#~ "module_for_loader() set attributes unconditionally in order to properly " -#~ "support reloading." - -#~ msgid "" -#~ "`Issue #18025 `__: Fixed a segfault in io." -#~ "BufferedIOBase.readinto() when raw stream's read() returns more bytes " -#~ "than requested." -#~ msgstr "" -#~ "`Issue #18025 `__: Fixed a segfault in io." -#~ "BufferedIOBase.readinto() when raw stream's read() returns more bytes " -#~ "than requested." - -#~ msgid "" -#~ "`Issue #18011 `__: As was originally " -#~ "intended, base64.b32decode() now raises a binascii.Error if there are non-" -#~ "b32-alphabet characters present in the input string, instead of a " -#~ "TypeError." -#~ msgstr "" -#~ "`Issue #18011 `__: As was originally " -#~ "intended, base64.b32decode() now raises a binascii.Error if there are non-" -#~ "b32-alphabet characters present in the input string, instead of a " -#~ "TypeError." - -#~ msgid "" -#~ "`Issue #18072 `__: Implement importlib.abc." -#~ "InspectLoader.get_code() and importlib.abc.ExecutionLoader.get_code()." -#~ msgstr "" -#~ "`Issue #18072 `__: Implement importlib.abc." -#~ "InspectLoader.get_code() and importlib.abc.ExecutionLoader.get_code()." - -#~ msgid "" -#~ "`Issue #8240 `__: Set the " -#~ "SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER flag on SSL sockets." -#~ msgstr "" -#~ "`Issue #8240 `__: Set the " -#~ "SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER flag on SSL sockets." - -#~ msgid "" -#~ "`Issue #17269 `__: Workaround for socket." -#~ "getaddrinfo crash on MacOS X with port None or \"0\" and flags " -#~ "AI_NUMERICSERV." -#~ msgstr "" -#~ "`Issue #17269 `__: Workaround for socket." -#~ "getaddrinfo crash on MacOS X with port None or \"0\" and flags " -#~ "AI_NUMERICSERV." - -#~ msgid "" -#~ "`Issue #16986 `__: ElementTree now " -#~ "correctly works with string input when the internal XML encoding is not " -#~ "UTF-8 or US-ASCII." -#~ msgstr "" -#~ "`Issue #16986 `__: ElementTree now " -#~ "correctly works with string input when the internal XML encoding is not " -#~ "UTF-8 or US-ASCII." - -#~ msgid "" -#~ "`Issue #17996 `__: socket module now " -#~ "exposes AF_LINK constant on BSD and OSX." -#~ msgstr "" -#~ "`Issue #17996 `__: socket module now " -#~ "exposes AF_LINK constant on BSD and OSX." - -#~ msgid "" -#~ "`Issue #17900 `__: Allowed pickling of " -#~ "recursive OrderedDicts. Decreased pickled size and pickling time." -#~ msgstr "" -#~ "`Issue #17900 `__: Allowed pickling of " -#~ "recursive OrderedDicts. Decreased pickled size and pickling time." - -#~ msgid "" -#~ "`Issue #17914 `__: Add os.cpu_count(). " -#~ "Patch by Yogesh Chaudhari, based on an initial patch by Trent Nelson." -#~ msgstr "" -#~ "`Issue #17914 `__: Add os.cpu_count(). " -#~ "Patch by Yogesh Chaudhari, based on an initial patch by Trent Nelson." - -#~ msgid "" -#~ "`Issue #17812 `__: Fixed quadratic " -#~ "complexity of base64.b32encode(). Optimize base64.b32encode() and base64." -#~ "b32decode() (speed up to 3x)." -#~ msgstr "" -#~ "`Issue #17812 `__: Fixed quadratic " -#~ "complexity of base64.b32encode(). Optimize base64.b32encode() and base64." -#~ "b32decode() (speed up to 3x)." - -#~ msgid "" -#~ "`Issue #17980 `__: Fix possible abuse of " -#~ "ssl.match_hostname() for denial of service using certificates with many " -#~ "wildcards (CVE-2013-2099)." -#~ msgstr "" -#~ "`Issue #17980 `__: Fix possible abuse of " -#~ "ssl.match_hostname() for denial of service using certificates with many " -#~ "wildcards (CVE-2013-2099)." - -#~ msgid "" -#~ "`Issue #15758 `__: Fix FileIO.readall() so " -#~ "it no longer has O(n**2) complexity." -#~ msgstr "" -#~ "`Issue #15758 `__: Fix FileIO.readall() so " -#~ "it no longer has O(n**2) complexity." - -#~ msgid "" -#~ "`Issue #14596 `__: The struct.Struct() " -#~ "objects now use a more compact implementation." -#~ msgstr "" -#~ "`Issue #14596 `__: The struct.Struct() " -#~ "objects now use a more compact implementation." - -#~ msgid "" -#~ "`Issue #17981 `__: logging's SysLogHandler " -#~ "now closes the socket when it catches socket OSErrors." -#~ msgstr "" -#~ "`Issue #17981 `__: logging's SysLogHandler " -#~ "now closes the socket when it catches socket OSErrors." - -#~ msgid "" -#~ "`Issue #17964 `__: Fix os.sysconf(): the " -#~ "return type of the C sysconf() function is long, not int." -#~ msgstr "" -#~ "`Issue #17964 `__: Fix os.sysconf(): the " -#~ "return type of the C sysconf() function is long, not int." - -#~ msgid "" -#~ "`Issue #17754 `__: Make ctypes.util." -#~ "find_library() independent of the locale." -#~ msgstr "" -#~ "`Issue #17754 `__: Make ctypes.util." -#~ "find_library() independent of the locale." - -#~ msgid "" -#~ "`Issue #17606 `__: Fixed support of " -#~ "encoded byte strings in the XMLGenerator characters() and " -#~ "ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez." -#~ msgstr "" -#~ "`Issue #17606 `__: Fixed support of " -#~ "encoded byte strings in the XMLGenerator characters() and " -#~ "ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez." - -#~ msgid "" -#~ "`Issue #17732 `__: Ignore distutils.cfg " -#~ "options pertaining to install paths if a virtual environment is active." -#~ msgstr "" -#~ "`Issue #17732 `__: Ignore distutils.cfg " -#~ "options pertaining to install paths if a virtual environment is active." - -#~ msgid "" -#~ "`Issue #17915 `__: Fix interoperability of " -#~ "xml.sax with file objects returned by codecs.open()." -#~ msgstr "" -#~ "`Issue #17915 `__: Fix interoperability of " -#~ "xml.sax with file objects returned by codecs.open()." - -#~ msgid "" -#~ "`Issue #16601 `__: Restarting iteration " -#~ "over tarfile really restarts rather than continuing from where it left " -#~ "off. Patch by Michael Birtwell." -#~ msgstr "" -#~ "`Issue #16601 `__: Restarting iteration " -#~ "over tarfile really restarts rather than continuing from where it left " -#~ "off. Patch by Michael Birtwell." - -#~ msgid "" -#~ "`Issue #17289 `__: The readline module now " -#~ "plays nicer with external modules or applications changing the " -#~ "rl_completer_word_break_characters global variable. Initial patch by " -#~ "Bradley Froehle." -#~ msgstr "" -#~ "`Issue #17289 `__: The readline module now " -#~ "plays nicer with external modules or applications changing the " -#~ "rl_completer_word_break_characters global variable. Initial patch by " -#~ "Bradley Froehle." - -#~ msgid "" -#~ "`Issue #12181 `__: select module: Fix " -#~ "struct kevent definition on OpenBSD 64-bit platforms. Patch by Federico " -#~ "Schwindt." -#~ msgstr "" -#~ "`Issue #12181 `__: select module: Fix " -#~ "struct kevent definition on OpenBSD 64-bit platforms. Patch by Federico " -#~ "Schwindt." - -#~ msgid "" -#~ "`Issue #11816 `__: multiple improvements " -#~ "to the dis module: get_instructions generator, ability to redirect output " -#~ "to a file, Bytecode and Instruction abstractions. Patch by Nick Coghlan, " -#~ "Ryan Kelly and Thomas Kluyver." -#~ msgstr "" -#~ "`Issue #11816 `__: multiple improvements " -#~ "to the dis module: get_instructions generator, ability to redirect output " -#~ "to a file, Bytecode and Instruction abstractions. Patch by Nick Coghlan, " -#~ "Ryan Kelly and Thomas Kluyver." - -#~ msgid "" -#~ "`Issue #13831 `__: Embed stringification " -#~ "of remote traceback in local traceback raised when pool task raises an " -#~ "exception." -#~ msgstr "" -#~ "`Issue #13831 `__: Embed stringification " -#~ "of remote traceback in local traceback raised when pool task raises an " -#~ "exception." - -#~ msgid "" -#~ "`Issue #15528 `__: Add weakref.finalize to " -#~ "support finalization using weakref callbacks." -#~ msgstr "" -#~ "`Issue #15528 `__: Add weakref.finalize to " -#~ "support finalization using weakref callbacks." - -#~ msgid "" -#~ "`Issue #14173 `__: Avoid crashing when " -#~ "reading a signal handler during interpreter shutdown." -#~ msgstr "" -#~ "`Issue #14173 `__: Avoid crashing when " -#~ "reading a signal handler during interpreter shutdown." - -#~ msgid "" -#~ "`Issue #15902 `__: Fix imp.load_module() " -#~ "accepting None as a file when loading an extension module." -#~ msgstr "" -#~ "`Issue #15902 `__: Fix imp.load_module() " -#~ "accepting None as a file when loading an extension module." - -#~ msgid "" -#~ "`Issue #13721 `__: SSLSocket.getpeercert() " -#~ "and SSLSocket.do_handshake() now raise an OSError with ENOTCONN, instead " -#~ "of an AttributeError, when the SSLSocket is not connected." -#~ msgstr "" -#~ "`Issue #13721 `__: SSLSocket.getpeercert() " -#~ "and SSLSocket.do_handshake() now raise an OSError with ENOTCONN, instead " -#~ "of an AttributeError, when the SSLSocket is not connected." - -#~ msgid "" -#~ "`Issue #14679 `__: add an __all__ (that " -#~ "contains only HTMLParser) to html.parser." -#~ msgstr "" -#~ "`Issue #14679 `__: add an __all__ (that " -#~ "contains only HTMLParser) to html.parser." - -#~ msgid "" -#~ "`Issue #17802 `__: Fix an " -#~ "UnboundLocalError in html.parser. Initial tests by Thomas Barlow." -#~ msgstr "" -#~ "`Issue #17802 `__: Fix an " -#~ "UnboundLocalError in html.parser. Initial tests by Thomas Barlow." - -#~ msgid "" -#~ "`Issue #17358 `__: Modules loaded by imp." -#~ "load_source() and load_compiled() (and by extension load_module()) now " -#~ "have a better chance of working when reloaded." -#~ msgstr "" -#~ "`Issue #17358 `__: Modules loaded by imp." -#~ "load_source() and load_compiled() (and by extension load_module()) now " -#~ "have a better chance of working when reloaded." - -#~ msgid "" -#~ "`Issue #17804 `__: New function ``struct." -#~ "iter_unpack`` allows for streaming struct unpacking." -#~ msgstr "" -#~ "`Issue #17804 `__: New function ``struct." -#~ "iter_unpack`` allows for streaming struct unpacking." - -#~ msgid "" -#~ "`Issue #17830 `__: When keyword.py is used " -#~ "to update a keyword file, it now preserves the line endings of the " -#~ "original file." -#~ msgstr "" -#~ "`Issue #17830 `__: When keyword.py is used " -#~ "to update a keyword file, it now preserves the line endings of the " -#~ "original file." - -#~ msgid "" -#~ "`Issue #17272 `__: Making the urllib." -#~ "request's Request.full_url a descriptor. Fixes bugs with assignment to " -#~ "full_url. Patch by Demian Brecht." -#~ msgstr "" -#~ "`Issue #17272 `__: Making the urllib." -#~ "request's Request.full_url a descriptor. Fixes bugs with assignment to " -#~ "full_url. Patch by Demian Brecht." - -#~ msgid "" -#~ "`Issue #17353 `__: Plistlib emitted empty " -#~ "data tags with deeply nested datastructures" -#~ msgstr "" -#~ "`Issue #17353 `__: Plistlib emitted empty " -#~ "data tags with deeply nested datastructures" - -#~ msgid "" -#~ "`Issue #11714 `__: Use 'with' statements " -#~ "to assure a Semaphore releases a condition variable. Original patch by " -#~ "Thomas Rachel." -#~ msgstr "" -#~ "`Issue #11714 `__: Use 'with' statements " -#~ "to assure a Semaphore releases a condition variable. Original patch by " -#~ "Thomas Rachel." - -#~ msgid "" -#~ "`Issue #16624 `__: `subprocess." -#~ "check_output` now accepts an `input` argument, allowing the subprocess's " -#~ "stdin to be provided as a (byte) string. Patch by Zack Weinberg." -#~ msgstr "" -#~ "`Issue #16624 `__: `subprocess." -#~ "check_output` now accepts an `input` argument, allowing the subprocess's " -#~ "stdin to be provided as a (byte) string. Patch by Zack Weinberg." - -#~ msgid "" -#~ "`Issue #17795 `__: Reverted backwards-" -#~ "incompatible change in SysLogHandler with Unix domain sockets." -#~ msgstr "" -#~ "`Issue #17795 `__: Reverted backwards-" -#~ "incompatible change in SysLogHandler with Unix domain sockets." - -#~ msgid "" -#~ "`Issue #16694 `__: Add a pure Python " -#~ "implementation of the operator module. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16694 `__: Add a pure Python " -#~ "implementation of the operator module. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #11182 `__: remove the unused and " -#~ "undocumented pydoc.Scanner class. Patch by Martin Morrison." -#~ msgstr "" -#~ "`Issue #11182 `__: remove the unused and " -#~ "undocumented pydoc.Scanner class. Patch by Martin Morrison." - -#~ msgid "" -#~ "`Issue #17741 `__: Add ElementTree." -#~ "XMLPullParser, an event-driven parser for non-blocking applications." -#~ msgstr "" -#~ "`Issue #17741 `__: Add ElementTree." -#~ "XMLPullParser, an event-driven parser for non-blocking applications." - -#~ msgid "" -#~ "`Issue #17555 `__: Fix ForkAwareThreadLock " -#~ "so that size of after fork registry does not grow exponentially with " -#~ "generation of process." -#~ msgstr "" -#~ "`Issue #17555 `__: Fix ForkAwareThreadLock " -#~ "so that size of after fork registry does not grow exponentially with " -#~ "generation of process." - -#~ msgid "" -#~ "`Issue #17707 `__: fix regression in " -#~ "multiprocessing.Queue's get() method where it did not block for short " -#~ "timeouts." -#~ msgstr "" -#~ "`Issue #17707 `__: fix regression in " -#~ "multiprocessing.Queue's get() method where it did not block for short " -#~ "timeouts." - -#~ msgid "" -#~ "`Issue #17720 `__: Fix the Python " -#~ "implementation of pickle.Unpickler to correctly process the APPENDS " -#~ "opcode when it is used on non-list objects." -#~ msgstr "" -#~ "`Issue #17720 `__: Fix the Python " -#~ "implementation of pickle.Unpickler to correctly process the APPENDS " -#~ "opcode when it is used on non-list objects." - -#~ msgid "" -#~ "`Issue #17012 `__: shutil.which() no " -#~ "longer falls back to the PATH environment variable if an empty path " -#~ "argument is specified. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #17012 `__: shutil.which() no " -#~ "longer falls back to the PATH environment variable if an empty path " -#~ "argument is specified. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #17710 `__: Fix pickle raising a " -#~ "SystemError on bogus input." -#~ msgstr "" -#~ "`Issue #17710 `__: Fix pickle raising a " -#~ "SystemError on bogus input." - -#~ msgid "" -#~ "`Issue #17341 `__: Include the invalid " -#~ "name in the error messages from re about invalid group names." -#~ msgstr "" -#~ "`Issue #17341 `__: Include the invalid " -#~ "name in the error messages from re about invalid group names." - -#~ msgid "" -#~ "`Issue #17702 `__: os.environ now raises " -#~ "KeyError with the original environment variable name (str on UNIX), " -#~ "instead of using the encoded name (bytes on UNIX)." -#~ msgstr "" -#~ "`Issue #17702 `__: os.environ now raises " -#~ "KeyError with the original environment variable name (str on UNIX), " -#~ "instead of using the encoded name (bytes on UNIX)." - -#~ msgid "" -#~ "`Issue #16163 `__: Make the importlib " -#~ "based version of pkgutil.iter_importers work for submodules. Initial " -#~ "patch by Berker Peksag." -#~ msgstr "" -#~ "`Issue #16163 `__: Make the importlib " -#~ "based version of pkgutil.iter_importers work for submodules. Initial " -#~ "patch by Berker Peksag." - -#~ msgid "" -#~ "`Issue #16804 `__: Fix a bug in the 'site' " -#~ "module that caused running 'python -S -m site' to incorrectly throw an " -#~ "exception." -#~ msgstr "" -#~ "`Issue #16804 `__: Fix a bug in the 'site' " -#~ "module that caused running 'python -S -m site' to incorrectly throw an " -#~ "exception." - -#~ msgid "" -#~ "`Issue #15480 `__: Remove the deprecated " -#~ "and unused TYPE_INT64 code from marshal. Initial patch by Daniel Riti." -#~ msgstr "" -#~ "`Issue #15480 `__: Remove the deprecated " -#~ "and unused TYPE_INT64 code from marshal. Initial patch by Daniel Riti." - -#~ msgid "" -#~ "`Issue #2118 `__: SMTPException is now a " -#~ "subclass of OSError." -#~ msgstr "" -#~ "`Issue #2118 `__: SMTPException is now a " -#~ "subclass of OSError." - -#~ msgid "" -#~ "`Issue #17016 `__: Get rid of possible " -#~ "pointer wraparounds and integer overflows in the re module. Patch by " -#~ "Nickolai Zeldovich." -#~ msgstr "" -#~ "`Issue #17016 `__: Get rid of possible " -#~ "pointer wraparounds and integer overflows in the re module. Patch by " -#~ "Nickolai Zeldovich." - -#~ msgid "" -#~ "`Issue #16658 `__: add missing return to " -#~ "HTTPConnection.send(). Patch by Jeff Knupp." -#~ msgstr "" -#~ "`Issue #16658 `__: add missing return to " -#~ "HTTPConnection.send(). Patch by Jeff Knupp." - -#~ msgid "" -#~ "`Issue #9556 `__: the logging package now " -#~ "allows specifying a time-of-day for a TimedRotatingFileHandler to rotate." -#~ msgstr "" -#~ "`Issue #9556 `__: the logging package now " -#~ "allows specifying a time-of-day for a TimedRotatingFileHandler to rotate." - -#~ msgid "" -#~ "`Issue #14971 `__: unittest test discovery " -#~ "no longer gets confused when a function has a different __name__ than its " -#~ "name in the TestCase class dictionary." -#~ msgstr "" -#~ "`Issue #14971 `__: unittest test discovery " -#~ "no longer gets confused when a function has a different __name__ than its " -#~ "name in the TestCase class dictionary." - -#~ msgid "" -#~ "`Issue #17487 `__: The wave getparams " -#~ "method now returns a namedtuple rather than a plain tuple." -#~ msgstr "" -#~ "`Issue #17487 `__: The wave getparams " -#~ "method now returns a namedtuple rather than a plain tuple." - -#~ msgid "" -#~ "`Issue #17675 `__: socket repr() provides " -#~ "local and remote addresses (if any). Patch by Giampaolo Rodola'" -#~ msgstr "" -#~ "`Issue #17675 `__: socket repr() provides " -#~ "local and remote addresses (if any). Patch by Giampaolo Rodola'" - -#~ msgid "" -#~ "`Issue #17093 `__: Make the ABCs in " -#~ "importlib.abc provide default values or raise reasonable exceptions for " -#~ "their methods to make them more amenable to super() calls." -#~ msgstr "" -#~ "`Issue #17093 `__: Make the ABCs in " -#~ "importlib.abc provide default values or raise reasonable exceptions for " -#~ "their methods to make them more amenable to super() calls." - -#~ msgid "" -#~ "`Issue #17566 `__: Make importlib.abc." -#~ "Loader.module_repr() optional instead of an abstractmethod; now it raises " -#~ "NotImplementedError so as to be ignored by default." -#~ msgstr "" -#~ "`Issue #17566 `__: Make importlib.abc." -#~ "Loader.module_repr() optional instead of an abstractmethod; now it raises " -#~ "NotImplementedError so as to be ignored by default." - -#~ msgid "" -#~ "`Issue #17678 `__: Remove the use of " -#~ "deprecated method in http/cookiejar.py by changing the call to " -#~ "get_origin_req_host() to origin_req_host." -#~ msgstr "" -#~ "`Issue #17678 `__: Remove the use of " -#~ "deprecated method in http/cookiejar.py by changing the call to " -#~ "get_origin_req_host() to origin_req_host." - -#~ msgid "" -#~ "`Issue #17666 `__: Fix reading gzip files " -#~ "with an extra field." -#~ msgstr "" -#~ "`Issue #17666 `__: Fix reading gzip files " -#~ "with an extra field." - -#~ msgid "" -#~ "`Issue #16475 `__: Support object " -#~ "instancing, recursion and interned strings in marshal" -#~ msgstr "" -#~ "`Issue #16475 `__: Support object " -#~ "instancing, recursion and interned strings in marshal" - -#~ msgid "" -#~ "`Issue #17502 `__: Process DEFAULT values " -#~ "in mock side_effect that returns iterator." -#~ msgstr "" -#~ "`Issue #17502 `__: Process DEFAULT values " -#~ "in mock side_effect that returns iterator." - -#~ msgid "" -#~ "`Issue #16795 `__: On the ast.arguments " -#~ "object, unify vararg with varargannotation and kwarg and kwargannotation. " -#~ "Change the column offset of ast.Attribute to be at the attribute name." -#~ msgstr "" -#~ "`Issue #16795 `__: On the ast.arguments " -#~ "object, unify vararg with varargannotation and kwarg and kwargannotation. " -#~ "Change the column offset of ast.Attribute to be at the attribute name." - -#~ msgid "" -#~ "`Issue #17434 `__: Properly raise a " -#~ "SyntaxError when a string occurs between future imports." -#~ msgstr "" -#~ "`Issue #17434 `__: Properly raise a " -#~ "SyntaxError when a string occurs between future imports." - -#~ msgid "" -#~ "`Issue #17117 `__: Import and @importlib." -#~ "util.set_loader now set __loader__ when it has a value of None or the " -#~ "attribute doesn't exist." -#~ msgstr "" -#~ "`Issue #17117 `__: Import and @importlib." -#~ "util.set_loader now set __loader__ when it has a value of None or the " -#~ "attribute doesn't exist." - -#~ msgid "" -#~ "`Issue #17032 `__: The \"global\" in the " -#~ "\"NameError: global name 'x' is not defined\" error message has been " -#~ "removed. Patch by Ram Rachum." -#~ msgstr "" -#~ "`Issue #17032 `__: The \"global\" in the " -#~ "\"NameError: global name 'x' is not defined\" error message has been " -#~ "removed. Patch by Ram Rachum." - -#~ msgid "" -#~ "`Issue #18080 `__: When building a C " -#~ "extension module on OS X, if the compiler is overridden with the CC " -#~ "environment variable, use the new compiler as the default for linking if " -#~ "LDSHARED is not also overridden. This restores Distutils behavior " -#~ "introduced in 3.2.3 and inadvertently dropped in 3.3.0." -#~ msgstr "" -#~ "`Issue #18080 `__: When building a C " -#~ "extension module on OS X, if the compiler is overridden with the CC " -#~ "environment variable, use the new compiler as the default for linking if " -#~ "LDSHARED is not also overridden. This restores Distutils behavior " -#~ "introduced in 3.2.3 and inadvertently dropped in 3.3.0." - -#~ msgid "" -#~ "`Issue #18113 `__: Fixed a refcount leak " -#~ "in the curses.panel module's set_userptr() method. Reported by Atsuo " -#~ "Ishimoto." -#~ msgstr "" -#~ "`Issue #18113 `__: Fixed a refcount leak " -#~ "in the curses.panel module's set_userptr() method. Reported by Atsuo " -#~ "Ishimoto." - -#~ msgid "" -#~ "`Issue #15596 `__: Faster pickling of " -#~ "unicode strings." -#~ msgstr "" -#~ "`Issue #15596 `__: Faster pickling of " -#~ "unicode strings." - -#~ msgid "" -#~ "`Issue #17572 `__: Avoid chained " -#~ "exceptions when passing bad directives to time.strptime(). Initial patch " -#~ "by Claudiu Popa." -#~ msgstr "" -#~ "`Issue #17572 `__: Avoid chained " -#~ "exceptions when passing bad directives to time.strptime(). Initial patch " -#~ "by Claudiu Popa." - -#~ msgid "" -#~ "`Issue #17435 `__: threading.Timer's " -#~ "__init__ method no longer uses mutable default values for the args and " -#~ "kwargs parameters." -#~ msgstr "" -#~ "`Issue #17435 `__: threading.Timer's " -#~ "__init__ method no longer uses mutable default values for the args and " -#~ "kwargs parameters." - -#~ msgid "" -#~ "`Issue #17526 `__: fix an IndexError " -#~ "raised while passing code without filename to inspect.findsource(). " -#~ "Initial patch by Tyler Doyle." -#~ msgstr "" -#~ "`Issue #17526 `__: fix an IndexError " -#~ "raised while passing code without filename to inspect.findsource(). " -#~ "Initial patch by Tyler Doyle." - -#~ msgid "" -#~ "`Issue #17540 `__: Added style parameter " -#~ "to logging formatter configuration by dict." -#~ msgstr "" -#~ "`Issue #17540 `__: Added style parameter " -#~ "to logging formatter configuration by dict." - -#~ msgid "" -#~ "`Issue #16692 `__: The ssl module now " -#~ "supports TLS 1.1 and TLS 1.2. Initial patch by Michele Orrù." -#~ msgstr "" -#~ "`Issue #16692 `__: The ssl module now " -#~ "supports TLS 1.1 and TLS 1.2. Initial patch by Michele Orrù." - -#~ msgid "" -#~ "`Issue #17025 `__: multiprocessing: Reduce " -#~ "Queue and SimpleQueue contention." -#~ msgstr "" -#~ "`Issue #17025 `__: multiprocessing: Reduce " -#~ "Queue and SimpleQueue contention." - -#~ msgid "" -#~ "`Issue #17536 `__: Add to webbrowser's " -#~ "browser list: www-browser, x-www-browser, iceweasel, iceape." -#~ msgstr "" -#~ "`Issue #17536 `__: Add to webbrowser's " -#~ "browser list: www-browser, x-www-browser, iceweasel, iceape." - -#~ msgid "" -#~ "`Issue #17150 `__: pprint now uses line " -#~ "continuations to wrap long string literals." -#~ msgstr "" -#~ "`Issue #17150 `__: pprint now uses line " -#~ "continuations to wrap long string literals." - -#~ msgid "" -#~ "`Issue #17488 `__: Change the subprocess." -#~ "Popen bufsize parameter default value from unbuffered (0) to buffering " -#~ "(-1) to match the behavior existing code expects and match the behavior " -#~ "of the subprocess module in Python 2 to avoid introducing hard to track " -#~ "down bugs." -#~ msgstr "" -#~ "`Issue #17488 `__: Change the subprocess." -#~ "Popen bufsize parameter default value from unbuffered (0) to buffering " -#~ "(-1) to match the behavior existing code expects and match the behavior " -#~ "of the subprocess module in Python 2 to avoid introducing hard to track " -#~ "down bugs." - -#~ msgid "" -#~ "`Issue #17521 `__: Corrected non-enabling " -#~ "of logger following two calls to fileConfig()." -#~ msgstr "" -#~ "`Issue #17521 `__: Corrected non-enabling " -#~ "of logger following two calls to fileConfig()." - -#~ msgid "" -#~ "`Issue #17508 `__: Corrected logging " -#~ "MemoryHandler configuration in dictConfig() where the target handler " -#~ "wasn't configured first." -#~ msgstr "" -#~ "`Issue #17508 `__: Corrected logging " -#~ "MemoryHandler configuration in dictConfig() where the target handler " -#~ "wasn't configured first." - -#~ msgid "" -#~ "`Issue #17209 `__: curses.window.get_wch() " -#~ "now correctly handles KeyboardInterrupt (CTRL+c)." -#~ msgstr "" -#~ "`Issue #17209 `__: curses.window.get_wch() " -#~ "now correctly handles KeyboardInterrupt (CTRL+c)." - -#~ msgid "" -#~ "`Issue #5713 `__: smtplib now handles 421 " -#~ "(closing connection) error codes when sending mail by closing the socket " -#~ "and reporting the 421 error code via the exception appropriate to the " -#~ "command that received the error response." -#~ msgstr "" -#~ "`Issue #5713 `__: smtplib now handles 421 " -#~ "(closing connection) error codes when sending mail by closing the socket " -#~ "and reporting the 421 error code via the exception appropriate to the " -#~ "command that received the error response." - -#~ msgid "" -#~ "`Issue #16997 `__: unittest.TestCase now " -#~ "provides a subTest() context manager to procedurally generate, in an easy " -#~ "way, small test instances." -#~ msgstr "" -#~ "`Issue #16997 `__: unittest.TestCase now " -#~ "provides a subTest() context manager to procedurally generate, in an easy " -#~ "way, small test instances." - -#~ msgid "" -#~ "`Issue #17485 `__: Also delete the Request " -#~ "Content-Length header if the data attribute is deleted. (Follow on to " -#~ "issue `Issue #16464 `__)." -#~ msgstr "" -#~ "`Issue #17485 `__: Also delete the Request " -#~ "Content-Length header if the data attribute is deleted. (Follow on to " -#~ "issue `Issue #16464 `__)." - -#~ msgid "" -#~ "`Issue #15927 `__: CVS now correctly " -#~ "parses escaped newlines and carriage when parsing with quoting turned off." -#~ msgstr "" -#~ "`Issue #15927 `__: CVS now correctly " -#~ "parses escaped newlines and carriage when parsing with quoting turned off." - -#~ msgid "" -#~ "`Issue #17467 `__: add readline and " -#~ "readlines support to mock_open in unittest.mock." -#~ msgstr "" -#~ "`Issue #17467 `__: add readline and " -#~ "readlines support to mock_open in unittest.mock." - -#~ msgid "" -#~ "`Issue #13248 `__: removed deprecated and " -#~ "undocumented difflib.isbjunk, isbpopular." -#~ msgstr "" -#~ "`Issue #13248 `__: removed deprecated and " -#~ "undocumented difflib.isbjunk, isbpopular." - -#~ msgid "" -#~ "`Issue #17192 `__: Update the ctypes " -#~ "module's libffi to v3.0.13. This specifically addresses a stack " -#~ "misalignment issue on x86 and issues on some more recent platforms." -#~ msgstr "" -#~ "`Issue #17192 `__: Update the ctypes " -#~ "module's libffi to v3.0.13. This specifically addresses a stack " -#~ "misalignment issue on x86 and issues on some more recent platforms." - -#~ msgid "" -#~ "`Issue #8862 `__: Fixed curses cleanup when " -#~ "getkey is interrupted by a signal." -#~ msgstr "" -#~ "`Issue #8862 `__: Fixed curses cleanup when " -#~ "getkey is interrupted by a signal." - -#~ msgid "" -#~ "`Issue #17443 `__: imaplib.IMAP4_stream " -#~ "was using the default unbuffered IO in subprocess, but the imap code " -#~ "assumes buffered IO. In Python2 this worked by accident. IMAP4_stream " -#~ "now explicitly uses buffered IO." -#~ msgstr "" -#~ "`Issue #17443 `__: imaplib.IMAP4_stream " -#~ "was using the default unbuffered IO in subprocess, but the imap code " -#~ "assumes buffered IO. In Python2 this worked by accident. IMAP4_stream " -#~ "now explicitly uses buffered IO." - -#~ msgid "" -#~ "`Issue #17476 `__: Fixed regression " -#~ "relative to Python2 in undocumented pydoc 'allmethods'; it was missing " -#~ "unbound methods on the class." -#~ msgstr "" -#~ "`Issue #17476 `__: Fixed regression " -#~ "relative to Python2 in undocumented pydoc 'allmethods'; it was missing " -#~ "unbound methods on the class." - -#~ msgid "" -#~ "`Issue #17474 `__: Remove the deprecated " -#~ "methods of Request class." -#~ msgstr "" -#~ "`Issue #17474 `__: Remove the deprecated " -#~ "methods of Request class." - -#~ msgid "" -#~ "`Issue #16709 `__: unittest discover order " -#~ "is no-longer filesystem specific. Patch by Jeff Ramnani." -#~ msgstr "" -#~ "`Issue #16709 `__: unittest discover order " -#~ "is no-longer filesystem specific. Patch by Jeff Ramnani." - -#~ msgid "" -#~ "`Issue #5024 `__: sndhdr.whichhdr now " -#~ "returns the frame count for WAV files rather than -1." -#~ msgstr "" -#~ "`Issue #5024 `__: sndhdr.whichhdr now " -#~ "returns the frame count for WAV files rather than -1." - -#~ msgid "" -#~ "`Issue #17460 `__: Remove the strict " -#~ "argument of HTTPConnection and removing the DeprecationWarning being " -#~ "issued from 3.2 onwards." -#~ msgstr "" -#~ "`Issue #17460 `__: Remove the strict " -#~ "argument of HTTPConnection and removing the DeprecationWarning being " -#~ "issued from 3.2 onwards." - -#~ msgid "" -#~ "`Issue #16880 `__: Do not assume _imp." -#~ "load_dynamic() is defined in the imp module." -#~ msgstr "" -#~ "`Issue #16880 `__: Do not assume _imp." -#~ "load_dynamic() is defined in the imp module." - -#~ msgid "" -#~ "`Issue #16389 `__: Fixed a performance " -#~ "regression relative to Python 3.1 in the caching of compiled regular " -#~ "expressions." -#~ msgstr "" -#~ "`Issue #16389 `__: Fixed a performance " -#~ "regression relative to Python 3.1 in the caching of compiled regular " -#~ "expressions." - -#~ msgid "" -#~ "`Issue #17431 `__: Fix missing import of " -#~ "BytesFeedParser in email.parser." -#~ msgstr "" -#~ "`Issue #17431 `__: Fix missing import of " -#~ "BytesFeedParser in email.parser." - -#~ msgid "" -#~ "`Issue #12921 `__: http.server's " -#~ "send_error takes an explain argument to send more information in " -#~ "response. Patch contributed by Karl." -#~ msgstr "" -#~ "`Issue #12921 `__: http.server's " -#~ "send_error takes an explain argument to send more information in " -#~ "response. Patch contributed by Karl." - -#~ msgid "" -#~ "`Issue #17414 `__: Add timeit, repeat, and " -#~ "default_timer to timeit.__all__." -#~ msgstr "" -#~ "`Issue #17414 `__: Add timeit, repeat, and " -#~ "default_timer to timeit.__all__." - -#~ msgid "" -#~ "`Issue #1285086 `__: Get rid of the " -#~ "refcounting hack and speed up urllib.parse.unquote() and urllib.parse." -#~ "unquote_to_bytes()." -#~ msgstr "" -#~ "`Issue #1285086 `__: Get rid of the " -#~ "refcounting hack and speed up urllib.parse.unquote() and urllib.parse." -#~ "unquote_to_bytes()." - -#~ msgid "" -#~ "`Issue #17099 `__: Have importlib." -#~ "find_loader() raise ValueError when __loader__ is not set, harmonizing " -#~ "with what happens when the attribute is set to None." -#~ msgstr "" -#~ "`Issue #17099 `__: Have importlib." -#~ "find_loader() raise ValueError when __loader__ is not set, harmonizing " -#~ "with what happens when the attribute is set to None." - -#~ msgid "" -#~ "`Issue #17368 `__: Fix an off-by-one error " -#~ "in the Python JSON decoder that caused a failure while decoding empty " -#~ "object literals when object_pairs_hook was specified." -#~ msgstr "" -#~ "`Issue #17368 `__: Fix an off-by-one error " -#~ "in the Python JSON decoder that caused a failure while decoding empty " -#~ "object literals when object_pairs_hook was specified." - -#~ msgid "" -#~ "`Issue #17385 `__: Fix quadratic behavior " -#~ "in threading.Condition. The FIFO queue now uses a deque instead of a " -#~ "list." -#~ msgstr "" -#~ "`Issue #17385 `__: Fix quadratic behavior " -#~ "in threading.Condition. The FIFO queue now uses a deque instead of a " -#~ "list." - -#~ msgid "" -#~ "`Issue #15806 `__: Add contextlib." -#~ "ignore(). This creates a context manager to ignore specified exceptions, " -#~ "replacing the \"except SomeException: pass\" idiom." -#~ msgstr "" -#~ "`Issue #15806 `__: Add contextlib." -#~ "ignore(). This creates a context manager to ignore specified exceptions, " -#~ "replacing the \"except SomeException: pass\" idiom." - -#~ msgid "" -#~ "`Issue #14645 `__: The email generator " -#~ "classes now produce output using the specified linesep throughout. " -#~ "Previously if the prolog, epilog, or body were stored with a different " -#~ "linesep, that linesep was used. This fix corrects an RFC non-compliance " -#~ "issue with smtplib.send_message." -#~ msgstr "" -#~ "`Issue #14645 `__: The email generator " -#~ "classes now produce output using the specified linesep throughout. " -#~ "Previously if the prolog, epilog, or body were stored with a different " -#~ "linesep, that linesep was used. This fix corrects an RFC non-compliance " -#~ "issue with smtplib.send_message." - -#~ msgid "" -#~ "`Issue #17278 `__: Fix a crash in heapq." -#~ "heappush() and heapq.heappop() when the list is being resized " -#~ "concurrently." -#~ msgstr "" -#~ "`Issue #17278 `__: Fix a crash in heapq." -#~ "heappush() and heapq.heappop() when the list is being resized " -#~ "concurrently." - -#~ msgid "" -#~ "`Issue #16962 `__: Use getdents64 instead " -#~ "of the obsolete getdents syscall in the subprocess module on Linux." -#~ msgstr "" -#~ "`Issue #16962 `__: Use getdents64 instead " -#~ "of the obsolete getdents syscall in the subprocess module on Linux." - -#~ msgid "" -#~ "`Issue #16935 `__: unittest now counts the " -#~ "module as skipped if it raises SkipTest, instead of counting it as an " -#~ "error. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16935 `__: unittest now counts the " -#~ "module as skipped if it raises SkipTest, instead of counting it as an " -#~ "error. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17018 `__: Make Process.join() " -#~ "retry if os.waitpid() fails with EINTR." -#~ msgstr "" -#~ "`Issue #17018 `__: Make Process.join() " -#~ "retry if os.waitpid() fails with EINTR." - -#~ msgid "" -#~ "`Issue #17223 `__: array module: Fix a " -#~ "crasher when converting an array containing invalid characters (outside " -#~ "range [U+0000; U+10ffff]) to Unicode: repr(array), str(array) and array." -#~ "tounicode(). Patch written by Manuel Jacob." -#~ msgstr "" -#~ "`Issue #17223 `__: array module: Fix a " -#~ "crasher when converting an array containing invalid characters (outside " -#~ "range [U+0000; U+10ffff]) to Unicode: repr(array), str(array) and array." -#~ "tounicode(). Patch written by Manuel Jacob." - -#~ msgid "" -#~ "`Issue #17197 `__: profile/cProfile " -#~ "modules refactored so that code of run() and runctx() utility functions " -#~ "is not duplicated in both modules." -#~ msgstr "" -#~ "`Issue #17197 `__: profile/cProfile " -#~ "modules refactored so that code of run() and runctx() utility functions " -#~ "is not duplicated in both modules." - -#~ msgid "" -#~ "`Issue #14720 `__: sqlite3: Convert " -#~ "datetime microseconds correctly. Patch by Lowe Thiderman." -#~ msgstr "" -#~ "`Issue #14720 `__: sqlite3: Convert " -#~ "datetime microseconds correctly. Patch by Lowe Thiderman." - -#~ msgid "" -#~ "`Issue #15132 `__: Allow a list for the " -#~ "defaultTest argument of unittest.TestProgram. Patch by Jyrki Pulliainen." -#~ msgstr "" -#~ "`Issue #15132 `__: Allow a list for the " -#~ "defaultTest argument of unittest.TestProgram. Patch by Jyrki Pulliainen." - -#~ msgid "" -#~ "`Issue #17225 `__: JSON decoder now counts " -#~ "columns in the first line starting with 1, as in other lines." -#~ msgstr "" -#~ "`Issue #17225 `__: JSON decoder now counts " -#~ "columns in the first line starting with 1, as in other lines." - -#~ msgid "" -#~ "`Issue #6623 `__: Added explicit " -#~ "DeprecationWarning for ftplib.netrc, which has been deprecated and " -#~ "undocumented for a long time." -#~ msgstr "" -#~ "`Issue #6623 `__: Added explicit " -#~ "DeprecationWarning for ftplib.netrc, which has been deprecated and " -#~ "undocumented for a long time." - -#~ msgid "" -#~ "`Issue #13700 `__: Fix byte/string " -#~ "handling in imaplib authentication when an authobject is specified." -#~ msgstr "" -#~ "`Issue #13700 `__: Fix byte/string " -#~ "handling in imaplib authentication when an authobject is specified." - -#~ msgid "" -#~ "`Issue #13153 `__: Tkinter functions now " -#~ "raise TclError instead of ValueError when a string argument contains non-" -#~ "BMP character." -#~ msgstr "" -#~ "`Issue #13153 `__: Tkinter functions now " -#~ "raise TclError instead of ValueError when a string argument contains non-" -#~ "BMP character." - -#~ msgid "" -#~ "`Issue #9669 `__: Protect re against " -#~ "infinite loops on zero-width matching in non-greedy repeat. Patch by " -#~ "Matthew Barnett." -#~ msgstr "" -#~ "`Issue #9669 `__: Protect re against " -#~ "infinite loops on zero-width matching in non-greedy repeat. Patch by " -#~ "Matthew Barnett." - -#~ msgid "" -#~ "`Issue #13169 `__: The maximal repetition " -#~ "number in a regular expression has been increased from 65534 to " -#~ "2147483647 (on 32-bit platform) or 4294967294 (on 64-bit)." -#~ msgstr "" -#~ "`Issue #13169 `__: The maximal repetition " -#~ "number in a regular expression has been increased from 65534 to " -#~ "2147483647 (on 32-bit platform) or 4294967294 (on 64-bit)." - -#~ msgid "" -#~ "`Issue #17143 `__: Fix a missing import in " -#~ "the trace module. Initial patch by Berker Peksag." -#~ msgstr "" -#~ "`Issue #17143 `__: Fix a missing import in " -#~ "the trace module. Initial patch by Berker Peksag." - -#~ msgid "" -#~ "`Issue #15220 `__: email.feedparser's line " -#~ "splitting algorithm is now simpler and faster." -#~ msgstr "" -#~ "`Issue #15220 `__: email.feedparser's line " -#~ "splitting algorithm is now simpler and faster." - -#~ msgid "" -#~ "`Issue #16743 `__: Fix mmap overflow check " -#~ "on 32 bit Windows." -#~ msgstr "" -#~ "`Issue #16743 `__: Fix mmap overflow check " -#~ "on 32 bit Windows." - -#~ msgid "" -#~ "`Issue #16996 `__: webbrowser module now " -#~ "uses shutil.which() to find a web-browser on the executable search path." -#~ msgstr "" -#~ "`Issue #16996 `__: webbrowser module now " -#~ "uses shutil.which() to find a web-browser on the executable search path." - -#~ msgid "" -#~ "`Issue #16800 `__: tempfile.gettempdir() " -#~ "no longer left temporary files when the disk is full. Original patch by " -#~ "Amir Szekely." -#~ msgstr "" -#~ "`Issue #16800 `__: tempfile.gettempdir() " -#~ "no longer left temporary files when the disk is full. Original patch by " -#~ "Amir Szekely." - -#~ msgid "" -#~ "`Issue #17192 `__: Import libffi-3.0.12." -#~ msgstr "" -#~ "`Issue #17192 `__: Import libffi-3.0.12." - -#~ msgid "" -#~ "`Issue #16564 `__: Fixed regression " -#~ "relative to Python2 in the operation of email.encoders.encode_7or8bit " -#~ "when used with binary data." -#~ msgstr "" -#~ "`Issue #16564 `__: Fixed regression " -#~ "relative to Python2 in the operation of email.encoders.encode_7or8bit " -#~ "when used with binary data." - -#~ msgid "" -#~ "`Issue #17052 `__: unittest discovery " -#~ "should use self.testLoader." -#~ msgstr "" -#~ "`Issue #17052 `__: unittest discovery " -#~ "should use self.testLoader." - -#~ msgid "" -#~ "`Issue #4591 `__: Uid and gid values larger " -#~ "than 2**31 are supported now." -#~ msgstr "" -#~ "`Issue #4591 `__: Uid and gid values larger " -#~ "than 2**31 are supported now." - -#~ msgid "" -#~ "`Issue #17141 `__: random." -#~ "vonmisesvariate() no longer hangs for large kappas." -#~ msgstr "" -#~ "`Issue #17141 `__: random." -#~ "vonmisesvariate() no longer hangs for large kappas." - -#~ msgid "" -#~ "`Issue #17149 `__: Fix random." -#~ "vonmisesvariate to always return results in [0, 2*math.pi]." -#~ msgstr "" -#~ "`Issue #17149 `__: Fix random." -#~ "vonmisesvariate to always return results in [0, 2*math.pi]." - -#~ msgid "" -#~ "`Issue #1470548 `__: XMLGenerator now " -#~ "works with binary output streams." -#~ msgstr "" -#~ "`Issue #1470548 `__: XMLGenerator now " -#~ "works with binary output streams." - -#~ msgid "" -#~ "`Issue #6975 `__: os.path.realpath() now " -#~ "correctly resolves multiple nested symlinks on POSIX platforms." -#~ msgstr "" -#~ "`Issue #6975 `__: os.path.realpath() now " -#~ "correctly resolves multiple nested symlinks on POSIX platforms." - -#~ msgid "" -#~ "`Issue #13773 `__: sqlite3.connect() gets " -#~ "a new `uri` parameter to pass the filename as a URI, allowing custom " -#~ "options to be passed." -#~ msgstr "" -#~ "`Issue #13773 `__: sqlite3.connect() gets " -#~ "a new `uri` parameter to pass the filename as a URI, allowing custom " -#~ "options to be passed." - -#~ msgid "" -#~ "`Issue #16564 `__: Fixed regression " -#~ "relative to Python2 in the operation of email.encoders.encode_noop when " -#~ "used with binary data." -#~ msgstr "" -#~ "`Issue #16564 `__: Fixed regression " -#~ "relative to Python2 in the operation of email.encoders.encode_noop when " -#~ "used with binary data." - -#~ msgid "" -#~ "`Issue #10355 `__: The mode, name, " -#~ "encoding and newlines properties now work on SpooledTemporaryFile objects " -#~ "even when they have not yet rolled over. Obsolete method xreadline (which " -#~ "has never worked in Python 3) has been removed." -#~ msgstr "" -#~ "`Issue #10355 `__: The mode, name, " -#~ "encoding and newlines properties now work on SpooledTemporaryFile objects " -#~ "even when they have not yet rolled over. Obsolete method xreadline (which " -#~ "has never worked in Python 3) has been removed." - -#~ msgid "" -#~ "`Issue #16686 `__: Fixed a lot of bugs in " -#~ "audioop module. Fixed crashes in avgpp(), maxpp() and ratecv(). Fixed " -#~ "an integer overflow in add(), bias(), and ratecv(). reverse(), lin2lin() " -#~ "and ratecv() no more lose precision for 32-bit samples. max() and rms() " -#~ "no more returns a negative result and various other functions now work " -#~ "correctly with 32-bit sample -0x80000000." -#~ msgstr "" -#~ "`Issue #16686 `__: Fixed a lot of bugs in " -#~ "audioop module. Fixed crashes in avgpp(), maxpp() and ratecv(). Fixed " -#~ "an integer overflow in add(), bias(), and ratecv(). reverse(), lin2lin() " -#~ "and ratecv() no more lose precision for 32-bit samples. max() and rms() " -#~ "no more returns a negative result and various other functions now work " -#~ "correctly with 32-bit sample -0x80000000." - -#~ msgid "" -#~ "`Issue #17073 `__: Fix some integer " -#~ "overflows in sqlite3 module." -#~ msgstr "" -#~ "`Issue #17073 `__: Fix some integer " -#~ "overflows in sqlite3 module." - -#~ msgid "" -#~ "`Issue #16723 `__: httplib.HTTPResponse no " -#~ "longer marked closed when the connection is automatically closed." -#~ msgstr "" -#~ "`Issue #16723 `__: httplib.HTTPResponse no " -#~ "longer marked closed when the connection is automatically closed." - -#~ msgid "" -#~ "`Issue #15359 `__: Add CAN_BCM protocol " -#~ "support to the socket module. Patch by Brian Thorne." -#~ msgstr "" -#~ "`Issue #15359 `__: Add CAN_BCM protocol " -#~ "support to the socket module. Patch by Brian Thorne." - -#~ msgid "" -#~ "`Issue #16948 `__: Fix quoted printable " -#~ "body encoding for non-latin1 character sets in the email package." -#~ msgstr "" -#~ "`Issue #16948 `__: Fix quoted printable " -#~ "body encoding for non-latin1 character sets in the email package." - -#~ msgid "" -#~ "`Issue #16811 `__: Fix folding of headers " -#~ "with no value in the provisional email policies." -#~ msgstr "" -#~ "`Issue #16811 `__: Fix folding of headers " -#~ "with no value in the provisional email policies." - -#~ msgid "" -#~ "`Issue #17132 `__: Update symbol for " -#~ "\"yield from\" grammar changes." -#~ msgstr "" -#~ "`Issue #17132 `__: Update symbol for " -#~ "\"yield from\" grammar changes." - -#~ msgid "" -#~ "`Issue #17076 `__: Make copying of xattrs " -#~ "more tolerant of missing FS support. Patch by Thomas Wouters." -#~ msgstr "" -#~ "`Issue #17076 `__: Make copying of xattrs " -#~ "more tolerant of missing FS support. Patch by Thomas Wouters." - -#~ msgid "" -#~ "`Issue #17089 `__: Expat parser now " -#~ "correctly works with string input when the internal XML encoding is not " -#~ "UTF-8 or US-ASCII. It also now accepts bytes and strings larger than 2 " -#~ "GiB." -#~ msgstr "" -#~ "`Issue #17089 `__: Expat parser now " -#~ "correctly works with string input when the internal XML encoding is not " -#~ "UTF-8 or US-ASCII. It also now accepts bytes and strings larger than 2 " -#~ "GiB." - -#~ msgid "" -#~ "`Issue #6083 `__: Fix multiple segmentation " -#~ "faults occurred when PyArg_ParseTuple parses nested mutating sequence." -#~ msgstr "" -#~ "`Issue #6083 `__: Fix multiple segmentation " -#~ "faults occurred when PyArg_ParseTuple parses nested mutating sequence." - -#~ msgid "" -#~ "`Issue #5289 `__: Fix ctypes.util." -#~ "find_library on Solaris." -#~ msgstr "" -#~ "`Issue #5289 `__: Fix ctypes.util." -#~ "find_library on Solaris." - -#~ msgid "" -#~ "`Issue #17106 `__: Fix a segmentation " -#~ "fault in io.TextIOWrapper when an underlying stream or a decoder produces " -#~ "data of an unexpected type (i.e. when io.TextIOWrapper initialized with " -#~ "text stream or use bytes-to-bytes codec)." -#~ msgstr "" -#~ "`Issue #17106 `__: Fix a segmentation " -#~ "fault in io.TextIOWrapper when an underlying stream or a decoder produces " -#~ "data of an unexpected type (i.e. when io.TextIOWrapper initialized with " -#~ "text stream or use bytes-to-bytes codec)." - -#~ msgid "" -#~ "`Issue #17015 `__: When it has a spec, a " -#~ "Mock object now inspects its signature when matching calls, so that " -#~ "arguments can be matched positionally or by name." -#~ msgstr "" -#~ "`Issue #17015 `__: When it has a spec, a " -#~ "Mock object now inspects its signature when matching calls, so that " -#~ "arguments can be matched positionally or by name." - -#~ msgid "" -#~ "`Issue #15633 `__: httplib.HTTPResponse is " -#~ "now mark closed when the server sends less than the advertised Content-" -#~ "Length." -#~ msgstr "" -#~ "`Issue #15633 `__: httplib.HTTPResponse is " -#~ "now mark closed when the server sends less than the advertised Content-" -#~ "Length." - -#~ msgid "" -#~ "`Issue #12268 `__: The io module file " -#~ "object write methods no longer abort early when one of its write system " -#~ "calls is interrupted (EINTR)." -#~ msgstr "" -#~ "`Issue #12268 `__: The io module file " -#~ "object write methods no longer abort early when one of its write system " -#~ "calls is interrupted (EINTR)." - -#~ msgid "" -#~ "`Issue #6972 `__: The zipfile module no " -#~ "longer overwrites files outside of its destination path when extracting " -#~ "malicious zip files." -#~ msgstr "" -#~ "`Issue #6972 `__: The zipfile module no " -#~ "longer overwrites files outside of its destination path when extracting " -#~ "malicious zip files." - -#~ msgid "" -#~ "`Issue #4844 `__: ZipFile now raises " -#~ "BadZipFile when opens a ZIP file with an incomplete \"End of Central " -#~ "Directory\" record. Original patch by Guilherme Polo and Alan McIntyre." -#~ msgstr "" -#~ "`Issue #4844 `__: ZipFile now raises " -#~ "BadZipFile when opens a ZIP file with an incomplete \"End of Central " -#~ "Directory\" record. Original patch by Guilherme Polo and Alan McIntyre." - -#~ msgid "" -#~ "`Issue #17071 `__: Signature.bind() now " -#~ "works when one of the keyword arguments is named ``self``." -#~ msgstr "" -#~ "`Issue #17071 `__: Signature.bind() now " -#~ "works when one of the keyword arguments is named ``self``." - -#~ msgid "" -#~ "`Issue #16972 `__: Have site.addpackage() " -#~ "consider already known paths even when none are explicitly passed in. Bug " -#~ "report and fix by Kirill." -#~ msgstr "" -#~ "`Issue #16972 `__: Have site.addpackage() " -#~ "consider already known paths even when none are explicitly passed in. Bug " -#~ "report and fix by Kirill." - -#~ msgid "" -#~ "`Issue #1602133 `__: on Mac OS X a " -#~ "shared library build (``--enable-shared``) now fills the ``os.environ`` " -#~ "variable correctly." -#~ msgstr "" -#~ "`Issue #1602133 `__: on Mac OS X a " -#~ "shared library build (``--enable-shared``) now fills the ``os.environ`` " -#~ "variable correctly." - -#~ msgid "" -#~ "`Issue #15505 `__: `unittest." -#~ "installHandler` no longer assumes SIGINT handler is set to a callable " -#~ "object." -#~ msgstr "" -#~ "`Issue #15505 `__: `unittest." -#~ "installHandler` no longer assumes SIGINT handler is set to a callable " -#~ "object." - -#~ msgid "" -#~ "`Issue #13454 `__: Fix a crash when " -#~ "deleting an iterator created by itertools.tee() if all other iterators " -#~ "were very advanced before." -#~ msgstr "" -#~ "`Issue #13454 `__: Fix a crash when " -#~ "deleting an iterator created by itertools.tee() if all other iterators " -#~ "were very advanced before." - -#~ msgid "" -#~ "`Issue #12411 `__: Fix to cgi." -#~ "parse_multipart to correctly use bytes boundaries and bytes data. Patch " -#~ "by Jonas Wagner." -#~ msgstr "" -#~ "`Issue #12411 `__: Fix to cgi." -#~ "parse_multipart to correctly use bytes boundaries and bytes data. Patch " -#~ "by Jonas Wagner." - -#~ msgid "" -#~ "`Issue #16957 `__: shutil.which() no " -#~ "longer searches a bare file name in the current directory on Unix and no " -#~ "longer searches a relative file path with a directory part in PATH " -#~ "directories. Patch by Thomas Kluyver." -#~ msgstr "" -#~ "`Issue #16957 `__: shutil.which() no " -#~ "longer searches a bare file name in the current directory on Unix and no " -#~ "longer searches a relative file path with a directory part in PATH " -#~ "directories. Patch by Thomas Kluyver." - -#~ msgid "" -#~ "`Issue #1159051 `__: GzipFile now raises " -#~ "EOFError when reading a corrupted file with truncated header or footer." -#~ msgstr "" -#~ "`Issue #1159051 `__: GzipFile now raises " -#~ "EOFError when reading a corrupted file with truncated header or footer." - -#~ msgid "" -#~ "`Issue #16993 `__: shutil.which() now " -#~ "preserves the case of the path and extension on Windows." -#~ msgstr "" -#~ "`Issue #16993 `__: shutil.which() now " -#~ "preserves the case of the path and extension on Windows." - -#~ msgid "" -#~ "`Issue #16992 `__: On Windows in signal." -#~ "set_wakeup_fd, validate the file descriptor argument." -#~ msgstr "" -#~ "`Issue #16992 `__: On Windows in signal." -#~ "set_wakeup_fd, validate the file descriptor argument." - -#~ msgid "" -#~ "`Issue #16422 `__: For compatibility with " -#~ "the Python version, the C version of decimal now uses strings instead of " -#~ "integers for rounding mode constants." -#~ msgstr "" -#~ "`Issue #16422 `__: For compatibility with " -#~ "the Python version, the C version of decimal now uses strings instead of " -#~ "integers for rounding mode constants." - -#~ msgid "" -#~ "`Issue #15861 `__: tkinter now correctly " -#~ "works with lists and tuples containing strings with whitespaces, " -#~ "backslashes or unbalanced braces." -#~ msgstr "" -#~ "`Issue #15861 `__: tkinter now correctly " -#~ "works with lists and tuples containing strings with whitespaces, " -#~ "backslashes or unbalanced braces." - -#~ msgid "" -#~ "`Issue #16955 `__: Fix the poll() method " -#~ "for multiprocessing's socket connections on Windows." -#~ msgstr "" -#~ "`Issue #16955 `__: Fix the poll() method " -#~ "for multiprocessing's socket connections on Windows." - -#~ msgid "" -#~ "`Issue #15031 `__: Refactor some .pyc " -#~ "management code to cut down on code duplication. Thanks to Ronan Lamy for " -#~ "the report and taking an initial stab at the problem." -#~ msgstr "" -#~ "`Issue #15031 `__: Refactor some .pyc " -#~ "management code to cut down on code duplication. Thanks to Ronan Lamy for " -#~ "the report and taking an initial stab at the problem." - -#~ msgid "" -#~ "`Issue #16398 `__: Optimize deque.rotate() " -#~ "so that it only moves pointers and doesn't touch the underlying data with " -#~ "increfs and decrefs." -#~ msgstr "" -#~ "`Issue #16398 `__: Optimize deque.rotate() " -#~ "so that it only moves pointers and doesn't touch the underlying data with " -#~ "increfs and decrefs." - -#~ msgid "" -#~ "`Issue #16900 `__: Issue a ResourceWarning " -#~ "when an ssl socket is left unclosed." -#~ msgstr "" -#~ "`Issue #16900 `__: Issue a ResourceWarning " -#~ "when an ssl socket is left unclosed." - -#~ msgid "" -#~ "`Issue #13899 `__: ``\\A``, ``\\Z``, and ``" -#~ "\\B`` now correctly match the A, Z, and B literals when used inside " -#~ "character classes (e.g. ``'[\\A]'``). Patch by Matthew Barnett." -#~ msgstr "" -#~ "`Issue #13899 `__: ``\\A``, ``\\Z``, and ``" -#~ "\\B`` now correctly match the A, Z, and B literals when used inside " -#~ "character classes (e.g. ``'[\\A]'``). Patch by Matthew Barnett." - -#~ msgid "" -#~ "`Issue #15545 `__: Fix regression in " -#~ "sqlite3's iterdump method where it was failing if the connection used a " -#~ "row factory (such as sqlite3.Row) that produced unsortable objects. " -#~ "(Regression was introduced by fix for 9750)." -#~ msgstr "" -#~ "`Issue #15545 `__: Fix regression in " -#~ "sqlite3's iterdump method where it was failing if the connection used a " -#~ "row factory (such as sqlite3.Row) that produced unsortable objects. " -#~ "(Regression was introduced by fix for 9750)." - -#~ msgid "" -#~ "`Issue #15972 `__: Fix error messages when " -#~ "os functions expecting a file name or file descriptor receive the " -#~ "incorrect type." -#~ msgstr "" -#~ "`Issue #15972 `__: Fix error messages when " -#~ "os functions expecting a file name or file descriptor receive the " -#~ "incorrect type." - -#~ msgid "" -#~ "`Issue #8109 `__: The ssl module now has " -#~ "support for server-side SNI, thanks to a :meth:`SSLContext." -#~ "set_servername_callback` method. Patch by Daniel Black." -#~ msgstr "" -#~ "`Issue #8109 `__: The ssl module now has " -#~ "support for server-side SNI, thanks to a :meth:`SSLContext." -#~ "set_servername_callback` method. Patch by Daniel Black." - -#~ msgid "" -#~ "`Issue #16860 `__: In tempfile, use " -#~ "O_CLOEXEC when available to set the close-on-exec flag atomically." -#~ msgstr "" -#~ "`Issue #16860 `__: In tempfile, use " -#~ "O_CLOEXEC when available to set the close-on-exec flag atomically." - -#~ msgid "" -#~ "`Issue #16674 `__: random.getrandbits() is " -#~ "now 20-40% faster for small integers." -#~ msgstr "" -#~ "`Issue #16674 `__: random.getrandbits() is " -#~ "now 20-40% faster for small integers." - -#~ msgid "" -#~ "`Issue #16009 `__: JSON error messages now " -#~ "provide more information." -#~ msgstr "" -#~ "`Issue #16009 `__: JSON error messages now " -#~ "provide more information." - -#~ msgid "" -#~ "`Issue #16828 `__: Fix error incorrectly " -#~ "raised by bz2.compress(b'') and bz2.BZ2Compressor.compress(b''). Initial " -#~ "patch by Martin Packman." -#~ msgstr "" -#~ "`Issue #16828 `__: Fix error incorrectly " -#~ "raised by bz2.compress(b'') and bz2.BZ2Compressor.compress(b''). Initial " -#~ "patch by Martin Packman." - -#~ msgid "" -#~ "`Issue #16833 `__: In http.client." -#~ "HTTPConnection, do not concatenate the request headers and body when the " -#~ "payload exceeds 16 KB, since it can consume more memory for no benefit. " -#~ "Patch by Benno Leslie." -#~ msgstr "" -#~ "`Issue #16833 `__: In http.client." -#~ "HTTPConnection, do not concatenate the request headers and body when the " -#~ "payload exceeds 16 KB, since it can consume more memory for no benefit. " -#~ "Patch by Benno Leslie." - -#~ msgid "" -#~ "`Issue #16541 `__: tk_setPalette() now " -#~ "works with keyword arguments." -#~ msgstr "" -#~ "`Issue #16541 `__: tk_setPalette() now " -#~ "works with keyword arguments." - -#~ msgid "" -#~ "`Issue #16820 `__: In configparser, " -#~ "`parser.popitem()` no longer raises ValueError. This makes `parser." -#~ "clean()` work correctly." -#~ msgstr "" -#~ "`Issue #16820 `__: In configparser, " -#~ "`parser.popitem()` no longer raises ValueError. This makes `parser." -#~ "clean()` work correctly." - -#~ msgid "" -#~ "`Issue #16820 `__: In configparser, " -#~ "``parser['section'] = {}`` now preserves section order within the parser. " -#~ "This makes `parser.update()` preserve section order as well." -#~ msgstr "" -#~ "`Issue #16820 `__: In configparser, " -#~ "``parser['section'] = {}`` now preserves section order within the parser. " -#~ "This makes `parser.update()` preserve section order as well." - -#~ msgid "" -#~ "`Issue #16820 `__: In configparser, " -#~ "``parser['DEFAULT'] = {}`` now correctly clears previous values stored in " -#~ "the default section. Same goes for ``parser.update({'DEFAULT': {}})``." -#~ msgstr "" -#~ "`Issue #16820 `__: In configparser, " -#~ "``parser['DEFAULT'] = {}`` now correctly clears previous values stored in " -#~ "the default section. Same goes for ``parser.update({'DEFAULT': {}})``." - -#~ msgid "" -#~ "`Issue #9586 `__: Redefine SEM_FAILED on " -#~ "MacOSX to keep compiler happy." -#~ msgstr "" -#~ "`Issue #9586 `__: Redefine SEM_FAILED on " -#~ "MacOSX to keep compiler happy." - -#~ msgid "" -#~ "`Issue #16787 `__: Increase asyncore and " -#~ "asynchat default output buffers size, to decrease CPU usage and increase " -#~ "throughput." -#~ msgstr "" -#~ "`Issue #16787 `__: Increase asyncore and " -#~ "asynchat default output buffers size, to decrease CPU usage and increase " -#~ "throughput." - -#~ msgid "" -#~ "`Issue #10527 `__: make multiprocessing " -#~ "use poll() instead of select() if available." -#~ msgstr "" -#~ "`Issue #10527 `__: make multiprocessing " -#~ "use poll() instead of select() if available." - -#~ msgid "" -#~ "`Issue #16688 `__: Now regexes contained " -#~ "backreferences correctly work with non-ASCII strings. Patch by Matthew " -#~ "Barnett." -#~ msgstr "" -#~ "`Issue #16688 `__: Now regexes contained " -#~ "backreferences correctly work with non-ASCII strings. Patch by Matthew " -#~ "Barnett." - -#~ msgid "" -#~ "`Issue #16486 `__: Make aifc files act as " -#~ "context managers." -#~ msgstr "" -#~ "`Issue #16486 `__: Make aifc files act as " -#~ "context managers." - -#~ msgid "" -#~ "`Issue #16485 `__: Now file descriptors " -#~ "are closed if file header patching failed on closing an aifc file." -#~ msgstr "" -#~ "`Issue #16485 `__: Now file descriptors " -#~ "are closed if file header patching failed on closing an aifc file." - -#~ msgid "" -#~ "`Issue #16640 `__: Run less code under a " -#~ "lock in sched module." -#~ msgstr "" -#~ "`Issue #16640 `__: Run less code under a " -#~ "lock in sched module." - -#~ msgid "" -#~ "`Issue #16165 `__: sched.scheduler.run() " -#~ "no longer blocks a scheduler for other threads." -#~ msgstr "" -#~ "`Issue #16165 `__: sched.scheduler.run() " -#~ "no longer blocks a scheduler for other threads." - -#~ msgid "" -#~ "`Issue #16641 `__: Default values of sched." -#~ "scheduler.enter() are no longer modifiable." -#~ msgstr "" -#~ "`Issue #16641 `__: Default values of sched." -#~ "scheduler.enter() are no longer modifiable." - -#~ msgid "" -#~ "`Issue #16618 `__: Make glob.glob match " -#~ "consistently across strings and bytes regarding leading dots. Patch by " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16618 `__: Make glob.glob match " -#~ "consistently across strings and bytes regarding leading dots. Patch by " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16788 `__: Add samestat to Lib/" -#~ "ntpath.py" -#~ msgstr "" -#~ "`Issue #16788 `__: Add samestat to Lib/" -#~ "ntpath.py" - -#~ msgid "" -#~ "`Issue #16713 `__: Parsing of 'tel' urls " -#~ "using urlparse separates params from path." -#~ msgstr "" -#~ "`Issue #16713 `__: Parsing of 'tel' urls " -#~ "using urlparse separates params from path." - -#~ msgid "" -#~ "`Issue #16443 `__: Add docstrings to " -#~ "regular expression match objects. Patch by Anton Kasyanov." -#~ msgstr "" -#~ "`Issue #16443 `__: Add docstrings to " -#~ "regular expression match objects. Patch by Anton Kasyanov." - -#~ msgid "" -#~ "`Issue #15701 `__: Fix HTTPError info " -#~ "method call to return the headers information." -#~ msgstr "" -#~ "`Issue #15701 `__: Fix HTTPError info " -#~ "method call to return the headers information." - -#~ msgid "" -#~ "`Issue #16752 `__: Add a missing import to " -#~ "modulefinder. Patch by Berker Peksag." -#~ msgstr "" -#~ "`Issue #16752 `__: Add a missing import to " -#~ "modulefinder. Patch by Berker Peksag." - -#~ msgid "" -#~ "`Issue #16646 `__: ftplib.FTP.makeport() " -#~ "might lose socket error details. (patch by Serhiy Storchaka)" -#~ msgstr "" -#~ "`Issue #16646 `__: ftplib.FTP.makeport() " -#~ "might lose socket error details. (patch by Serhiy Storchaka)" - -#~ msgid "" -#~ "`Issue #16626 `__: Fix infinite recursion " -#~ "in glob.glob() on Windows when the pattern contains a wildcard in the " -#~ "drive or UNC path. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16626 `__: Fix infinite recursion " -#~ "in glob.glob() on Windows when the pattern contains a wildcard in the " -#~ "drive or UNC path. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15783 `__: Except for the number " -#~ "methods, the C version of decimal now supports all None default values " -#~ "present in decimal.py. These values were largely undocumented." -#~ msgstr "" -#~ "`Issue #15783 `__: Except for the number " -#~ "methods, the C version of decimal now supports all None default values " -#~ "present in decimal.py. These values were largely undocumented." - -#~ msgid "" -#~ "`Issue #11175 `__: argparse.FileType now " -#~ "accepts encoding and errors arguments. Patch by Lucas Maystre." -#~ msgstr "" -#~ "`Issue #11175 `__: argparse.FileType now " -#~ "accepts encoding and errors arguments. Patch by Lucas Maystre." - -#~ msgid "" -#~ "`Issue #16488 `__: epoll() objects now " -#~ "support the `with` statement. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16488 `__: epoll() objects now " -#~ "support the `with` statement. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16298 `__: In HTTPResponse.read(), " -#~ "close the socket when there is no Content-Length and the incoming stream " -#~ "is finished. Patch by Eran Rundstein." -#~ msgstr "" -#~ "`Issue #16298 `__: In HTTPResponse.read(), " -#~ "close the socket when there is no Content-Length and the incoming stream " -#~ "is finished. Patch by Eran Rundstein." - -#~ msgid "" -#~ "`Issue #16049 `__: Add abc.ABC class to " -#~ "enable the use of inheritance to create ABCs, rather than the more " -#~ "cumbersome metaclass=ABCMeta. Patch by Bruno Dupuis." -#~ msgstr "" -#~ "`Issue #16049 `__: Add abc.ABC class to " -#~ "enable the use of inheritance to create ABCs, rather than the more " -#~ "cumbersome metaclass=ABCMeta. Patch by Bruno Dupuis." - -#~ msgid "" -#~ "`Issue #15701 `__: Add a .headers " -#~ "attribute to urllib.error.HTTPError. Patch contributed by Berker Peksag." -#~ msgstr "" -#~ "`Issue #15701 `__: Add a .headers " -#~ "attribute to urllib.error.HTTPError. Patch contributed by Berker Peksag." - -#~ msgid "" -#~ "`Issue #15872 `__: Fix 3.3 regression " -#~ "introduced by the new fd-based shutil.rmtree that caused it to not ignore " -#~ "certain errors when ignore_errors was set. Patch by Alessandro Moura and " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #15872 `__: Fix 3.3 regression " -#~ "introduced by the new fd-based shutil.rmtree that caused it to not ignore " -#~ "certain errors when ignore_errors was set. Patch by Alessandro Moura and " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16248 `__: Disable code execution " -#~ "from the user's home directory by tkinter when the -E flag is passed to " -#~ "Python. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16248 `__: Disable code execution " -#~ "from the user's home directory by tkinter when the -E flag is passed to " -#~ "Python. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #13390 `__: New function :func:`sys." -#~ "getallocatedblocks()` returns the number of memory blocks currently " -#~ "allocated." -#~ msgstr "" -#~ "`Issue #13390 `__: New function :func:`sys." -#~ "getallocatedblocks()` returns the number of memory blocks currently " -#~ "allocated." - -#~ msgid "" -#~ "`Issue #16628 `__: Fix a memory leak in " -#~ "ctypes.resize()." -#~ msgstr "" -#~ "`Issue #16628 `__: Fix a memory leak in " -#~ "ctypes.resize()." - -#~ msgid "" -#~ "`Issue #13614 `__: Fix setup.py register " -#~ "failure with invalid rst in description. Patch by Julien Courteau and " -#~ "Pierre Paul Lefebvre." -#~ msgstr "" -#~ "`Issue #13614 `__: Fix setup.py register " -#~ "failure with invalid rst in description. Patch by Julien Courteau and " -#~ "Pierre Paul Lefebvre." - -#~ msgid "" -#~ "`Issue #13512 `__: Create ~/.pypirc " -#~ "securely (CVE-2011-4944). Initial patch by Philip Jenvey, tested by " -#~ "Mageia and Debian." -#~ msgstr "" -#~ "`Issue #13512 `__: Create ~/.pypirc " -#~ "securely (CVE-2011-4944). Initial patch by Philip Jenvey, tested by " -#~ "Mageia and Debian." - -#~ msgid "" -#~ "`Issue #7719 `__: Make distutils ignore ``." -#~ "nfs*`` files instead of choking later on. Initial patch by SilentGhost " -#~ "and Jeff Ramnani." -#~ msgstr "" -#~ "`Issue #7719 `__: Make distutils ignore ``." -#~ "nfs*`` files instead of choking later on. Initial patch by SilentGhost " -#~ "and Jeff Ramnani." - -#~ msgid "" -#~ "`Issue #13120 `__: Allow calling pdb." -#~ "set_trace() from thread. Patch by Ilya Sandler." -#~ msgstr "" -#~ "`Issue #13120 `__: Allow calling pdb." -#~ "set_trace() from thread. Patch by Ilya Sandler." - -#~ msgid "" -#~ "`Issue #16585 `__: Make CJK encoders " -#~ "support error handlers that return bytes per PEP 383." -#~ msgstr "" -#~ "`Issue #16585 `__: Make CJK encoders " -#~ "support error handlers that return bytes per PEP 383." - -#~ msgid "" -#~ "`Issue #10182 `__: The re module doesn't " -#~ "truncate indices to 32 bits anymore. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #10182 `__: The re module doesn't " -#~ "truncate indices to 32 bits anymore. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16333 `__: use (\",\", \": \") as " -#~ "default separator in json when indent is specified, to avoid trailing " -#~ "whitespace. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16333 `__: use (\",\", \": \") as " -#~ "default separator in json when indent is specified, to avoid trailing " -#~ "whitespace. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16573 `__: In 2to3, treat " -#~ "enumerate() like a consuming call, so superfluous list() calls aren't " -#~ "added to filter(), map(), and zip() which are directly passed enumerate()." -#~ msgstr "" -#~ "`Issue #16573 `__: In 2to3, treat " -#~ "enumerate() like a consuming call, so superfluous list() calls aren't " -#~ "added to filter(), map(), and zip() which are directly passed enumerate()." - -#~ msgid "" -#~ "`Issue #16464 `__: Reset the Content-" -#~ "Length header when a urllib Request is reused with new data." -#~ msgstr "" -#~ "`Issue #16464 `__: Reset the Content-" -#~ "Length header when a urllib Request is reused with new data." - -#~ msgid "" -#~ "`Issue #12848 `__: The pure Python pickle " -#~ "implementation now treats object lengths as unsigned 32-bit integers, " -#~ "like the C implementation does. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #12848 `__: The pure Python pickle " -#~ "implementation now treats object lengths as unsigned 32-bit integers, " -#~ "like the C implementation does. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16423 `__: urllib.request now has " -#~ "support for ``data:`` URLs. Patch by Mathias Panzenböck." -#~ msgstr "" -#~ "`Issue #16423 `__: urllib.request now has " -#~ "support for ``data:`` URLs. Patch by Mathias Panzenböck." - -#~ msgid "" -#~ "`Issue #4473 `__: Add a POP3.stls() to " -#~ "switch a clear-text POP3 session into an encrypted POP3 session, on " -#~ "supported servers. Patch by Lorenzo Catucci." -#~ msgstr "" -#~ "`Issue #4473 `__: Add a POP3.stls() to " -#~ "switch a clear-text POP3 session into an encrypted POP3 session, on " -#~ "supported servers. Patch by Lorenzo Catucci." - -#~ msgid "" -#~ "`Issue #4473 `__: Add a POP3.capa() method " -#~ "to query the capabilities advertised by the POP3 server. Patch by " -#~ "Lorenzo Catucci." -#~ msgstr "" -#~ "`Issue #4473 `__: Add a POP3.capa() method " -#~ "to query the capabilities advertised by the POP3 server. Patch by " -#~ "Lorenzo Catucci." - -#~ msgid "" -#~ "`Issue #4473 `__: Ensure the socket is " -#~ "shutdown cleanly in POP3.close(). Patch by Lorenzo Catucci." -#~ msgstr "" -#~ "`Issue #4473 `__: Ensure the socket is " -#~ "shutdown cleanly in POP3.close(). Patch by Lorenzo Catucci." - -#~ msgid "" -#~ "`Issue #16522 `__: added FAIL_FAST flag to " -#~ "doctest." -#~ msgstr "" -#~ "`Issue #16522 `__: added FAIL_FAST flag to " -#~ "doctest." - -#~ msgid "" -#~ "`Issue #15627 `__: Add the importlib.abc." -#~ "InspectLoader.source_to_code() method." -#~ msgstr "" -#~ "`Issue #15627 `__: Add the importlib.abc." -#~ "InspectLoader.source_to_code() method." - -#~ msgid "" -#~ "`Issue #14631 `__: Add a new :class:" -#~ "`weakref.WeakMethod` to simulate weak references to bound methods." -#~ msgstr "" -#~ "`Issue #14631 `__: Add a new :class:" -#~ "`weakref.WeakMethod` to simulate weak references to bound methods." - -#~ msgid "" -#~ "`Issue #16469 `__: Fix exceptions from " -#~ "float -> Fraction and Decimal -> Fraction conversions for special values " -#~ "to be consistent with those for float -> int and Decimal -> int. Patch " -#~ "by Alexey Kachayev." -#~ msgstr "" -#~ "`Issue #16469 `__: Fix exceptions from " -#~ "float -> Fraction and Decimal -> Fraction conversions for special values " -#~ "to be consistent with those for float -> int and Decimal -> int. Patch " -#~ "by Alexey Kachayev." - -#~ msgid "" -#~ "`Issue #16481 `__: multiprocessing no " -#~ "longer leaks process handles on Windows." -#~ msgstr "" -#~ "`Issue #16481 `__: multiprocessing no " -#~ "longer leaks process handles on Windows." - -#~ msgid "" -#~ "`Issue #12428 `__: Add a pure Python " -#~ "implementation of functools.partial(). Patch by Brian Thorne." -#~ msgstr "" -#~ "`Issue #12428 `__: Add a pure Python " -#~ "implementation of functools.partial(). Patch by Brian Thorne." - -#~ msgid "" -#~ "`Issue #16140 `__: The subprocess module " -#~ "no longer double closes its child subprocess.PIPE parent file descriptors " -#~ "on child error prior to exec()." -#~ msgstr "" -#~ "`Issue #16140 `__: The subprocess module " -#~ "no longer double closes its child subprocess.PIPE parent file descriptors " -#~ "on child error prior to exec()." - -#~ msgid "" -#~ "`Issue #16327 `__: The subprocess module " -#~ "no longer leaks file descriptors used for stdin/stdout/stderr pipes to " -#~ "the child when fork() fails." -#~ msgstr "" -#~ "`Issue #16327 `__: The subprocess module " -#~ "no longer leaks file descriptors used for stdin/stdout/stderr pipes to " -#~ "the child when fork() fails." - -#~ msgid "" -#~ "`Issue #14396 `__: Handle the odd rare " -#~ "case of waitpid returning 0 when not expected in subprocess.Popen.wait()." -#~ msgstr "" -#~ "`Issue #14396 `__: Handle the odd rare " -#~ "case of waitpid returning 0 when not expected in subprocess.Popen.wait()." - -#~ msgid "" -#~ "`Issue #16411 `__: Fix a bug where zlib." -#~ "decompressobj().flush() might try to access previously-freed memory. " -#~ "Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16411 `__: Fix a bug where zlib." -#~ "decompressobj().flush() might try to access previously-freed memory. " -#~ "Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16357 `__: fix calling accept() on " -#~ "a SSLSocket created through SSLContext.wrap_socket(). Original patch by " -#~ "Jeff McNeil." -#~ msgstr "" -#~ "`Issue #16357 `__: fix calling accept() on " -#~ "a SSLSocket created through SSLContext.wrap_socket(). Original patch by " -#~ "Jeff McNeil." - -#~ msgid "" -#~ "`Issue #16409 `__: The reporthook callback " -#~ "made by the legacy urllib.request.urlretrieve API now properly supplies a " -#~ "constant non-zero block_size as it did in Python 3.2 and 2.7. This " -#~ "matches the behavior of urllib.request.URLopener.retrieve." -#~ msgstr "" -#~ "`Issue #16409 `__: The reporthook callback " -#~ "made by the legacy urllib.request.urlretrieve API now properly supplies a " -#~ "constant non-zero block_size as it did in Python 3.2 and 2.7. This " -#~ "matches the behavior of urllib.request.URLopener.retrieve." - -#~ msgid "" -#~ "`Issue #16431 `__: Use the type " -#~ "information when constructing a Decimal subtype from a Decimal argument." -#~ msgstr "" -#~ "`Issue #16431 `__: Use the type " -#~ "information when constructing a Decimal subtype from a Decimal argument." - -#~ msgid "" -#~ "`Issue #15641 `__: Clean up deprecated " -#~ "classes from importlib. Patch by Taras Lyapun." -#~ msgstr "" -#~ "`Issue #15641 `__: Clean up deprecated " -#~ "classes from importlib. Patch by Taras Lyapun." - -#~ msgid "" -#~ "`Issue #16350 `__: zlib.decompressobj()." -#~ "decompress() now accumulates data from successive calls after EOF in " -#~ "unused_data, instead of only saving the argument to the last call. " -#~ "decompressobj().flush() now correctly sets unused_data and " -#~ "unconsumed_tail. A bug in the handling of MemoryError when setting the " -#~ "unconsumed_tail attribute has also been fixed. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16350 `__: zlib.decompressobj()." -#~ "decompress() now accumulates data from successive calls after EOF in " -#~ "unused_data, instead of only saving the argument to the last call. " -#~ "decompressobj().flush() now correctly sets unused_data and " -#~ "unconsumed_tail. A bug in the handling of MemoryError when setting the " -#~ "unconsumed_tail attribute has also been fixed. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #12759 `__: sre_parse now raises a " -#~ "proper error when the name of the group is missing. Initial patch by " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #12759 `__: sre_parse now raises a " -#~ "proper error when the name of the group is missing. Initial patch by " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16152 `__: fix tokenize to ignore " -#~ "whitespace at the end of the code when no newline is found. Patch by Ned " -#~ "Batchelder." -#~ msgstr "" -#~ "`Issue #16152 `__: fix tokenize to ignore " -#~ "whitespace at the end of the code when no newline is found. Patch by Ned " -#~ "Batchelder." - -#~ msgid "" -#~ "`Issue #16284 `__: Prevent keeping " -#~ "unnecessary references to worker functions in concurrent.futures " -#~ "ThreadPoolExecutor." -#~ msgstr "" -#~ "`Issue #16284 `__: Prevent keeping " -#~ "unnecessary references to worker functions in concurrent.futures " -#~ "ThreadPoolExecutor." - -#~ msgid "" -#~ "`Issue #16230 `__: Fix a crash in select." -#~ "select() when one of the lists changes size while iterated on. Patch by " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16230 `__: Fix a crash in select." -#~ "select() when one of the lists changes size while iterated on. Patch by " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16228 `__: Fix a crash in the json " -#~ "module where a list changes size while it is being encoded. Patch by " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16228 `__: Fix a crash in the json " -#~ "module where a list changes size while it is being encoded. Patch by " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16351 `__: New function gc." -#~ "get_stats() returns per-generation collection statistics." -#~ msgstr "" -#~ "`Issue #16351 `__: New function gc." -#~ "get_stats() returns per-generation collection statistics." - -#~ msgid "" -#~ "`Issue #14897 `__: Enhance error messages " -#~ "of struct.pack and struct.pack_into. Patch by Matti Mäki." -#~ msgstr "" -#~ "`Issue #14897 `__: Enhance error messages " -#~ "of struct.pack and struct.pack_into. Patch by Matti Mäki." - -#~ msgid "" -#~ "`Issue #16316 `__: mimetypes now " -#~ "recognizes the .xz and .txz (.tar.xz) extensions. Patch by Serhiy " -#~ "Storchaka." -#~ msgstr "" -#~ "`Issue #16316 `__: mimetypes now " -#~ "recognizes the .xz and .txz (.tar.xz) extensions. Patch by Serhiy " -#~ "Storchaka." - -#~ msgid "" -#~ "`Issue #12890 `__: cgitb no longer prints " -#~ "spurious

tags in text mode when the logdir option is specified." -#~ msgstr "" -#~ "`Issue #12890 `__: cgitb no longer prints " -#~ "spurious

tags in text mode when the logdir option is specified." - -#~ msgid "" -#~ "`Issue #16307 `__: Fix multiprocessing." -#~ "Pool.map_async not calling its callbacks. Patch by Janne Karila." -#~ msgstr "" -#~ "`Issue #16307 `__: Fix multiprocessing." -#~ "Pool.map_async not calling its callbacks. Patch by Janne Karila." - -#~ msgid "" -#~ "`Issue #16305 `__: Fix a segmentation " -#~ "fault occurring when interrupting math.factorial." -#~ msgstr "" -#~ "`Issue #16305 `__: Fix a segmentation " -#~ "fault occurring when interrupting math.factorial." - -#~ msgid "" -#~ "`Issue #16116 `__: Fix include and library " -#~ "paths to be correct when building C extensions in venvs." -#~ msgstr "" -#~ "`Issue #16116 `__: Fix include and library " -#~ "paths to be correct when building C extensions in venvs." - -#~ msgid "" -#~ "`Issue #16245 `__: Fix the value of a few " -#~ "entities in html.entities.html5." -#~ msgstr "" -#~ "`Issue #16245 `__: Fix the value of a few " -#~ "entities in html.entities.html5." - -#~ msgid "" -#~ "`Issue #16301 `__: Fix the localhost " -#~ "verification in urllib/request.py for ``file://`` urls." -#~ msgstr "" -#~ "`Issue #16301 `__: Fix the localhost " -#~ "verification in urllib/request.py for ``file://`` urls." - -#~ msgid "" -#~ "`Issue #16250 `__: Fix the invocations of " -#~ "URLError which had misplaced filename attribute for exception." -#~ msgstr "" -#~ "`Issue #16250 `__: Fix the invocations of " -#~ "URLError which had misplaced filename attribute for exception." - -#~ msgid "" -#~ "`Issue #10836 `__: Fix exception raised " -#~ "when file not found in urlretrieve Initial patch by Ezio Melotti." -#~ msgstr "" -#~ "`Issue #10836 `__: Fix exception raised " -#~ "when file not found in urlretrieve Initial patch by Ezio Melotti." - -#~ msgid "" -#~ "`Issue #14398 `__: Fix size truncation and " -#~ "overflow bugs in the bz2 module." -#~ msgstr "" -#~ "`Issue #14398 `__: Fix size truncation and " -#~ "overflow bugs in the bz2 module." - -#~ msgid "" -#~ "`Issue #12692 `__: Fix resource leak in " -#~ "urllib.request when talking to an HTTP server that does not include a " -#~ "``Connection: close`` header in its responses." -#~ msgstr "" -#~ "`Issue #12692 `__: Fix resource leak in " -#~ "urllib.request when talking to an HTTP server that does not include a " -#~ "``Connection: close`` header in its responses." - -#~ msgid "" -#~ "`Issue #12034 `__: Fix bogus caching of " -#~ "result in check_GetFinalPathNameByHandle. Patch by Atsuo Ishimoto." -#~ msgstr "" -#~ "`Issue #12034 `__: Fix bogus caching of " -#~ "result in check_GetFinalPathNameByHandle. Patch by Atsuo Ishimoto." - -#~ msgid "" -#~ "`Issue #16220 `__: wsgiref now always " -#~ "calls close() on an iterable response. Patch by Brent Tubbs." -#~ msgstr "" -#~ "`Issue #16220 `__: wsgiref now always " -#~ "calls close() on an iterable response. Patch by Brent Tubbs." - -#~ msgid "" -#~ "`Issue #16270 `__: urllib may hang when " -#~ "used for retrieving files via FTP by using a context manager. Patch by " -#~ "Giampaolo Rodola'." -#~ msgstr "" -#~ "`Issue #16270 `__: urllib may hang when " -#~ "used for retrieving files via FTP by using a context manager. Patch by " -#~ "Giampaolo Rodola'." - -#~ msgid "" -#~ "`Issue #16461 `__: Wave library should be " -#~ "able to deal with 4GB wav files, and sample rate of 44100 Hz." -#~ msgstr "" -#~ "`Issue #16461 `__: Wave library should be " -#~ "able to deal with 4GB wav files, and sample rate of 44100 Hz." - -#~ msgid "" -#~ "`Issue #16176 `__: Properly identify " -#~ "Windows 8 via platform.platform()" -#~ msgstr "" -#~ "`Issue #16176 `__: Properly identify " -#~ "Windows 8 via platform.platform()" - -#~ msgid "" -#~ "`Issue #16088 `__: " -#~ "BaseHTTPRequestHandler's send_error method includes a Content-Length " -#~ "header in its response now. Patch by Antoine Pitrou." -#~ msgstr "" -#~ "`Issue #16088 `__: " -#~ "BaseHTTPRequestHandler's send_error method includes a Content-Length " -#~ "header in its response now. Patch by Antoine Pitrou." - -#~ msgid "" -#~ "`Issue #16114 `__: The subprocess module " -#~ "no longer provides a misleading error message stating that args[0] did " -#~ "not exist when either the cwd or executable keyword arguments specified a " -#~ "path that did not exist." -#~ msgstr "" -#~ "`Issue #16114 `__: The subprocess module " -#~ "no longer provides a misleading error message stating that args[0] did " -#~ "not exist when either the cwd or executable keyword arguments specified a " -#~ "path that did not exist." - -#~ msgid "" -#~ "`Issue #16169 `__: Fix ctypes.WinError()'s " -#~ "confusion between errno and winerror." -#~ msgstr "" -#~ "`Issue #16169 `__: Fix ctypes.WinError()'s " -#~ "confusion between errno and winerror." - -#~ msgid "" -#~ "`Issue #16110 `__: logging.fileConfig now " -#~ "accepts a pre-initialised ConfigParser instance." -#~ msgstr "" -#~ "`Issue #16110 `__: logging.fileConfig now " -#~ "accepts a pre-initialised ConfigParser instance." - -#~ msgid "" -#~ "`Issue #1492704 `__: shutil.copyfile() " -#~ "raises a distinct SameFileError now if source and destination are the " -#~ "same file. Patch by Atsuo Ishimoto." -#~ msgstr "" -#~ "`Issue #1492704 `__: shutil.copyfile() " -#~ "raises a distinct SameFileError now if source and destination are the " -#~ "same file. Patch by Atsuo Ishimoto." - -#~ msgid "" -#~ "`Issue #13896 `__: Make shelf instances " -#~ "work with 'with' as context managers. Original patch by Filip " -#~ "Gruszczyński." -#~ msgstr "" -#~ "`Issue #13896 `__: Make shelf instances " -#~ "work with 'with' as context managers. Original patch by Filip " -#~ "Gruszczyński." - -#~ msgid "" -#~ "`Issue #15417 `__: Add support for csh and " -#~ "fish in venv activation scripts." -#~ msgstr "" -#~ "`Issue #15417 `__: Add support for csh and " -#~ "fish in venv activation scripts." - -#~ msgid "" -#~ "`Issue #14377 `__: ElementTree.write and " -#~ "some of the module-level functions have a new parameter - " -#~ "*short_empty_elements*. It controls how elements with no contents are " -#~ "emitted." -#~ msgstr "" -#~ "`Issue #14377 `__: ElementTree.write and " -#~ "some of the module-level functions have a new parameter - " -#~ "*short_empty_elements*. It controls how elements with no contents are " -#~ "emitted." - -#~ msgid "" -#~ "`Issue #16089 `__: Allow ElementTree." -#~ "TreeBuilder to work again with a non-Element element_factory (fixes a " -#~ "regression in SimpleTAL)." -#~ msgstr "" -#~ "`Issue #16089 `__: Allow ElementTree." -#~ "TreeBuilder to work again with a non-Element element_factory (fixes a " -#~ "regression in SimpleTAL)." - -#~ msgid "" -#~ "`Issue #9650 `__: List commonly used format " -#~ "codes in time.strftime and time.strptime docsttings. Original patch by " -#~ "Mike Hoy." -#~ msgstr "" -#~ "`Issue #9650 `__: List commonly used format " -#~ "codes in time.strftime and time.strptime docsttings. Original patch by " -#~ "Mike Hoy." - -#~ msgid "" -#~ "`Issue #15452 `__: logging configuration " -#~ "socket listener now has a verify option that allows an application to " -#~ "apply a verification function to the received configuration data before " -#~ "it is acted upon." -#~ msgstr "" -#~ "`Issue #15452 `__: logging configuration " -#~ "socket listener now has a verify option that allows an application to " -#~ "apply a verification function to the received configuration data before " -#~ "it is acted upon." - -#~ msgid "" -#~ "`Issue #16034 `__: Fix performance " -#~ "regressions in the new `bz2.BZ2File` implementation. Initial patch by " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16034 `__: Fix performance " -#~ "regressions in the new `bz2.BZ2File` implementation. Initial patch by " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15756 `__: `subprocess.poll()` now " -#~ "properly handles `errno.ECHILD` to return a returncode of 0 when the " -#~ "child has already exited or cannot be waited on." -#~ msgstr "" -#~ "`Issue #15756 `__: `subprocess.poll()` now " -#~ "properly handles `errno.ECHILD` to return a returncode of 0 when the " -#~ "child has already exited or cannot be waited on." - -#~ msgid "" -#~ "`Issue #15323 `__: Improve failure message " -#~ "of `Mock.assert_called_once_with()`." -#~ msgstr "" -#~ "`Issue #15323 `__: Improve failure message " -#~ "of `Mock.assert_called_once_with()`." - -#~ msgid "" -#~ "`Issue #16064 `__: ``unittest -m`` claims " -#~ "executable is \"python\", not \"python3\"." -#~ msgstr "" -#~ "`Issue #16064 `__: ``unittest -m`` claims " -#~ "executable is \"python\", not \"python3\"." - -#~ msgid "" -#~ "`Issue #12376 `__: Pass on parameters in " -#~ "`TextTestResult.__init__()` super call." -#~ msgstr "" -#~ "`Issue #12376 `__: Pass on parameters in " -#~ "`TextTestResult.__init__()` super call." - -#~ msgid "" -#~ "`Issue #15222 `__: Insert blank line after " -#~ "each message in mbox mailboxes." -#~ msgstr "" -#~ "`Issue #15222 `__: Insert blank line after " -#~ "each message in mbox mailboxes." - -#~ msgid "" -#~ "`Issue #16013 `__: Fix `csv.Reader` " -#~ "parsing issue with ending quote characters. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16013 `__: Fix `csv.Reader` " -#~ "parsing issue with ending quote characters. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15421 `__: Fix an OverflowError in " -#~ "`Calendar.itermonthdates()` after `datetime.MAXYEAR`. Patch by Cédric " -#~ "Krier." -#~ msgstr "" -#~ "`Issue #15421 `__: Fix an OverflowError in " -#~ "`Calendar.itermonthdates()` after `datetime.MAXYEAR`. Patch by Cédric " -#~ "Krier." - -#~ msgid "" -#~ "`Issue #16112 `__: platform.architecture " -#~ "does not correctly escape argument to /usr/bin/file. Patch by David " -#~ "Benjamin." -#~ msgstr "" -#~ "`Issue #16112 `__: platform.architecture " -#~ "does not correctly escape argument to /usr/bin/file. Patch by David " -#~ "Benjamin." - -#~ msgid "" -#~ "`Issue #15970 `__: `xml.etree.ElementTree` " -#~ "now serializes correctly the empty HTML elements 'meta' and 'param'." -#~ msgstr "" -#~ "`Issue #15970 `__: `xml.etree.ElementTree` " -#~ "now serializes correctly the empty HTML elements 'meta' and 'param'." - -#~ msgid "" -#~ "`Issue #15842 `__: The `SocketIO.{readable," -#~ "writable,seekable}` methods now raise ValueError when the file-like " -#~ "object is closed. Patch by Alessandro Moura." -#~ msgstr "" -#~ "`Issue #15842 `__: The `SocketIO.{readable," -#~ "writable,seekable}` methods now raise ValueError when the file-like " -#~ "object is closed. Patch by Alessandro Moura." - -#~ msgid "" -#~ "`Issue #15876 `__: Fix a refleak in the " -#~ "`curses` module: window.encoding." -#~ msgstr "" -#~ "`Issue #15876 `__: Fix a refleak in the " -#~ "`curses` module: window.encoding." - -#~ msgid "" -#~ "`Issue #15881 `__: Fix `atexit` hook in " -#~ "`multiprocessing`. Original patch by Chris McDonough." -#~ msgstr "" -#~ "`Issue #15881 `__: Fix `atexit` hook in " -#~ "`multiprocessing`. Original patch by Chris McDonough." - -#~ msgid "" -#~ "`Issue #15841 `__: The readable(), " -#~ "writable() and seekable() methods of `io.BytesIO` and `io.StringIO` " -#~ "objects now raise ValueError when the object has been closed. Patch by " -#~ "Alessandro Moura." -#~ msgstr "" -#~ "`Issue #15841 `__: The readable(), " -#~ "writable() and seekable() methods of `io.BytesIO` and `io.StringIO` " -#~ "objects now raise ValueError when the object has been closed. Patch by " -#~ "Alessandro Moura." - -#~ msgid "" -#~ "`Issue #15447 `__: Use `subprocess." -#~ "DEVNULL` in webbrowser, instead of opening `os.devnull` explicitly and " -#~ "leaving it open." -#~ msgstr "" -#~ "`Issue #15447 `__: Use `subprocess." -#~ "DEVNULL` in webbrowser, instead of opening `os.devnull` explicitly and " -#~ "leaving it open." - -#~ msgid "" -#~ "`Issue #15509 `__: `webbrowser." -#~ "UnixBrowser` no longer passes empty arguments to Popen when ``%action`` " -#~ "substitutions produce empty strings." -#~ msgstr "" -#~ "`Issue #15509 `__: `webbrowser." -#~ "UnixBrowser` no longer passes empty arguments to Popen when ``%action`` " -#~ "substitutions produce empty strings." - -#~ msgid "" -#~ "`Issue #12776 `__, `issue #11839 `__: Call `argparse` type function (specified by " -#~ "add_argument) only once. Before, the type function was called twice in " -#~ "the case where the default was specified and the argument was given as " -#~ "well. This was especially problematic for the FileType type, as a " -#~ "default file would always be opened, even if a file argument was " -#~ "specified on the command line." -#~ msgstr "" -#~ "`Issue #12776 `__, `issue #11839 `__: Call `argparse` type function (specified by " -#~ "add_argument) only once. Before, the type function was called twice in " -#~ "the case where the default was specified and the argument was given as " -#~ "well. This was especially problematic for the FileType type, as a " -#~ "default file would always be opened, even if a file argument was " -#~ "specified on the command line." - -#~ msgid "" -#~ "`Issue #15906 `__: Fix a regression in " -#~ "argparse caused by the preceding change, when ``action='append'``, " -#~ "``type='str'`` and ``default=[]``." -#~ msgstr "" -#~ "`Issue #15906 `__: Fix a regression in " -#~ "argparse caused by the preceding change, when ``action='append'``, " -#~ "``type='str'`` and ``default=[]``." - -#~ msgid "" -#~ "`Issue #16113 `__: Added sha3 module based " -#~ "on the Keccak reference implementation 3.2. The `hashlib` module has four " -#~ "additional hash algorithms: `sha3_224`, `sha3_256`, `sha3_384` and " -#~ "`sha3_512`. As part of the patch some common code was moved from " -#~ "_hashopenssl.c to hashlib.h." -#~ msgstr "" -#~ "`Issue #16113 `__: Added sha3 module based " -#~ "on the Keccak reference implementation 3.2. The `hashlib` module has four " -#~ "additional hash algorithms: `sha3_224`, `sha3_256`, `sha3_384` and " -#~ "`sha3_512`. As part of the patch some common code was moved from " -#~ "_hashopenssl.c to hashlib.h." - -#~ msgid "" -#~ "`Issue #16692 `__: Added TLSv1.1 and " -#~ "TLSv1.2 support for the ssl modules." -#~ msgstr "" -#~ "`Issue #16692 `__: Added TLSv1.1 and " -#~ "TLSv1.2 support for the ssl modules." - -#~ msgid "" -#~ "`Issue #16832 `__: add abc." -#~ "get_cache_token() to expose cache validity checking support in ABCMeta." -#~ msgstr "" -#~ "`Issue #16832 `__: add abc." -#~ "get_cache_token() to expose cache validity checking support in ABCMeta." - -#~ msgid "" -#~ "`Issue #18429 `__: Format / Format " -#~ "Paragraph, now works when comment blocks are selected. As with text " -#~ "blocks, this works best when the selection only includes complete lines." -#~ msgstr "" -#~ "`Issue #18429 `__: Format / Format " -#~ "Paragraph, now works when comment blocks are selected. As with text " -#~ "blocks, this works best when the selection only includes complete lines." - -#~ msgid "" -#~ "`Issue #18226 `__: Add docstrings and " -#~ "unittests for FormatParagraph.py. Original patches by Todd Rovito and " -#~ "Phil Webster." -#~ msgstr "" -#~ "`Issue #18226 `__: Add docstrings and " -#~ "unittests for FormatParagraph.py. Original patches by Todd Rovito and " -#~ "Phil Webster." - -#~ msgid "" -#~ "`Issue #18279 `__: Format - Strip trailing " -#~ "whitespace no longer marks a file as changed when it has not been " -#~ "changed. This fix followed the addition of a test file originally written " -#~ "by Phil Webster (the issue's main goal)." -#~ msgstr "" -#~ "`Issue #18279 `__: Format - Strip trailing " -#~ "whitespace no longer marks a file as changed when it has not been " -#~ "changed. This fix followed the addition of a test file originally written " -#~ "by Phil Webster (the issue's main goal)." - -#~ msgid "" -#~ "`Issue #7136 `__: In the Idle File menu, " -#~ "\"New Window\" is renamed \"New File\". Patch by Tal Einat, Roget Serwy, " -#~ "and Todd Rovito." -#~ msgstr "" -#~ "`Issue #7136 `__: In the Idle File menu, " -#~ "\"New Window\" is renamed \"New File\". Patch by Tal Einat, Roget Serwy, " -#~ "and Todd Rovito." - -#~ msgid "" -#~ "`Issue #18196 `__: Avoid displaying " -#~ "spurious SystemExit tracebacks." -#~ msgstr "" -#~ "`Issue #18196 `__: Avoid displaying " -#~ "spurious SystemExit tracebacks." - -#~ msgid "" -#~ "`Issue #5492 `__: Avoid traceback when " -#~ "exiting IDLE caused by a race condition." -#~ msgstr "" -#~ "`Issue #5492 `__: Avoid traceback when " -#~ "exiting IDLE caused by a race condition." - -#~ msgid "" -#~ "`Issue #17511 `__: Keep IDLE find dialog " -#~ "open after clicking \"Find Next\". Original patch by Sarah K." -#~ msgstr "" -#~ "`Issue #17511 `__: Keep IDLE find dialog " -#~ "open after clicking \"Find Next\". Original patch by Sarah K." - -#~ msgid "" -#~ "`Issue #18055 `__: Move IDLE off of imp " -#~ "and on to importlib." -#~ msgstr "" -#~ "`Issue #18055 `__: Move IDLE off of imp " -#~ "and on to importlib." - -#~ msgid "" -#~ "`Issue #15392 `__: Create a unittest " -#~ "framework for IDLE. Initial patch by Rajagopalasarma Jayakrishnan. See " -#~ "Lib/idlelib/idle_test/README.txt for how to run Idle tests." -#~ msgstr "" -#~ "`Issue #15392 `__: Create a unittest " -#~ "framework for IDLE. Initial patch by Rajagopalasarma Jayakrishnan. See " -#~ "Lib/idlelib/idle_test/README.txt for how to run Idle tests." - -#~ msgid "" -#~ "`Issue #14146 `__: Highlight source line " -#~ "while debugging on Windows." -#~ msgstr "" -#~ "`Issue #14146 `__: Highlight source line " -#~ "while debugging on Windows." - -#~ msgid "" -#~ "`Issue #17838 `__: Allow sys.stdin to be " -#~ "reassigned." -#~ msgstr "" -#~ "`Issue #17838 `__: Allow sys.stdin to be " -#~ "reassigned." - -#~ msgid "" -#~ "`Issue #13495 `__: Avoid loading the color " -#~ "delegator twice in IDLE." -#~ msgstr "" -#~ "`Issue #13495 `__: Avoid loading the color " -#~ "delegator twice in IDLE." - -#~ msgid "" -#~ "`Issue #17798 `__: Allow IDLE to edit new " -#~ "files when specified on command line." -#~ msgstr "" -#~ "`Issue #17798 `__: Allow IDLE to edit new " -#~ "files when specified on command line." - -#~ msgid "" -#~ "`Issue #14735 `__: Update IDLE docs to " -#~ "omit \"Control-z on Windows\"." -#~ msgstr "" -#~ "`Issue #14735 `__: Update IDLE docs to " -#~ "omit \"Control-z on Windows\"." - -#~ msgid "" -#~ "`Issue #17532 `__: Always include Options " -#~ "menu for IDLE on OS X. Patch by Guilherme Simões." -#~ msgstr "" -#~ "`Issue #17532 `__: Always include Options " -#~ "menu for IDLE on OS X. Patch by Guilherme Simões." - -#~ msgid "" -#~ "`Issue #17657 `__: Show full Tk version in " -#~ "IDLE's about dialog. Patch by Todd Rovito." -#~ msgstr "" -#~ "`Issue #17657 `__: Show full Tk version in " -#~ "IDLE's about dialog. Patch by Todd Rovito." - -#~ msgid "" -#~ "`Issue #17613 `__: Prevent traceback when " -#~ "removing syntax colorizer in IDLE." -#~ msgstr "" -#~ "`Issue #17613 `__: Prevent traceback when " -#~ "removing syntax colorizer in IDLE." - -#~ msgid "" -#~ "`Issue #1207589 `__: Backwards-" -#~ "compatibility patch for right-click menu in IDLE." -#~ msgstr "" -#~ "`Issue #1207589 `__: Backwards-" -#~ "compatibility patch for right-click menu in IDLE." - -#~ msgid "" -#~ "`Issue #16887 `__: IDLE now accepts Cancel " -#~ "in tabify/untabify dialog box." -#~ msgstr "" -#~ "`Issue #16887 `__: IDLE now accepts Cancel " -#~ "in tabify/untabify dialog box." - -#~ msgid "" -#~ "`Issue #17625 `__: In IDLE, close the " -#~ "replace dialog after it is used." -#~ msgstr "" -#~ "`Issue #17625 `__: In IDLE, close the " -#~ "replace dialog after it is used." - -#~ msgid "" -#~ "`Issue #14254 `__: IDLE now handles " -#~ "readline correctly across shell restarts." -#~ msgstr "" -#~ "`Issue #14254 `__: IDLE now handles " -#~ "readline correctly across shell restarts." - -#~ msgid "" -#~ "`Issue #17614 `__: IDLE no longer raises " -#~ "exception when quickly closing a file." -#~ msgstr "" -#~ "`Issue #17614 `__: IDLE no longer raises " -#~ "exception when quickly closing a file." - -#~ msgid "" -#~ "`Issue #6698 `__: IDLE now opens just an " -#~ "editor window when configured to do so." -#~ msgstr "" -#~ "`Issue #6698 `__: IDLE now opens just an " -#~ "editor window when configured to do so." - -#~ msgid "" -#~ "`Issue #8900 `__: Using keyboard shortcuts " -#~ "in IDLE to open a file no longer raises an exception." -#~ msgstr "" -#~ "`Issue #8900 `__: Using keyboard shortcuts " -#~ "in IDLE to open a file no longer raises an exception." - -#~ msgid "" -#~ "`Issue #6649 `__: Fixed missing exit status " -#~ "in IDLE. Patch by Guilherme Polo." -#~ msgstr "" -#~ "`Issue #6649 `__: Fixed missing exit status " -#~ "in IDLE. Patch by Guilherme Polo." - -#~ msgid "" -#~ "`Issue #17114 `__: IDLE now uses non-" -#~ "strict config parser." -#~ msgstr "" -#~ "`Issue #17114 `__: IDLE now uses non-" -#~ "strict config parser." - -#~ msgid "" -#~ "`Issue #9290 `__: In IDLE the sys.std* " -#~ "streams now implement io.TextIOBase interface and support all mandatory " -#~ "methods and properties." -#~ msgstr "" -#~ "`Issue #9290 `__: In IDLE the sys.std* " -#~ "streams now implement io.TextIOBase interface and support all mandatory " -#~ "methods and properties." - -#~ msgid "" -#~ "`Issue #5066 `__: Update IDLE docs. Patch " -#~ "by Todd Rovito." -#~ msgstr "" -#~ "`Issue #5066 `__: Update IDLE docs. Patch " -#~ "by Todd Rovito." - -#~ msgid "" -#~ "`Issue #16829 `__: IDLE printing no longer " -#~ "fails if there are spaces or other special characters in the file path." -#~ msgstr "" -#~ "`Issue #16829 `__: IDLE printing no longer " -#~ "fails if there are spaces or other special characters in the file path." - -#~ msgid "" -#~ "`Issue #16819 `__: IDLE method completion " -#~ "now correctly works for bytes literals." -#~ msgstr "" -#~ "`Issue #16819 `__: IDLE method completion " -#~ "now correctly works for bytes literals." - -#~ msgid "" -#~ "`Issue #16504 `__: IDLE now catches " -#~ "SyntaxErrors raised by tokenizer. Patch by Roger Serwy." -#~ msgstr "" -#~ "`Issue #16504 `__: IDLE now catches " -#~ "SyntaxErrors raised by tokenizer. Patch by Roger Serwy." - -#~ msgid "" -#~ "`Issue #16511 `__: Use default IDLE width " -#~ "and height if config param is not valid. Patch Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16511 `__: Use default IDLE width " -#~ "and height if config param is not valid. Patch Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #1207589 `__: Add Cut/Copy/Paste " -#~ "items to IDLE right click Context Menu. Patch by Todd Rovito." -#~ msgstr "" -#~ "`Issue #1207589 `__: Add Cut/Copy/Paste " -#~ "items to IDLE right click Context Menu. Patch by Todd Rovito." - -#~ msgid "" -#~ "`Issue #16123 `__: IDLE - deprecate " -#~ "running without a subprocess. Patch by Roger Serwy." -#~ msgstr "" -#~ "`Issue #16123 `__: IDLE - deprecate " -#~ "running without a subprocess. Patch by Roger Serwy." - -#~ msgid "" -#~ "`Issue #1666318 `__: Add a test that " -#~ "shutil.copytree() retains directory permissions. Patch by Catherine " -#~ "Devlin." -#~ msgstr "" -#~ "`Issue #1666318 `__: Add a test that " -#~ "shutil.copytree() retains directory permissions. Patch by Catherine " -#~ "Devlin." - -#~ msgid "" -#~ "`Issue #18273 `__: move the tests in Lib/" -#~ "test/json_tests to Lib/test/test_json and make them discoverable by " -#~ "unittest. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #18273 `__: move the tests in Lib/" -#~ "test/json_tests to Lib/test/test_json and make them discoverable by " -#~ "unittest. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #18396 `__: Fix spurious test " -#~ "failure in test_signal on Windows when faulthandler is enabled (Patch by " -#~ "Jeremy Kloth)" -#~ msgstr "" -#~ "`Issue #18396 `__: Fix spurious test " -#~ "failure in test_signal on Windows when faulthandler is enabled (Patch by " -#~ "Jeremy Kloth)" - -#~ msgid "" -#~ "`Issue #17046 `__: Fix broken " -#~ "test_executable_without_cwd in test_subprocess." -#~ msgstr "" -#~ "`Issue #17046 `__: Fix broken " -#~ "test_executable_without_cwd in test_subprocess." - -#~ msgid "" -#~ "`Issue #15415 `__: Add new temp_dir() and " -#~ "change_cwd() context managers to test.support, and refactor temp_cwd() to " -#~ "use them. Patch by Chris Jerdonek." -#~ msgstr "" -#~ "`Issue #15415 `__: Add new temp_dir() and " -#~ "change_cwd() context managers to test.support, and refactor temp_cwd() to " -#~ "use them. Patch by Chris Jerdonek." - -#~ msgid "" -#~ "`Issue #15494 `__: test.support is now a " -#~ "package rather than a module (Initial patch by Indra Talip)" -#~ msgstr "" -#~ "`Issue #15494 `__: test.support is now a " -#~ "package rather than a module (Initial patch by Indra Talip)" - -#~ msgid "" -#~ "`Issue #17944 `__: test_zipfile now " -#~ "discoverable and uses subclassing to generate tests for different " -#~ "compression types. Fixed a bug with skipping some tests due to use of " -#~ "exhausted iterators." -#~ msgstr "" -#~ "`Issue #17944 `__: test_zipfile now " -#~ "discoverable and uses subclassing to generate tests for different " -#~ "compression types. Fixed a bug with skipping some tests due to use of " -#~ "exhausted iterators." - -#~ msgid "" -#~ "`Issue #18266 `__: test_largefile now " -#~ "works with unittest test discovery and supports running only selected " -#~ "tests. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #18266 `__: test_largefile now " -#~ "works with unittest test discovery and supports running only selected " -#~ "tests. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17767 `__: test_locale now works " -#~ "with unittest test discovery. Original patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17767 `__: test_locale now works " -#~ "with unittest test discovery. Original patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #18375 `__: Assume --randomize when " -#~ "--randseed is used for running the testsuite." -#~ msgstr "" -#~ "`Issue #18375 `__: Assume --randomize when " -#~ "--randseed is used for running the testsuite." - -#~ msgid "" -#~ "`Issue #11185 `__: Fix test_wait4 under " -#~ "AIX. Patch by Sébastien Sablé." -#~ msgstr "" -#~ "`Issue #11185 `__: Fix test_wait4 under " -#~ "AIX. Patch by Sébastien Sablé." - -#~ msgid "" -#~ "`Issue #18207 `__: Fix test_ssl for some " -#~ "versions of OpenSSL that ignore seconds in ASN1_TIME fields." -#~ msgstr "" -#~ "`Issue #18207 `__: Fix test_ssl for some " -#~ "versions of OpenSSL that ignore seconds in ASN1_TIME fields." - -#~ msgid "" -#~ "`Issue #18094 `__: test_uuid no longer " -#~ "reports skipped tests as passed." -#~ msgstr "" -#~ "`Issue #18094 `__: test_uuid no longer " -#~ "reports skipped tests as passed." - -#~ msgid "" -#~ "`Issue #17992 `__: Add timeouts to " -#~ "asyncore and asynchat tests so that they won't accidentally hang." -#~ msgstr "" -#~ "`Issue #17992 `__: Add timeouts to " -#~ "asyncore and asynchat tests so that they won't accidentally hang." - -#~ msgid "" -#~ "`Issue #17833 `__: Fix test_gdb failures " -#~ "seen on machines where debug symbols for glibc are available (seen on " -#~ "PPC64 Linux)." -#~ msgstr "" -#~ "`Issue #17833 `__: Fix test_gdb failures " -#~ "seen on machines where debug symbols for glibc are available (seen on " -#~ "PPC64 Linux)." - -#~ msgid "" -#~ "`Issue #7855 `__: Add tests for ctypes/" -#~ "winreg for issues found in IronPython. Initial patch by Dino Viehland." -#~ msgstr "" -#~ "`Issue #7855 `__: Add tests for ctypes/" -#~ "winreg for issues found in IronPython. Initial patch by Dino Viehland." - -#~ msgid "" -#~ "`Issue #11078 `__: test___all__ now checks " -#~ "for duplicates in __all__. Initial patch by R. David Murray." -#~ msgstr "" -#~ "`Issue #11078 `__: test___all__ now checks " -#~ "for duplicates in __all__. Initial patch by R. David Murray." - -#~ msgid "" -#~ "`Issue #17712 `__: Fix test_gdb failures " -#~ "on Ubuntu 13.04." -#~ msgstr "" -#~ "`Issue #17712 `__: Fix test_gdb failures " -#~ "on Ubuntu 13.04." - -#~ msgid "" -#~ "`Issue #17835 `__: Fix test_io when the " -#~ "default OS pipe buffer size is larger than one million bytes." -#~ msgstr "" -#~ "`Issue #17835 `__: Fix test_io when the " -#~ "default OS pipe buffer size is larger than one million bytes." - -#~ msgid "" -#~ "`Issue #17065 `__: Use process-unique key " -#~ "for winreg tests to avoid failures if test is run multiple times in " -#~ "parallel (eg: on a buildbot host)." -#~ msgstr "" -#~ "`Issue #17065 `__: Use process-unique key " -#~ "for winreg tests to avoid failures if test is run multiple times in " -#~ "parallel (eg: on a buildbot host)." - -#~ msgid "" -#~ "`Issue #12820 `__: add tests for the xml." -#~ "dom.minicompat module. Patch by John Chandler and Phil Connell." -#~ msgstr "" -#~ "`Issue #12820 `__: add tests for the xml." -#~ "dom.minicompat module. Patch by John Chandler and Phil Connell." - -#~ msgid "" -#~ "`Issue #17691 `__: test_univnewlines now " -#~ "works with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17691 `__: test_univnewlines now " -#~ "works with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17790 `__: test_set now works with " -#~ "unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17790 `__: test_set now works with " -#~ "unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17789 `__: test_random now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17789 `__: test_random now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17779 `__: test_osx_env now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17779 `__: test_osx_env now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17766 `__: test_iterlen now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17766 `__: test_iterlen now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17690 `__: test_time now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17690 `__: test_time now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17692 `__: test_sqlite now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17692 `__: test_sqlite now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #11995 `__: test_pydoc doesn't " -#~ "import all sys.path modules anymore." -#~ msgstr "" -#~ "`Issue #11995 `__: test_pydoc doesn't " -#~ "import all sys.path modules anymore." - -#~ msgid "" -#~ "`Issue #17448 `__: test_sax now skips if " -#~ "there are no xml parsers available instead of raising an ImportError." -#~ msgstr "" -#~ "`Issue #17448 `__: test_sax now skips if " -#~ "there are no xml parsers available instead of raising an ImportError." - -#~ msgid "" -#~ "`Issue #11420 `__: make test suite pass " -#~ "with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters." -#~ msgstr "" -#~ "`Issue #11420 `__: make test suite pass " -#~ "with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters." - -#~ msgid "" -#~ "`Issue #10652 `__: make tcl/tk tests run " -#~ "after __all__ test, patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #10652 `__: make tcl/tk tests run " -#~ "after __all__ test, patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #11963 `__: remove human " -#~ "verification from test_parser and test_subprocess." -#~ msgstr "" -#~ "`Issue #11963 `__: remove human " -#~ "verification from test_parser and test_subprocess." - -#~ msgid "" -#~ "`Issue #11732 `__: add a new " -#~ "suppress_crash_popup() context manager to test.support that disables " -#~ "crash popups on Windows and use it in test_faulthandler and test_capi." -#~ msgstr "" -#~ "`Issue #11732 `__: add a new " -#~ "suppress_crash_popup() context manager to test.support that disables " -#~ "crash popups on Windows and use it in test_faulthandler and test_capi." - -#~ msgid "" -#~ "`Issue #13898 `__: test_ssl no longer " -#~ "prints a spurious stack trace on Ubuntu." -#~ msgstr "" -#~ "`Issue #13898 `__: test_ssl no longer " -#~ "prints a spurious stack trace on Ubuntu." - -#~ msgid "" -#~ "`Issue #17283 `__: Share code between " -#~ "`__main__.py` and `regrtest.py` in `Lib/test`." -#~ msgstr "" -#~ "`Issue #17283 `__: Share code between " -#~ "`__main__.py` and `regrtest.py` in `Lib/test`." - -#~ msgid "" -#~ "`Issue #17249 `__: convert a test in " -#~ "test_capi to use unittest and reap threads." -#~ msgstr "" -#~ "`Issue #17249 `__: convert a test in " -#~ "test_capi to use unittest and reap threads." - -#~ msgid "" -#~ "`Issue #17107 `__: Test client-side SNI " -#~ "support in urllib.request thanks to the new server-side SNI support in " -#~ "the ssl module. Initial patch by Daniel Black." -#~ msgstr "" -#~ "`Issue #17107 `__: Test client-side SNI " -#~ "support in urllib.request thanks to the new server-side SNI support in " -#~ "the ssl module. Initial patch by Daniel Black." - -#~ msgid "" -#~ "`Issue #17041 `__: Fix testing when Python " -#~ "is configured with the --without-doc-strings." -#~ msgstr "" -#~ "`Issue #17041 `__: Fix testing when Python " -#~ "is configured with the --without-doc-strings." - -#~ msgid "" -#~ "`Issue #16923 `__: Fix ResourceWarnings in " -#~ "test_ssl." -#~ msgstr "" -#~ "`Issue #16923 `__: Fix ResourceWarnings in " -#~ "test_ssl." - -#~ msgid "" -#~ "`Issue #15539 `__: Added regression tests " -#~ "for Tools/scripts/pindent.py." -#~ msgstr "" -#~ "`Issue #15539 `__: Added regression tests " -#~ "for Tools/scripts/pindent.py." - -#~ msgid "" -#~ "`Issue #17479 `__: test_io now works with " -#~ "unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17479 `__: test_io now works with " -#~ "unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17066 `__: test_robotparser now " -#~ "works with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17066 `__: test_robotparser now " -#~ "works with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17334 `__: test_index now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17334 `__: test_index now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17333 `__: test_imaplib now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17333 `__: test_imaplib now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17082 `__: test_dbm* now work with " -#~ "unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17082 `__: test_dbm* now work with " -#~ "unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17079 `__: test_ctypes now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17079 `__: test_ctypes now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17304 `__: test_hash now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17304 `__: test_hash now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17303 `__: test_future* now work " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17303 `__: test_future* now work " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #17163 `__: test_file now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #17163 `__: test_file now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16925 `__: test_configparser now " -#~ "works with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16925 `__: test_configparser now " -#~ "works with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16918 `__: test_codecs now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16918 `__: test_codecs now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16919 `__: test_crypt now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16919 `__: test_crypt now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16910 `__: test_bytes, " -#~ "test_unicode, and test_userstring now work with unittest test discovery. " -#~ "Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16910 `__: test_bytes, " -#~ "test_unicode, and test_userstring now work with unittest test discovery. " -#~ "Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16905 `__: test_warnings now works " -#~ "with unittest test discovery. Initial patch by Berker Peksag." -#~ msgstr "" -#~ "`Issue #16905 `__: test_warnings now works " -#~ "with unittest test discovery. Initial patch by Berker Peksag." - -#~ msgid "" -#~ "`Issue #16898 `__: test_bufio now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16898 `__: test_bufio now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16888 `__: test_array now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16888 `__: test_array now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16896 `__: test_asyncore now works " -#~ "with unittest test discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16896 `__: test_asyncore now works " -#~ "with unittest test discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16897 `__: test_bisect now works " -#~ "with unittest test discovery. Initial patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16897 `__: test_bisect now works " -#~ "with unittest test discovery. Initial patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16852 `__: test_genericpath, " -#~ "test_posixpath, test_ntpath, and test_macpath now work with unittest test " -#~ "discovery. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16852 `__: test_genericpath, " -#~ "test_posixpath, test_ntpath, and test_macpath now work with unittest test " -#~ "discovery. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #16748 `__: test_heapq now works " -#~ "with unittest test discovery." -#~ msgstr "" -#~ "`Issue #16748 `__: test_heapq now works " -#~ "with unittest test discovery." - -#~ msgid "" -#~ "`Issue #10646 `__: Tests rearranged for os." -#~ "samefile/samestat to check for not just symlinks but also hard links." -#~ msgstr "" -#~ "`Issue #10646 `__: Tests rearranged for os." -#~ "samefile/samestat to check for not just symlinks but also hard links." - -#~ msgid "" -#~ "`Issue #15302 `__: Switch regrtest from " -#~ "using getopt to using argparse." -#~ msgstr "" -#~ "`Issue #15302 `__: Switch regrtest from " -#~ "using getopt to using argparse." - -#~ msgid "" -#~ "`Issue #15324 `__: Fix regrtest parsing of " -#~ "--fromfile, --match, and --randomize options." -#~ msgstr "" -#~ "`Issue #15324 `__: Fix regrtest parsing of " -#~ "--fromfile, --match, and --randomize options." - -#~ msgid "" -#~ "`Issue #16702 `__: test_urllib2_localnet " -#~ "tests now correctly ignores proxies for localhost tests." -#~ msgstr "" -#~ "`Issue #16702 `__: test_urllib2_localnet " -#~ "tests now correctly ignores proxies for localhost tests." - -#~ msgid "" -#~ "`Issue #16664 `__: Add regression tests " -#~ "for glob's behaviour concerning entries starting with a \".\". Patch by " -#~ "Sebastian Kreft." -#~ msgstr "" -#~ "`Issue #16664 `__: Add regression tests " -#~ "for glob's behaviour concerning entries starting with a \".\". Patch by " -#~ "Sebastian Kreft." - -#~ msgid "" -#~ "`Issue #13390 `__: The ``-R`` option to " -#~ "regrtest now also checks for memory allocation leaks, using :func:`sys." -#~ "getallocatedblocks()`." -#~ msgstr "" -#~ "`Issue #13390 `__: The ``-R`` option to " -#~ "regrtest now also checks for memory allocation leaks, using :func:`sys." -#~ "getallocatedblocks()`." - -#~ msgid "" -#~ "`Issue #16559 `__: Add more tests for the " -#~ "json module, including some from the official test suite at json.org. " -#~ "Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16559 `__: Add more tests for the " -#~ "json module, including some from the official test suite at json.org. " -#~ "Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16661 `__: Fix the `os." -#~ "getgrouplist()` test by not assuming that it gives the same output as :" -#~ "command:`id -G`." -#~ msgstr "" -#~ "`Issue #16661 `__: Fix the `os." -#~ "getgrouplist()` test by not assuming that it gives the same output as :" -#~ "command:`id -G`." - -#~ msgid "" -#~ "`Issue #16115 `__: Add some tests for the " -#~ "executable argument to subprocess.Popen(). Initial patch by Kushal Das." -#~ msgstr "" -#~ "`Issue #16115 `__: Add some tests for the " -#~ "executable argument to subprocess.Popen(). Initial patch by Kushal Das." - -#~ msgid "" -#~ "`Issue #16126 `__: PyErr_Format format " -#~ "mismatch in _testcapimodule.c. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16126 `__: PyErr_Format format " -#~ "mismatch in _testcapimodule.c. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15304 `__: Fix warning message " -#~ "when `os.chdir()` fails inside `test.support.temp_cwd()`. Patch by Chris " -#~ "Jerdonek." -#~ msgstr "" -#~ "`Issue #15304 `__: Fix warning message " -#~ "when `os.chdir()` fails inside `test.support.temp_cwd()`. Patch by Chris " -#~ "Jerdonek." - -#~ msgid "" -#~ "`Issue #15802 `__: Fix test logic in " -#~ "`TestMaildir.test_create_tmp()`. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #15802 `__: Fix test logic in " -#~ "`TestMaildir.test_create_tmp()`. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #15557 `__: Added a test suite for " -#~ "the webbrowser module, thanks to Anton Barkovsky." -#~ msgstr "" -#~ "`Issue #15557 `__: Added a test suite for " -#~ "the webbrowser module, thanks to Anton Barkovsky." - -#~ msgid "" -#~ "`Issue #16698 `__: Skip posix " -#~ "test_getgroups when built with OS X deployment target prior to 10.6." -#~ msgstr "" -#~ "`Issue #16698 `__: Skip posix " -#~ "test_getgroups when built with OS X deployment target prior to 10.6." - -#~ msgid "" -#~ "`Issue #16067 `__: Add description into " -#~ "MSI file to replace installer's temporary name." -#~ msgstr "" -#~ "`Issue #16067 `__: Add description into " -#~ "MSI file to replace installer's temporary name." - -#~ msgid "" -#~ "`Issue #18257 `__: Fix readlink usage in " -#~ "python-config. Install the python version again on Darwin." -#~ msgstr "" -#~ "`Issue #18257 `__: Fix readlink usage in " -#~ "python-config. Install the python version again on Darwin." - -#~ msgid "" -#~ "`Issue #18481 `__: Add C coverage " -#~ "reporting with gcov and lcov. A new make target \"coverage-report\" " -#~ "creates an instrumented Python build, runs unit tests and creates a HTML. " -#~ "The report can be updated with \"make coverage-lcov\"." -#~ msgstr "" -#~ "`Issue #18481 `__: Add C coverage " -#~ "reporting with gcov and lcov. A new make target \"coverage-report\" " -#~ "creates an instrumented Python build, runs unit tests and creates a HTML. " -#~ "The report can be updated with \"make coverage-lcov\"." - -#~ msgid "" -#~ "`Issue #17845 `__: Clarified the message " -#~ "printed when some module are not built." -#~ msgstr "" -#~ "`Issue #17845 `__: Clarified the message " -#~ "printed when some module are not built." - -#~ msgid "" -#~ "`Issue #18256 `__: Compilation fix for " -#~ "recent AIX releases. Patch by David Edelsohn." -#~ msgstr "" -#~ "`Issue #18256 `__: Compilation fix for " -#~ "recent AIX releases. Patch by David Edelsohn." - -#~ msgid "" -#~ "`Issue #17547 `__: In configure, " -#~ "explicitly pass -Wformat for the benefit for GCC 4.8." -#~ msgstr "" -#~ "`Issue #17547 `__: In configure, " -#~ "explicitly pass -Wformat for the benefit for GCC 4.8." - -#~ msgid "" -#~ "`Issue #15172 `__: Document NASM 2.10+ as " -#~ "requirement for building OpenSSL 1.0.1 on Windows." -#~ msgstr "" -#~ "`Issue #15172 `__: Document NASM 2.10+ as " -#~ "requirement for building OpenSSL 1.0.1 on Windows." - -#~ msgid "" -#~ "`Issue #17591 `__: Use lowercase filenames " -#~ "when including Windows header files. Patch by Roumen Petrov." -#~ msgstr "" -#~ "`Issue #17591 `__: Use lowercase filenames " -#~ "when including Windows header files. Patch by Roumen Petrov." - -#~ msgid "" -#~ "`Issue #17550 `__: Fix the --enable-" -#~ "profiling configure switch." -#~ msgstr "" -#~ "`Issue #17550 `__: Fix the --enable-" -#~ "profiling configure switch." - -#~ msgid "" -#~ "`Issue #17425 `__: Build with openssl " -#~ "1.0.1d on Windows." -#~ msgstr "" -#~ "`Issue #17425 `__: Build with openssl " -#~ "1.0.1d on Windows." - -#~ msgid "" -#~ "`Issue #16754 `__: Fix the incorrect " -#~ "shared library extension on linux. Introduce two makefile macros " -#~ "SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again " -#~ "(as in 2.x and 3.1). The SO macro is removed in 3.4." -#~ msgstr "" -#~ "`Issue #16754 `__: Fix the incorrect " -#~ "shared library extension on linux. Introduce two makefile macros " -#~ "SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again " -#~ "(as in 2.x and 3.1). The SO macro is removed in 3.4." - -#~ msgid "" -#~ "`Issue #5033 `__: Fix building of the " -#~ "sqlite3 extension module when the SQLite library version has \"beta\" in " -#~ "it. Patch by Andreas Pelme." -#~ msgstr "" -#~ "`Issue #5033 `__: Fix building of the " -#~ "sqlite3 extension module when the SQLite library version has \"beta\" in " -#~ "it. Patch by Andreas Pelme." - -#~ msgid "" -#~ "`Issue #17228 `__: Fix building without " -#~ "pymalloc." -#~ msgstr "" -#~ "`Issue #17228 `__: Fix building without " -#~ "pymalloc." - -#~ msgid "" -#~ "`Issue #3718 `__: Use AC_ARG_VAR to set " -#~ "MACHDEP in configure.ac." -#~ msgstr "" -#~ "`Issue #3718 `__: Use AC_ARG_VAR to set " -#~ "MACHDEP in configure.ac." - -#~ msgid "" -#~ "`Issue #16235 `__: Implement python-config " -#~ "as a shell script." -#~ msgstr "" -#~ "`Issue #16235 `__: Implement python-config " -#~ "as a shell script." - -#~ msgid "" -#~ "`Issue #16769 `__: Remove outdated Visual " -#~ "Studio projects." -#~ msgstr "" -#~ "`Issue #16769 `__: Remove outdated Visual " -#~ "Studio projects." - -#~ msgid "" -#~ "`Issue #17031 `__: Fix running regen in " -#~ "cross builds." -#~ msgstr "" -#~ "`Issue #17031 `__: Fix running regen in " -#~ "cross builds." - -#~ msgid "" -#~ "`Issue #3754 `__: fix typo in pthread " -#~ "AC_CACHE_VAL." -#~ msgstr "" -#~ "`Issue #3754 `__: fix typo in pthread " -#~ "AC_CACHE_VAL." - -#~ msgid "" -#~ "`Issue #15484 `__: Fix " -#~ "_PYTHON_PROJECT_BASE for srcdir != builddir builds; use " -#~ "_PYTHON_PROJECT_BASE in distutils/sysconfig.py." -#~ msgstr "" -#~ "`Issue #15484 `__: Fix " -#~ "_PYTHON_PROJECT_BASE for srcdir != builddir builds; use " -#~ "_PYTHON_PROJECT_BASE in distutils/sysconfig.py." - -#~ msgid "" -#~ "`Issue #17029 `__: Let h2py search the " -#~ "multiarch system include directory." -#~ msgstr "" -#~ "`Issue #17029 `__: Let h2py search the " -#~ "multiarch system include directory." - -#~ msgid "" -#~ "`Issue #16953 `__: Fix socket module " -#~ "compilation on platforms with HAVE_BROKEN_POLL. Patch by Jeffrey " -#~ "Armstrong." -#~ msgstr "" -#~ "`Issue #16953 `__: Fix socket module " -#~ "compilation on platforms with HAVE_BROKEN_POLL. Patch by Jeffrey " -#~ "Armstrong." - -#~ msgid "" -#~ "`Issue #16320 `__: Remove redundant " -#~ "Makefile dependencies for strings and bytes." -#~ msgstr "" -#~ "`Issue #16320 `__: Remove redundant " -#~ "Makefile dependencies for strings and bytes." - -#~ msgid "" -#~ "`Issue #16836 `__: Enable IPv6 support " -#~ "even if IPv6 is disabled on the build host." -#~ msgstr "" -#~ "`Issue #16836 `__: Enable IPv6 support " -#~ "even if IPv6 is disabled on the build host." - -#~ msgid "" -#~ "`Issue #16593 `__: Have BSD 'make -s' do " -#~ "the right thing, thanks to Daniel Shahaf" -#~ msgstr "" -#~ "`Issue #16593 `__: Have BSD 'make -s' do " -#~ "the right thing, thanks to Daniel Shahaf" - -#~ msgid "" -#~ "`Issue #15298 `__: ensure _sysconfigdata " -#~ "is generated in build directory, not source directory." -#~ msgstr "" -#~ "`Issue #15298 `__: ensure _sysconfigdata " -#~ "is generated in build directory, not source directory." - -#~ msgid "" -#~ "`Issue #15833 `__: Fix a regression in 3.3 " -#~ "that resulted in exceptions being raised if importlib failed to write " -#~ "byte-compiled files. This affected attempts to build Python out-of-tree " -#~ "from a read-only source directory." -#~ msgstr "" -#~ "`Issue #15833 `__: Fix a regression in 3.3 " -#~ "that resulted in exceptions being raised if importlib failed to write " -#~ "byte-compiled files. This affected attempts to build Python out-of-tree " -#~ "from a read-only source directory." - -#~ msgid "" -#~ "`Issue #15923 `__: Fix a mistake in " -#~ "``asdl_c.py`` that resulted in a TypeError after 2801bf875a24 (see " -#~ "#15801)." -#~ msgstr "" -#~ "`Issue #15923 `__: Fix a mistake in " -#~ "``asdl_c.py`` that resulted in a TypeError after 2801bf875a24 (see " -#~ "#15801)." - -#~ msgid "" -#~ "`Issue #16135 `__: Remove OS/2 support." -#~ msgstr "" -#~ "`Issue #16135 `__: Remove OS/2 support." - -#~ msgid "" -#~ "`Issue #15819 `__: Make sure we can build " -#~ "Python out-of-tree from a read-only source directory. (Somewhat related " -#~ "to `issue #9860 `__.)" -#~ msgstr "" -#~ "`Issue #15819 `__: Make sure we can build " -#~ "Python out-of-tree from a read-only source directory. (Somewhat related " -#~ "to `issue #9860 `__.)" - -#~ msgid "" -#~ "`Issue #15587 `__: Enable Tk high-" -#~ "resolution text rendering on Macs with Retina displays. Applies to " -#~ "Tkinter apps, such as IDLE, on OS X framework builds linked with Cocoa Tk " -#~ "8.5." -#~ msgstr "" -#~ "`Issue #15587 `__: Enable Tk high-" -#~ "resolution text rendering on Macs with Retina displays. Applies to " -#~ "Tkinter apps, such as IDLE, on OS X framework builds linked with Cocoa Tk " -#~ "8.5." - -#~ msgid "" -#~ "`Issue #17161 `__: make install now also " -#~ "installs a python3 man page." -#~ msgstr "" -#~ "`Issue #17161 `__: make install now also " -#~ "installs a python3 man page." - -#~ msgid "" -#~ "`Issue #18351 `__: Fix various issues in a " -#~ "function in importlib provided to help " -#~ "PyImport_ExecCodeModuleWithPathnames() (and thus by extension " -#~ "PyImport_ExecCodeModule() and PyImport_ExecCodeModuleEx())." -#~ msgstr "" -#~ "`Issue #18351 `__: Fix various issues in a " -#~ "function in importlib provided to help " -#~ "PyImport_ExecCodeModuleWithPathnames() (and thus by extension " -#~ "PyImport_ExecCodeModule() and PyImport_ExecCodeModuleEx())." - -#~ msgid "" -#~ "`Issue #15767 `__: Added " -#~ "PyErr_SetImportErrorSubclass()." -#~ msgstr "" -#~ "`Issue #15767 `__: Added " -#~ "PyErr_SetImportErrorSubclass()." - -#~ msgid "" -#~ "`Issue #9369 `__: The types of `char*` " -#~ "arguments of PyObject_CallFunction() and PyObject_CallMethod() now " -#~ "changed to `const char*`. Based on patches by Jörg Müller and Lars " -#~ "Buitinck." -#~ msgstr "" -#~ "`Issue #9369 `__: The types of `char*` " -#~ "arguments of PyObject_CallFunction() and PyObject_CallMethod() now " -#~ "changed to `const char*`. Based on patches by Jörg Müller and Lars " -#~ "Buitinck." - -#~ msgid "" -#~ "`Issue #17206 `__: Py_CLEAR(), " -#~ "Py_DECREF(), Py_XINCREF() and Py_XDECREF() now expand their arguments " -#~ "once instead of multiple times. Patch written by Illia Polosukhin." -#~ msgstr "" -#~ "`Issue #17206 `__: Py_CLEAR(), " -#~ "Py_DECREF(), Py_XINCREF() and Py_XDECREF() now expand their arguments " -#~ "once instead of multiple times. Patch written by Illia Polosukhin." - -#~ msgid "" -#~ "`Issue #17522 `__: Add the " -#~ "PyGILState_Check() API." -#~ msgstr "" -#~ "`Issue #17522 `__: Add the " -#~ "PyGILState_Check() API." - -#~ msgid "" -#~ "`Issue #17327 `__: Add PyDict_SetDefault." -#~ msgstr "" -#~ "`Issue #17327 `__: Add PyDict_SetDefault." - -#~ msgid "" -#~ "`Issue #16881 `__: Fix Py_ARRAY_LENGTH " -#~ "macro for GCC < 3.1." -#~ msgstr "" -#~ "`Issue #16881 `__: Fix Py_ARRAY_LENGTH " -#~ "macro for GCC < 3.1." - -#~ msgid "" -#~ "`Issue #16505 `__: Remove unused " -#~ "Py_TPFLAGS_INT_SUBCLASS." -#~ msgstr "" -#~ "`Issue #16505 `__: Remove unused " -#~ "Py_TPFLAGS_INT_SUBCLASS." - -#~ msgid "" -#~ "`Issue #16086 `__: PyTypeObject.tp_flags " -#~ "and PyType_Spec.flags are now unsigned (unsigned long and unsigned int) " -#~ "to avoid an undefined behaviour with Py_TPFLAGS_TYPE_SUBCLASS ((1 << 31). " -#~ "PyType_GetFlags() result type is now unsigned too (unsigned long, instead " -#~ "of long)." -#~ msgstr "" -#~ "`Issue #16086 `__: PyTypeObject.tp_flags " -#~ "and PyType_Spec.flags are now unsigned (unsigned long and unsigned int) " -#~ "to avoid an undefined behaviour with Py_TPFLAGS_TYPE_SUBCLASS ((1 << 31). " -#~ "PyType_GetFlags() result type is now unsigned too (unsigned long, instead " -#~ "of long)." - -#~ msgid "" -#~ "`Issue #16166 `__: Add PY_LITTLE_ENDIAN " -#~ "and PY_BIG_ENDIAN macros and unified endianness detection and handling." -#~ msgstr "" -#~ "`Issue #16166 `__: Add PY_LITTLE_ENDIAN " -#~ "and PY_BIG_ENDIAN macros and unified endianness detection and handling." - -#~ msgid "" -#~ "`Issue #23006 `__: Improve the " -#~ "documentation and indexing of dict.__missing__. Add an entry in the " -#~ "language datamodel special methods section. Revise and index its " -#~ "discussion in the stdtypes mapping/dict section." -#~ msgstr "" -#~ "`Issue #23006 `__: Improve the " -#~ "documentation and indexing of dict.__missing__. Add an entry in the " -#~ "language datamodel special methods section. Revise and index its " -#~ "discussion in the stdtypes mapping/dict section." - -#~ msgid "" -#~ "`Issue #17701 `__: Improving strftime " -#~ "documentation." -#~ msgstr "" -#~ "`Issue #17701 `__: Improving strftime " -#~ "documentation." - -#~ msgid "" -#~ "`Issue #18440 `__: Clarify that `hash()` " -#~ "can truncate the value returned from an object's custom `__hash__()` " -#~ "method." -#~ msgstr "" -#~ "`Issue #18440 `__: Clarify that `hash()` " -#~ "can truncate the value returned from an object's custom `__hash__()` " -#~ "method." - -#~ msgid "" -#~ "`Issue #17844 `__: Add links to encoders " -#~ "and decoders for bytes-to-bytes codecs." -#~ msgstr "" -#~ "`Issue #17844 `__: Add links to encoders " -#~ "and decoders for bytes-to-bytes codecs." - -#~ msgid "" -#~ "`Issue #14097 `__: improve the " -#~ "\"introduction\" page of the tutorial." -#~ msgstr "" -#~ "`Issue #14097 `__: improve the " -#~ "\"introduction\" page of the tutorial." - -#~ msgid "" -#~ "`Issue #17977 `__: The documentation for " -#~ "the cadefault argument's default value in urllib.request.urlopen() is " -#~ "fixed to match the code." -#~ msgstr "" -#~ "`Issue #17977 `__: The documentation for " -#~ "the cadefault argument's default value in urllib.request.urlopen() is " -#~ "fixed to match the code." - -#~ msgid "" -#~ "`Issue #6696 `__: add documentation for the " -#~ "Profile objects, and improve profile/cProfile docs. Patch by Tom " -#~ "Pinckney." -#~ msgstr "" -#~ "`Issue #6696 `__: add documentation for the " -#~ "Profile objects, and improve profile/cProfile docs. Patch by Tom " -#~ "Pinckney." - -#~ msgid "" -#~ "`Issue #15940 `__: Specify effect of " -#~ "locale on time functions." -#~ msgstr "" -#~ "`Issue #15940 `__: Specify effect of " -#~ "locale on time functions." - -#~ msgid "" -#~ "`Issue #17538 `__: Document XML " -#~ "vulnerabilties" -#~ msgstr "" -#~ "`Issue #17538 `__: Document XML " -#~ "vulnerabilties" - -#~ msgid "" -#~ "`Issue #16642 `__: sched.scheduler " -#~ "timefunc initial default is time.monotonic. Patch by Ramchandra Apte" -#~ msgstr "" -#~ "`Issue #16642 `__: sched.scheduler " -#~ "timefunc initial default is time.monotonic. Patch by Ramchandra Apte" - -#~ msgid "" -#~ "`Issue #17047 `__: remove doubled words in " -#~ "docs and docstrings reported by Serhiy Storchaka and Matthew Barnett." -#~ msgstr "" -#~ "`Issue #17047 `__: remove doubled words in " -#~ "docs and docstrings reported by Serhiy Storchaka and Matthew Barnett." - -#~ msgid "" -#~ "`Issue #15465 `__: Document the versioning " -#~ "macros in the C API docs rather than the standard library docs. Patch by " -#~ "Kushal Das." -#~ msgstr "" -#~ "`Issue #15465 `__: Document the versioning " -#~ "macros in the C API docs rather than the standard library docs. Patch by " -#~ "Kushal Das." - -#~ msgid "" -#~ "`Issue #16406 `__: Combine the pages for " -#~ "uploading and registering to PyPI." -#~ msgstr "" -#~ "`Issue #16406 `__: Combine the pages for " -#~ "uploading and registering to PyPI." - -#~ msgid "" -#~ "`Issue #16403 `__: Document how distutils " -#~ "uses the maintainer field in PKG-INFO. Patch by Jyrki Pulliainen." -#~ msgstr "" -#~ "`Issue #16403 `__: Document how distutils " -#~ "uses the maintainer field in PKG-INFO. Patch by Jyrki Pulliainen." - -#~ msgid "" -#~ "`Issue #16695 `__: Document how glob " -#~ "handles filenames starting with a dot. Initial patch by Jyrki Pulliainen." -#~ msgstr "" -#~ "`Issue #16695 `__: Document how glob " -#~ "handles filenames starting with a dot. Initial patch by Jyrki Pulliainen." - -#~ msgid "" -#~ "`Issue #8890 `__: Stop advertising an " -#~ "insecure practice by replacing uses of the /tmp directory with better " -#~ "alternatives in the documentation. Patch by Geoff Wilson." -#~ msgstr "" -#~ "`Issue #8890 `__: Stop advertising an " -#~ "insecure practice by replacing uses of the /tmp directory with better " -#~ "alternatives in the documentation. Patch by Geoff Wilson." - -#~ msgid "" -#~ "`Issue #17203 `__: add long option names " -#~ "to unittest discovery docs." -#~ msgstr "" -#~ "`Issue #17203 `__: add long option names " -#~ "to unittest discovery docs." - -#~ msgid "" -#~ "`Issue #13094 `__: add \"Why do lambdas " -#~ "defined in a loop with different values all return the same result?\" " -#~ "programming FAQ." -#~ msgstr "" -#~ "`Issue #13094 `__: add \"Why do lambdas " -#~ "defined in a loop with different values all return the same result?\" " -#~ "programming FAQ." - -#~ msgid "" -#~ "`Issue #14901 `__: Update portions of the " -#~ "Windows FAQ. Patch by Ashish Nitin Patil." -#~ msgstr "" -#~ "`Issue #14901 `__: Update portions of the " -#~ "Windows FAQ. Patch by Ashish Nitin Patil." - -#~ msgid "" -#~ "`Issue #16267 `__: Better document the " -#~ "3.3+ approach to combining @abstractmethod with @staticmethod, " -#~ "@classmethod and @property" -#~ msgstr "" -#~ "`Issue #16267 `__: Better document the " -#~ "3.3+ approach to combining @abstractmethod with @staticmethod, " -#~ "@classmethod and @property" - -#~ msgid "" -#~ "`Issue #15209 `__: Clarify exception " -#~ "chaining description in exceptions module documentation" -#~ msgstr "" -#~ "`Issue #15209 `__: Clarify exception " -#~ "chaining description in exceptions module documentation" - -#~ msgid "" -#~ "`Issue #15990 `__: Improve argument/" -#~ "parameter documentation." -#~ msgstr "" -#~ "`Issue #15990 `__: Improve argument/" -#~ "parameter documentation." - -#~ msgid "" -#~ "`Issue #16209 `__: Move the documentation " -#~ "for the str built-in function to a new str class entry in the \"Text " -#~ "Sequence Type\" section." -#~ msgstr "" -#~ "`Issue #16209 `__: Move the documentation " -#~ "for the str built-in function to a new str class entry in the \"Text " -#~ "Sequence Type\" section." - -#~ msgid "" -#~ "`Issue #13538 `__: Improve str() and " -#~ "object.__str__() documentation." -#~ msgstr "" -#~ "`Issue #13538 `__: Improve str() and " -#~ "object.__str__() documentation." - -#~ msgid "" -#~ "`Issue #16489 `__: Make it clearer that " -#~ "importlib.find_loader() needs parent packages to be explicitly imported." -#~ msgstr "" -#~ "`Issue #16489 `__: Make it clearer that " -#~ "importlib.find_loader() needs parent packages to be explicitly imported." - -#~ msgid "" -#~ "`Issue #16400 `__: Update the description " -#~ "of which versions of a given package PyPI displays." -#~ msgstr "" -#~ "`Issue #16400 `__: Update the description " -#~ "of which versions of a given package PyPI displays." - -#~ msgid "" -#~ "`Issue #15677 `__: Document that zlib and " -#~ "gzip accept a compression level of 0 to mean 'no compression'. Patch by " -#~ "Brian Brazil." -#~ msgstr "" -#~ "`Issue #15677 `__: Document that zlib and " -#~ "gzip accept a compression level of 0 to mean 'no compression'. Patch by " -#~ "Brian Brazil." - -#~ msgid "" -#~ "`Issue #16197 `__: Update winreg " -#~ "docstrings and documentation to match code. Patch by Zachary Ware." -#~ msgstr "" -#~ "`Issue #16197 `__: Update winreg " -#~ "docstrings and documentation to match code. Patch by Zachary Ware." - -#~ msgid "" -#~ "`Issue #8040 `__: added a version switcher " -#~ "to the documentation. Patch by Yury Selivanov." -#~ msgstr "" -#~ "`Issue #8040 `__: added a version switcher " -#~ "to the documentation. Patch by Yury Selivanov." - -#~ msgid "" -#~ "`Issue #16241 `__: Document -X " -#~ "faulthandler command line option. Patch by Marek Šuppa." -#~ msgstr "" -#~ "`Issue #16241 `__: Document -X " -#~ "faulthandler command line option. Patch by Marek Šuppa." - -#~ msgid "" -#~ "`Issue #16115 `__: Improve subprocess." -#~ "Popen() documentation around args, shell, and executable arguments." -#~ msgstr "" -#~ "`Issue #16115 `__: Improve subprocess." -#~ "Popen() documentation around args, shell, and executable arguments." - -#~ msgid "" -#~ "`Issue #13498 `__: Clarify docs of os." -#~ "makedirs()'s exist_ok argument. Done with great native-speaker help from " -#~ "R. David Murray." -#~ msgstr "" -#~ "`Issue #13498 `__: Clarify docs of os." -#~ "makedirs()'s exist_ok argument. Done with great native-speaker help from " -#~ "R. David Murray." - -#~ msgid "" -#~ "`Issue #15533 `__: Clarify docs and add " -#~ "tests for `subprocess.Popen()`'s cwd argument." -#~ msgstr "" -#~ "`Issue #15533 `__: Clarify docs and add " -#~ "tests for `subprocess.Popen()`'s cwd argument." - -#~ msgid "" -#~ "`Issue #16036 `__: Improve documentation " -#~ "of built-in `int()`'s signature and arguments." -#~ msgstr "" -#~ "`Issue #16036 `__: Improve documentation " -#~ "of built-in `int()`'s signature and arguments." - -#~ msgid "" -#~ "`Issue #15935 `__: Clarification of " -#~ "`argparse` docs, re: add_argument() type and default arguments. Patch " -#~ "contributed by Chris Jerdonek." -#~ msgstr "" -#~ "`Issue #15935 `__: Clarification of " -#~ "`argparse` docs, re: add_argument() type and default arguments. Patch " -#~ "contributed by Chris Jerdonek." - -#~ msgid "" -#~ "`Issue #11964 `__: Document a change in " -#~ "v3.2 to the behavior of the indent parameter of json encoding operations." -#~ msgstr "" -#~ "`Issue #11964 `__: Document a change in " -#~ "v3.2 to the behavior of the indent parameter of json encoding operations." - -#~ msgid "" -#~ "`Issue #15116 `__: Remove references to " -#~ "appscript as it is no longer being supported." -#~ msgstr "" -#~ "`Issue #15116 `__: Remove references to " -#~ "appscript as it is no longer being supported." - -#~ msgid "" -#~ "`Issue #18817 `__: Fix a resource warning " -#~ "in Lib/aifc.py demo. Patch by Vajrasky Kok." -#~ msgstr "" -#~ "`Issue #18817 `__: Fix a resource warning " -#~ "in Lib/aifc.py demo. Patch by Vajrasky Kok." - -#~ msgid "" -#~ "`Issue #18439 `__: Make patchcheck work on " -#~ "Windows for ACKS, NEWS." -#~ msgstr "" -#~ "`Issue #18439 `__: Make patchcheck work on " -#~ "Windows for ACKS, NEWS." - -#~ msgid "" -#~ "`Issue #18448 `__: Fix a typo in Tools/" -#~ "demo/eiffel.py." -#~ msgstr "" -#~ "`Issue #18448 `__: Fix a typo in Tools/" -#~ "demo/eiffel.py." - -#~ msgid "" -#~ "`Issue #18457 `__: Fixed saving of " -#~ "formulas and complex numbers in Tools/demo/ss1.py." -#~ msgstr "" -#~ "`Issue #18457 `__: Fixed saving of " -#~ "formulas and complex numbers in Tools/demo/ss1.py." - -#~ msgid "" -#~ "`Issue #18449 `__: Make Tools/demo/ss1.py " -#~ "work again on Python 3. Patch by Févry Thibault." -#~ msgstr "" -#~ "`Issue #18449 `__: Make Tools/demo/ss1.py " -#~ "work again on Python 3. Patch by Févry Thibault." - -#~ msgid "" -#~ "`Issue #12990 `__: The \"Python Launcher\" " -#~ "on OSX could not launch python scripts that have paths that include wide " -#~ "characters." -#~ msgstr "" -#~ "`Issue #12990 `__: The \"Python Launcher\" " -#~ "on OSX could not launch python scripts that have paths that include wide " -#~ "characters." - -#~ msgid "" -#~ "`Issue #15239 `__: Make mkstringprep.py " -#~ "work again on Python 3." -#~ msgstr "" -#~ "`Issue #15239 `__: Make mkstringprep.py " -#~ "work again on Python 3." - -#~ msgid "" -#~ "`Issue #17028 `__: Allowed Python " -#~ "arguments to be supplied to the Windows launcher." -#~ msgstr "" -#~ "`Issue #17028 `__: Allowed Python " -#~ "arguments to be supplied to the Windows launcher." - -#~ msgid "" -#~ "`Issue #17156 `__: pygettext.py now " -#~ "detects the encoding of source files and correctly writes and escapes non-" -#~ "ascii characters." -#~ msgstr "" -#~ "`Issue #17156 `__: pygettext.py now " -#~ "detects the encoding of source files and correctly writes and escapes non-" -#~ "ascii characters." - -#~ msgid "" -#~ "`Issue #15539 `__: Fix a number of bugs in " -#~ "Tools/scripts/pindent.py. Now pindent.py works with a \"with\" " -#~ "statement. pindent.py no longer produces improper indentation. pindent." -#~ "py now works with continued lines broken after \"class\" or \"def\" " -#~ "keywords and with continuations at the start of line." -#~ msgstr "" -#~ "`Issue #15539 `__: Fix a number of bugs in " -#~ "Tools/scripts/pindent.py. Now pindent.py works with a \"with\" " -#~ "statement. pindent.py no longer produces improper indentation. pindent." -#~ "py now works with continued lines broken after \"class\" or \"def\" " -#~ "keywords and with continuations at the start of line." - -#~ msgid "" -#~ "`Issue #11797 `__: Add a 2to3 fixer that " -#~ "maps reload() to imp.reload()." -#~ msgstr "" -#~ "`Issue #11797 `__: Add a 2to3 fixer that " -#~ "maps reload() to imp.reload()." - -#~ msgid "" -#~ "`Issue #10966 `__: Remove the concept of " -#~ "unexpected skipped tests." -#~ msgstr "" -#~ "`Issue #10966 `__: Remove the concept of " -#~ "unexpected skipped tests." - -#~ msgid "" -#~ "`Issue #9893 `__: Removed the Misc/Vim " -#~ "directory." -#~ msgstr "" -#~ "`Issue #9893 `__: Removed the Misc/Vim " -#~ "directory." - -#~ msgid "Removed the Misc/TextMate directory." -#~ msgstr "Le répertoire Misc/TextMate a été supprimé." - -#~ msgid "" -#~ "`Issue #16245 `__: Add the Tools/scripts/" -#~ "parse_html5_entities.py script to parse the list of HTML5 entities and " -#~ "update the html.entities.html5 dictionary." -#~ msgstr "" -#~ "`Issue #16245 `__: Add the Tools/scripts/" -#~ "parse_html5_entities.py script to parse the list of HTML5 entities and " -#~ "update the html.entities.html5 dictionary." - -#~ msgid "" -#~ "`Issue #15378 `__: Fix Tools/unicode/" -#~ "comparecodecs.py. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #15378 `__: Fix Tools/unicode/" -#~ "comparecodecs.py. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #16549 `__: Make json.tool work " -#~ "again on Python 3 and add tests. Initial patch by Berker Peksag and " -#~ "Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #16549 `__: Make json.tool work " -#~ "again on Python 3 and add tests. Initial patch by Berker Peksag and " -#~ "Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #13301 `__: use ast.literal_eval() " -#~ "instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka." -#~ msgstr "" -#~ "`Issue #13301 `__: use ast.literal_eval() " -#~ "instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka." - -#~ msgid "" -#~ "`Issue #18569 `__: The installer now adds ." -#~ "py to the PATHEXT variable when extensions are registered. Patch by Paul " -#~ "Moore." -#~ msgstr "" -#~ "`Issue #18569 `__: The installer now adds ." -#~ "py to the PATHEXT variable when extensions are registered. Patch by Paul " -#~ "Moore." +#: ../../build/NEWS:7 ../../build/NEWS:2070 +msgid "*Release date: XXXX-XX-XX*" +msgstr "*Date de sortie : XXXX-XX-XX*" + +#: ../../build/NEWS:10 ../../build/NEWS:3641 ../../build/NEWS:3660 +#: ../../build/NEWS:3825 ../../build/NEWS:3876 ../../build/NEWS:4472 +#: ../../build/NEWS:4583 ../../build/NEWS:4673 ../../build/NEWS:5822 +#: ../../build/NEWS:5835 ../../build/NEWS:6226 ../../build/NEWS:6259 +#: ../../build/NEWS:6372 ../../build/NEWS:6427 ../../build/NEWS:6496 +msgid "Security" +msgstr "" + +#: ../../build/NEWS:44 ../../build/NEWS:2073 ../../build/NEWS:2197 +#: ../../build/NEWS:2227 ../../build/NEWS:2290 ../../build/NEWS:2404 +#: ../../build/NEWS:2530 ../../build/NEWS:2801 ../../build/NEWS:3310 +#: ../../build/NEWS:3547 ../../build/NEWS:3767 ../../build/NEWS:4070 +#: ../../build/NEWS:5382 ../../build/NEWS:6075 ../../build/NEWS:6096 +#: ../../build/NEWS:6854 ../../build/NEWS:6872 ../../build/NEWS:7395 +#: ../../build/NEWS:7430 ../../build/NEWS:7458 ../../build/NEWS:7549 +#: ../../build/NEWS:7636 ../../build/NEWS:7741 ../../build/NEWS:7784 +#: ../../build/NEWS:8060 ../../build/NEWS:8295 ../../build/NEWS:8481 +#: ../../build/NEWS:8621 +msgid "Core and Builtins" +msgstr "Noyeau et natifs" + +#: ../../build/NEWS:49 +msgid "" +"`bpo-31344 `__: For finer control of " +"tracing behaviour when testing the interpreter, two new frame attributes " +"have been added to control the emission of particular trace events: " +"``f_trace_lines`` (``True`` by default) to turn off per-line trace events; " +"and ``f_trace_opcodes`` (``False`` by default) to turn on per-opcode trace " +"events." +msgstr "" + +#: ../../build/NEWS:58 +msgid "" +"`bpo-30465 `__: Location information " +"(``lineno`` and ``col_offset``) in f-strings is now (mostly) correct. This " +"fixes tools like flake8 from showing warnings on the wrong line (typically " +"the first line of the file)." +msgstr "" + +#: ../../build/NEWS:67 +msgid "" +"`bpo-31343 `__: Include sys/sysmacros.h " +"for major(), minor(), and makedev(). GNU C libray plans to remove the " +"functions from sys/types.h." +msgstr "" + +#: ../../build/NEWS:70 +msgid "" +"`bpo-28411 `__: ``PyInterpreterState`` " +"has a \"modules\" field that is copied into ``sys.modules`` during " +"interpreter startup. This causes problems if a program replaces ``sys." +"modules`` with something else. To solve this we eliminate " +"``PyInterpreterState.modules``." +msgstr "" + +#: ../../build/NEWS:75 +msgid "" +"`bpo-31291 `__: Fix an assertion failure " +"in `zipimport.zipimporter.get_data` on Windows, when the return value of " +"``pathname.replace('/','\\\\')`` isn't a string. Patch by Oren Milman." +msgstr "" + +#: ../../build/NEWS:100 +msgid "" +"`bpo-30978 `__: str.format_map() now " +"passes key lookup exceptions through. Previously any exception was replaced " +"with a KeyError exception." +msgstr "" + +#: ../../build/NEWS:105 +msgid "" +"`bpo-30876 `__: Relative import from " +"unloaded package now reimports the package instead of failing with " +"SystemError. Relative import from non-package now fails with ImportError " +"rather than SystemError." +msgstr "" + +#: ../../build/NEWS:111 +msgid "" +"Avoid using Py_AddPendingCall from signal handler, to avoid calling signal- " +"unsafe functions. The tests I'm adding here fail without the rest of the " +"patch, on Linux and OS X. This means our signal delivery logic had defects " +"(some signals could be lost)." +msgstr "" + +#: ../../build/NEWS:119 +msgid "" +"`bpo-31161 `__: Make sure the 'Missing " +"parentheses' syntax error message is only applied to SyntaxError, not to " +"subclasses. Patch by Martijn Pieters." +msgstr "" +"`bpo-31161 `__: Make sure the 'Missing " +"parentheses' syntax error message is only applied to SyntaxError, not to " +"subclasses. Patch by Martijn Pieters." + +#: ../../build/NEWS:122 +msgid "" +"`bpo-30814 `__: Fixed a race condition " +"when import a submodule from a package." +msgstr "" +"`bpo-30814 `__: Fixed a race condition " +"when import a submodule from a package." + +#: ../../build/NEWS:130 +msgid "" +"`bpo-30597 `__: ``print`` now shows " +"expected input in custom error message when used as a Python 2 statement. " +"Patch by Sanyam Khurana." +msgstr "" +"`bpo-30597 `__: ``print`` now shows " +"expected input in custom error message when used as a Python 2 statement. " +"Patch by Sanyam Khurana." + +#: ../../build/NEWS:133 +msgid "" +"`bpo-30682 `__: Removed a too-strict " +"assertion that failed for certain f-strings, such as eval(\"f'\\\\\\n'\") " +"and eval(\"f'\\\\\\r'\")." +msgstr "" +"`bpo-30682 `__: Removed a too-strict " +"assertion that failed for certain f-strings, such as eval(\"f'\\\\\\n'\") " +"and eval(\"f'\\\\\\r'\")." + +#: ../../build/NEWS:136 +msgid "" +"`bpo-30501 `__: The compiler now " +"produces more optimal code for complex condition expressions in the \"if\", " +"\"while\" and \"assert\" statement, the \"if\" expression, and generator " +"expressions and comprehensions." +msgstr "" + +#: ../../build/NEWS:140 +msgid "" +"`bpo-28180 `__: Implement PEP 538 " +"(legacy C locale coercion). This means that when a suitable coercion target " +"locale is available, both the core interpreter and locale-aware C extensions " +"will assume the use of UTF-8 as the default text encoding, rather than ASCII." +msgstr "" + +#: ../../build/NEWS:151 +msgid "" +"`bpo-25324 `__: Tokens needed for " +"parsing in Python moved to C. ``COMMENT``, ``NL`` and ``ENCODING``. This way " +"the tokens and tok_names in the token module don't get changed when you " +"import the tokenize module." +msgstr "" + +#: ../../build/NEWS:155 +msgid "" +"`bpo-29104 `__: Fixed parsing " +"backslashes in f-strings." +msgstr "" +"`bpo-29104 `__: Fixed parsing " +"backslashes in f-strings." + +#: ../../build/NEWS:157 +msgid "" +"`bpo-27945 `__: Fixed various segfaults " +"with dict when input collections are mutated during searching, inserting or " +"comparing. Based on patches by Duane Griffin and Tim Mitchell." +msgstr "" +"`bpo-27945 `__: Fixed various segfaults " +"with dict when input collections are mutated during searching, inserting or " +"comparing. Based on patches by Duane Griffin and Tim Mitchell." + +#: ../../build/NEWS:164 +msgid "" +"`bpo-30039 `__: If a KeyboardInterrupt " +"happens when the interpreter is in the middle of resuming a chain of nested " +"'yield from' or 'await' calls, it's now correctly delivered to the innermost " +"frame." +msgstr "" +"`bpo-30039 `__: If a KeyboardInterrupt " +"happens when the interpreter is in the middle of resuming a chain of nested " +"'yield from' or 'await' calls, it's now correctly delivered to the innermost " +"frame." + +#: ../../build/NEWS:174 +msgid "" +"`bpo-12414 `__: sys.getsizeof() on a " +"code object now returns the sizes which includes the code struct and sizes " +"of objects which it references. Patch by Dong-hee Na." +msgstr "" +"`bpo-12414 `__: sys.getsizeof() on a " +"code object now returns the sizes which includes the code struct and sizes " +"of objects which it references. Patch by Dong-hee Na." + +#: ../../build/NEWS:188 +msgid "" +"`bpo-29949 `__: Fix memory usage " +"regression of set and frozenset object." +msgstr "" +"`bpo-29949 `__: Fix memory usage " +"regression of set and frozenset object." + +#: ../../build/NEWS:190 +msgid "" +"`bpo-29935 `__: Fixed error messages in " +"the index() method of tuple, list and deque when pass indices of wrong type." +msgstr "" +"`bpo-29935 `__: Fixed error messages in " +"the index() method of tuple, list and deque when pass indices of wrong type." + +#: ../../build/NEWS:193 +msgid "" +"`bpo-29816 `__: Shift operation now has " +"less opportunity to raise OverflowError. ValueError always is raised rather " +"than OverflowError for negative counts. Shifting zero with non-negative " +"count always returns zero." +msgstr "" + +#: ../../build/NEWS:208 +msgid "" +"`bpo-29859 `__: Show correct error " +"messages when any of the pthread_* calls in thread_pthread.h fails." +msgstr "" +"`bpo-29859 `__: Show correct error " +"messages when any of the pthread_* calls in thread_pthread.h fails." + +#: ../../build/NEWS:214 +msgid "" +"`bpo-28856 `__: Fix an oversight that %b " +"format for bytes should support objects follow the buffer protocol." +msgstr "" +"`bpo-28856 `__: Fix an oversight that %b " +"format for bytes should support objects follow the buffer protocol." + +#: ../../build/NEWS:217 +msgid "" +"`bpo-29723 `__: The ``sys.path[0]`` " +"initialization change for `bpo-29139 `__ " +"caused a regression by revealing an inconsistency in how sys.path is " +"initialized when executing ``__main__`` from a zipfile, directory, or other " +"import location. The interpreter now consistently avoids ever adding the " +"import location's parent directory to ``sys.path``, and ensures no other " +"``sys.path`` entries are inadvertently modified when inserting the import " +"location named on the command line." +msgstr "" +"`bpo-29723 `__: The ``sys.path[0]`` " +"initialization change for `bpo-29139 `__ " +"caused a regression by revealing an inconsistency in how sys.path is " +"initialized when executing ``__main__`` from a zipfile, directory, or other " +"import location. The interpreter now consistently avoids ever adding the " +"import location's parent directory to ``sys.path``, and ensures no other " +"``sys.path`` entries are inadvertently modified when inserting the import " +"location named on the command line." + +#: ../../build/NEWS:228 +msgid "" +"`bpo-29714 `__: Fix a regression that " +"bytes format may fail when containing zero bytes inside." +msgstr "" +"`bpo-29714 `__: Fix a regression that " +"bytes format may fail when containing zero bytes inside." + +#: ../../build/NEWS:235 +msgid "" +"`bpo-28893 `__: Set correct __cause__ " +"for errors about invalid awaitables returned from __aiter__ and __anext__." +msgstr "" +"`bpo-28893 `__: Set correct __cause__ " +"for errors about invalid awaitables returned from __aiter__ and __anext__." + +#: ../../build/NEWS:238 +msgid "" +"`bpo-28876 `__: ``bool(range)`` works " +"even if ``len(range)`` raises :exc:`OverflowError`." +msgstr "" +"`bpo-28876 `__: ``bool(range)`` works " +"even if ``len(range)`` raises :exc:`OverflowError`." + +#: ../../build/NEWS:241 +msgid "" +"`bpo-29683 `__: Fixes to memory " +"allocation in _PyCode_SetExtra. Patch by Brian Coleman." +msgstr "" +"`bpo-29683 `__: Fixes to memory " +"allocation in _PyCode_SetExtra. Patch by Brian Coleman." + +#: ../../build/NEWS:244 +msgid "" +"`bpo-29684 `__: Fix minor regression of " +"PyEval_CallObjectWithKeywords. It should raise TypeError when kwargs is not " +"a dict. But it might cause segv when args=NULL and kwargs is not a dict." +msgstr "" +"`bpo-29684 `__: Fix minor regression of " +"PyEval_CallObjectWithKeywords. It should raise TypeError when kwargs is not " +"a dict. But it might cause segv when args=NULL and kwargs is not a dict." + +#: ../../build/NEWS:251 +msgid "" +"`bpo-29607 `__: Fix stack_effect " +"computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh." +msgstr "" +"`bpo-29607 `__: Fix stack_effect " +"computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh." + +#: ../../build/NEWS:254 +msgid "" +"`bpo-29602 `__: Fix incorrect handling " +"of signed zeros in complex constructor for complex subclasses and for inputs " +"having a __complex__ method. Patch by Serhiy Storchaka." +msgstr "" +"`bpo-29602 `__: Fix incorrect handling " +"of signed zeros in complex constructor for complex subclasses and for inputs " +"having a __complex__ method. Patch by Serhiy Storchaka." + +#: ../../build/NEWS:258 +msgid "" +"`bpo-29347 `__: Fixed possibly " +"dereferencing undefined pointers when creating weakref objects." +msgstr "" +"`bpo-29347 `__: Fixed possibly " +"dereferencing undefined pointers when creating weakref objects." + +#: ../../build/NEWS:261 +msgid "" +"`bpo-29463 `__: Add ``docstring`` field " +"to Module, ClassDef, FunctionDef, and AsyncFunctionDef ast nodes. docstring " +"is not first stmt in their body anymore. It affects ``co_firstlineno`` and " +"``co_lnotab`` of code object for module and class." +msgstr "" + +#: ../../build/NEWS:266 +msgid "" +"`bpo-29438 `__: Fixed use-after-free " +"problem in key sharing dict." +msgstr "" +"`bpo-29438 `__: Fixed use-after-free " +"problem in key sharing dict." + +#: ../../build/NEWS:273 +msgid "" +"`bpo-29478 `__: If max_line_length=None " +"is specified while using the Compat32 policy, it is no longer ignored. " +"Patch by Mircea Cosbuc." +msgstr "" +"`bpo-29478 `__: If max_line_length=None " +"is specified while using the Compat32 policy, it is no longer ignored. " +"Patch by Mircea Cosbuc." + +#: ../../build/NEWS:276 +msgid "" +"`bpo-29319 `__: Prevent " +"RunMainFromImporter overwriting sys.path[0]." +msgstr "" +"`bpo-29319 `__: Prevent " +"RunMainFromImporter overwriting sys.path[0]." + +#: ../../build/NEWS:278 +msgid "" +"`bpo-29337 `__: Fixed possible " +"BytesWarning when compare the code objects. Warnings could be emitted at " +"compile time." +msgstr "" +"`bpo-29337 `__: Fixed possible " +"BytesWarning when compare the code objects. Warnings could be emitted at " +"compile time." + +#: ../../build/NEWS:281 +msgid "" +"`bpo-29327 `__: Fixed a crash when pass " +"the iterable keyword argument to sorted()." +msgstr "" +"`bpo-29327 `__: Fixed a crash when pass " +"the iterable keyword argument to sorted()." + +#: ../../build/NEWS:284 +msgid "" +"`bpo-29034 `__: Fix memory leak and use-" +"after-free in os module (path_converter)." +msgstr "" +"`bpo-29034 `__: Fix memory leak and use-" +"after-free in os module (path_converter)." + +#: ../../build/NEWS:287 +msgid "" +"`bpo-29159 `__: Fix regression in " +"bytes(x) when x.__index__() raises Exception." +msgstr "" +"`bpo-29159 `__: Fix regression in " +"bytes(x) when x.__index__() raises Exception." + +#: ../../build/NEWS:295 ../../build/NEWS:2075 ../../build/NEWS:5386 +msgid "" +"`bpo-28932 `__: Do not include if it does not exist." +msgstr "" +"`bpo-28932 `__: Do not include if it does not exist." + +#: ../../build/NEWS:300 ../../build/NEWS:2080 ../../build/NEWS:5394 +msgid "" +"`bpo-29000 `__: Fixed bytes formatting " +"of octals with zero padding in alternate form." +msgstr "" +"`bpo-29000 `__: Fixed bytes formatting " +"of octals with zero padding in alternate form." + +#: ../../build/NEWS:311 ../../build/NEWS:2083 +msgid "" +"`bpo-26919 `__: On Android, operating " +"system data is now always encoded/decoded to/from UTF-8, instead of the " +"locale encoding to avoid inconsistencies with os.fsencode() and os." +"fsdecode() which are already using UTF-8." +msgstr "" +"`bpo-26919 `__: On Android, operating " +"system data is now always encoded/decoded to/from UTF-8, instead of the " +"locale encoding to avoid inconsistencies with os.fsencode() and os." +"fsdecode() which are already using UTF-8." + +#: ../../build/NEWS:318 ../../build/NEWS:2199 +msgid "" +"`bpo-28147 `__: Fix a memory leak in " +"split-table dictionaries: setattr() must not convert combined table into " +"split table. Patch written by INADA Naoki." +msgstr "" +"`bpo-28147 `__: Fix a memory leak in " +"split-table dictionaries: setattr() must not convert combined table into " +"split table. Patch written by INADA Naoki." + +#: ../../build/NEWS:321 ../../build/NEWS:2090 +msgid "" +"`bpo-28739 `__: f-string expressions are " +"no longer accepted as docstrings and by ast.literal_eval() even if they do " +"not include expressions." +msgstr "" +"`bpo-28739 `__: f-string expressions are " +"no longer accepted as docstrings and by ast.literal_eval() even if they do " +"not include expressions." + +#: ../../build/NEWS:324 ../../build/NEWS:2093 ../../build/NEWS:5397 +msgid "" +"`bpo-28512 `__: Fixed setting the offset " +"attribute of SyntaxError by PyErr_SyntaxLocationEx() and " +"PyErr_SyntaxLocationObject()." +msgstr "" +"`bpo-28512 `__: Fixed setting the offset " +"attribute of SyntaxError by PyErr_SyntaxLocationEx() and " +"PyErr_SyntaxLocationObject()." + +#: ../../build/NEWS:327 ../../build/NEWS:2096 +msgid "" +"`bpo-28918 `__: Fix the cross " +"compilation of xxlimited when Python has been built with Py_DEBUG defined." +msgstr "" +"`bpo-28918 `__: Fix the cross " +"compilation of xxlimited when Python has been built with Py_DEBUG defined." + +#: ../../build/NEWS:330 ../../build/NEWS:2229 +msgid "" +"`bpo-23722 `__: Rather than silently " +"producing a class that doesn't support zero-argument ``super()`` in methods, " +"failing to pass the new ``__classcell__`` namespace entry up to ``type." +"__new__`` now results in a ``DeprecationWarning`` and a class that supports " +"zero-argument ``super()``." +msgstr "" +"`bpo-23722 `__: Rather than silently " +"producing a class that doesn't support zero-argument ``super()`` in methods, " +"failing to pass the new ``__classcell__`` namespace entry up to ``type." +"__new__`` now results in a ``DeprecationWarning`` and a class that supports " +"zero-argument ``super()``." + +#: ../../build/NEWS:336 ../../build/NEWS:2235 +msgid "" +"`bpo-28797 `__: Modifying the class " +"__dict__ inside the __set_name__ method of a descriptor that is used inside " +"that class no longer prevents calling the __set_name__ method of other " +"descriptors." +msgstr "" +"`bpo-28797 `__: Modifying the class " +"__dict__ inside the __set_name__ method of a descriptor that is used inside " +"that class no longer prevents calling the __set_name__ method of other " +"descriptors." + +#: ../../build/NEWS:340 +msgid "" +"`bpo-28799 `__: Remove the " +"``PyEval_GetCallStats()`` function and deprecate the untested and " +"undocumented ``sys.callstats()`` function. Remove the ``CALL_PROFILE`` " +"special build: use the :func:`sys.setprofile` function, :mod:`cProfile` or :" +"mod:`profile` to profile function calls." +msgstr "" + +#: ../../build/NEWS:347 ../../build/NEWS:2239 +msgid "" +"`bpo-28782 `__: Fix a bug in the " +"implementation ``yield from`` when checking if the next instruction is " +"YIELD_FROM. Regression introduced by WORDCODE (`bpo-26647 `__)." +msgstr "" +"`bpo-28782 `__: Fix a bug in the " +"implementation ``yield from`` when checking if the next instruction is " +"YIELD_FROM. Regression introduced by WORDCODE (`bpo-26647 `__)." + +#: ../../build/NEWS:351 +msgid "" +"`bpo-28774 `__: Fix error position of " +"the unicode error in ASCII and Latin1 encoders when a string returned by the " +"error handler contains multiple non-encodable characters (non-ASCII for the " +"ASCII codec, characters out of the U+0000-U+00FF range for Latin1)." +msgstr "" + +#: ../../build/NEWS:356 ../../build/NEWS:2099 +msgid "" +"`bpo-28731 `__: Optimize " +"_PyDict_NewPresized() to create correct size dict. Improve speed of dict " +"literal with constant keys up to 30%." +msgstr "" +"`bpo-28731 `__: Optimize " +"_PyDict_NewPresized() to create correct size dict. Improve speed of dict " +"literal with constant keys up to 30%." + +#: ../../build/NEWS:359 ../../build/NEWS:2292 +msgid "" +"`bpo-28532 `__: Show sys.version when -V " +"option is supplied twice." +msgstr "" +"`bpo-28532 `__: Show sys.version when -V " +"option is supplied twice." + +#: ../../build/NEWS:365 ../../build/NEWS:2298 +msgid "" +"`bpo-28746 `__: Fix the " +"set_inheritable() file descriptor method on platforms that do not have the " +"ioctl FIOCLEX and FIONCLEX commands." +msgstr "" +"`bpo-28746 `__: Fix the " +"set_inheritable() file descriptor method on platforms that do not have the " +"ioctl FIOCLEX and FIONCLEX commands." + +#: ../../build/NEWS:368 ../../build/NEWS:2301 +msgid "" +"`bpo-26920 `__: Fix not getting the " +"locale's charset upon initializing the interpreter, on platforms that do not " +"have langinfo." +msgstr "" +"`bpo-26920 `__: Fix not getting the " +"locale's charset upon initializing the interpreter, on platforms that do not " +"have langinfo." + +#: ../../build/NEWS:371 ../../build/NEWS:2304 ../../build/NEWS:5403 +msgid "" +"`bpo-28648 `__: Fixed crash in " +"Py_DecodeLocale() in debug build on Mac OS X when decode astral characters. " +"Patch by Xiang Zhang." +msgstr "" +"`bpo-28648 `__: Fixed crash in " +"Py_DecodeLocale() in debug build on Mac OS X when decode astral characters. " +"Patch by Xiang Zhang." + +#: ../../build/NEWS:384 ../../build/NEWS:2312 +msgid "" +"`bpo-28583 `__: PyDict_SetDefault didn't " +"combine split table when needed. Patch by Xiang Zhang." +msgstr "" +"`bpo-28583 `__: PyDict_SetDefault didn't " +"combine split table when needed. Patch by Xiang Zhang." + +#: ../../build/NEWS:387 ../../build/NEWS:2406 +msgid "" +"`bpo-28128 `__: Deprecation warning for " +"invalid str and byte escape sequences now prints better information about " +"where the error occurs. Patch by Serhiy Storchaka and Eric Smith." +msgstr "" +"`bpo-28128 `__: Deprecation warning for " +"invalid str and byte escape sequences now prints better information about " +"where the error occurs. Patch by Serhiy Storchaka and Eric Smith." + +#: ../../build/NEWS:391 ../../build/NEWS:2410 +msgid "" +"`bpo-28509 `__: dict.update() no longer " +"allocate unnecessary large memory." +msgstr "" +"`bpo-28509 `__: dict.update() no longer " +"allocate unnecessary large memory." + +#: ../../build/NEWS:393 ../../build/NEWS:2412 ../../build/NEWS:5409 +msgid "" +"`bpo-28426 `__: Fixed potential crash in " +"PyUnicode_AsDecodedObject() in debug build." +msgstr "" +"`bpo-28426 `__: Fixed potential crash in " +"PyUnicode_AsDecodedObject() in debug build." + +#: ../../build/NEWS:396 ../../build/NEWS:2415 +msgid "" +"`bpo-28517 `__: Fixed of-by-one error in " +"the peephole optimizer that caused keeping unreachable code." +msgstr "" +"`bpo-28517 `__: Fixed of-by-one error in " +"the peephole optimizer that caused keeping unreachable code." + +#: ../../build/NEWS:399 ../../build/NEWS:2418 +msgid "" +"`bpo-28214 `__: Improved exception " +"reporting for problematic __set_name__ attributes." +msgstr "" +"`bpo-28214 `__: Improved exception " +"reporting for problematic __set_name__ attributes." + +#: ../../build/NEWS:402 ../../build/NEWS:2421 ../../build/NEWS:5412 +msgid "" +"`bpo-23782 `__: Fixed possible memory " +"leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here()." +msgstr "" +"`bpo-23782 `__: Fixed possible memory " +"leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here()." + +#: ../../build/NEWS:405 ../../build/NEWS:2532 +msgid "" +"`bpo-28183 `__: Optimize and cleanup " +"dict iteration." +msgstr "" +"`bpo-28183 `__: Optimize and cleanup " +"dict iteration." + +#: ../../build/NEWS:407 ../../build/NEWS:2534 +msgid "" +"`bpo-26081 `__: Added C implementation " +"of asyncio.Future. Original patch by Yury Selivanov." +msgstr "" +"`bpo-26081 `__: Added C implementation " +"of asyncio.Future. Original patch by Yury Selivanov." + +#: ../../build/NEWS:410 ../../build/NEWS:2537 ../../build/NEWS:5415 +msgid "" +"`bpo-28379 `__: Added sanity checks and " +"tests for PyUnicode_CopyCharacters(). Patch by Xiang Zhang." +msgstr "" +"`bpo-28379 `__: Added sanity checks and " +"tests for PyUnicode_CopyCharacters(). Patch by Xiang Zhang." + +#: ../../build/NEWS:413 ../../build/NEWS:2540 ../../build/NEWS:5418 +msgid "" +"`bpo-28376 `__: The type of long range " +"iterator is now registered as Iterator. Patch by Oren Milman." +msgstr "" +"`bpo-28376 `__: The type of long range " +"iterator is now registered as Iterator. Patch by Oren Milman." + +#: ../../build/NEWS:420 ../../build/NEWS:2549 ../../build/NEWS:5424 +msgid "" +"`bpo-26906 `__: Resolving special " +"methods of uninitialized type now causes implicit initialization of the type " +"instead of a fail." +msgstr "" +"`bpo-26906 `__: Resolving special " +"methods of uninitialized type now causes implicit initialization of the type " +"instead of a fail." + +#: ../../build/NEWS:423 ../../build/NEWS:2552 ../../build/NEWS:5427 +msgid "" +"`bpo-18287 `__: PyType_Ready() now " +"checks that tp_name is not NULL. Original patch by Niklas Koep." +msgstr "" +"`bpo-18287 `__: PyType_Ready() now " +"checks that tp_name is not NULL. Original patch by Niklas Koep." + +#: ../../build/NEWS:426 ../../build/NEWS:2555 ../../build/NEWS:5430 +msgid "" +"`bpo-24098 `__: Fixed possible crash " +"when AST is changed in process of compiling it." +msgstr "" +"`bpo-24098 `__: Fixed possible crash " +"when AST is changed in process of compiling it." + +#: ../../build/NEWS:429 ../../build/NEWS:2558 +msgid "" +"`bpo-28201 `__: Dict reduces possibility " +"of 2nd conflict in hash table when hashes have same lower bits." +msgstr "" +"`bpo-28201 `__: Dict reduces possibility " +"of 2nd conflict in hash table when hashes have same lower bits." + +#: ../../build/NEWS:432 ../../build/NEWS:2561 ../../build/NEWS:5433 +msgid "" +"`bpo-28350 `__: String constants with " +"null character no longer interned." +msgstr "" +"`bpo-28350 `__: String constants with " +"null character no longer interned." + +#: ../../build/NEWS:434 ../../build/NEWS:2563 ../../build/NEWS:5435 +msgid "" +"`bpo-26617 `__: Fix crash when GC runs " +"during weakref callbacks." +msgstr "" +"`bpo-26617 `__: Fix crash when GC runs " +"during weakref callbacks." + +#: ../../build/NEWS:436 ../../build/NEWS:2565 ../../build/NEWS:5437 +msgid "" +"`bpo-27942 `__: String constants now " +"interned recursively in tuples and frozensets." +msgstr "" +"`bpo-27942 `__: String constants now " +"interned recursively in tuples and frozensets." + +#: ../../build/NEWS:441 ../../build/NEWS:2568 ../../build/NEWS:5440 +msgid "" +"`bpo-21578 `__: Fixed misleading error " +"message when ImportError called with invalid keyword args." +msgstr "" +"`bpo-21578 `__: Fixed misleading error " +"message when ImportError called with invalid keyword args." + +#: ../../build/NEWS:444 ../../build/NEWS:2571 +msgid "" +"`bpo-28203 `__: Fix incorrect type in " +"complex(1.0, {2:3}) error message. Patch by Soumya Sharma." +msgstr "" +"`bpo-28203 `__: Fix incorrect type in " +"complex(1.0, {2:3}) error message. Patch by Soumya Sharma." + +#: ../../build/NEWS:447 ../../build/NEWS:2574 +msgid "" +"`bpo-28086 `__: Single var-positional " +"argument of tuple subtype was passed unscathed to the C-defined function. " +"Now it is converted to exact tuple." +msgstr "" +"`bpo-28086 `__: Single var-positional " +"argument of tuple subtype was passed unscathed to the C-defined function. " +"Now it is converted to exact tuple." + +#: ../../build/NEWS:450 ../../build/NEWS:2577 +msgid "" +"`bpo-28214 `__: Now __set_name__ is " +"looked up on the class instead of the instance." +msgstr "" +"`bpo-28214 `__: Now __set_name__ is " +"looked up on the class instead of the instance." + +#: ../../build/NEWS:453 ../../build/NEWS:2580 ../../build/NEWS:5446 +msgid "" +"`bpo-27955 `__: Fallback on reading /dev/" +"urandom device when the getrandom() syscall fails with EPERM, for example " +"when blocked by SECCOMP." +msgstr "" +"`bpo-27955 `__: Fallback on reading /dev/" +"urandom device when the getrandom() syscall fails with EPERM, for example " +"when blocked by SECCOMP." + +#: ../../build/NEWS:456 ../../build/NEWS:2583 +msgid "" +"`bpo-28192 `__: Don't import readline in " +"isolated mode." +msgstr "" +"`bpo-28192 `__: Don't import readline in " +"isolated mode." + +#: ../../build/NEWS:464 ../../build/NEWS:2585 +msgid "Upgrade internal unicode databases to Unicode version 9.0.0." +msgstr "" + +#: ../../build/NEWS:466 ../../build/NEWS:2587 ../../build/NEWS:5449 +msgid "" +"`bpo-28131 `__: Fix a regression in " +"zipimport's compile_source(). zipimport should use the same optimization " +"level as the interpreter." +msgstr "" +"`bpo-28131 `__: Fix a regression in " +"zipimport's compile_source(). zipimport should use the same optimization " +"level as the interpreter." + +#: ../../build/NEWS:469 ../../build/NEWS:2590 +msgid "" +"`bpo-28126 `__: Replace Py_MEMCPY with " +"memcpy(). Visual Studio can properly optimize memcpy()." +msgstr "" +"`bpo-28126 `__: Replace Py_MEMCPY with " +"memcpy(). Visual Studio can properly optimize memcpy()." + +#: ../../build/NEWS:472 ../../build/NEWS:2593 +msgid "" +"`bpo-28120 `__: Fix dict.pop() for " +"splitted dictionary when trying to remove a \"pending key\" (Not yet " +"inserted in split-table). Patch by Xiang Zhang." +msgstr "" +"`bpo-28120 `__: Fix dict.pop() for " +"splitted dictionary when trying to remove a \"pending key\" (Not yet " +"inserted in split-table). Patch by Xiang Zhang." + +#: ../../build/NEWS:475 ../../build/NEWS:2596 +msgid "" +"`bpo-26182 `__: Raise DeprecationWarning " +"when async and await keywords are used as variable/attribute/class/function " +"name." +msgstr "" +"`bpo-26182 `__: Raise DeprecationWarning " +"when async and await keywords are used as variable/attribute/class/function " +"name." + +#: ../../build/NEWS:478 ../../build/NEWS:2319 +msgid "" +"`bpo-26182 `__: Fix a refleak in code " +"that raises DeprecationWarning." +msgstr "" +"`bpo-26182 `__: Fix a refleak in code " +"that raises DeprecationWarning." + +#: ../../build/NEWS:480 ../../build/NEWS:2321 +msgid "" +"`bpo-28721 `__: Fix asynchronous " +"generators aclose() and athrow() to handle StopAsyncIteration propagation " +"properly." +msgstr "" +"`bpo-28721 `__: Fix asynchronous " +"generators aclose() and athrow() to handle StopAsyncIteration propagation " +"properly." + +#: ../../build/NEWS:486 ../../build/NEWS:2103 ../../build/NEWS:2244 +#: ../../build/NEWS:2325 ../../build/NEWS:2428 ../../build/NEWS:2600 +#: ../../build/NEWS:2938 ../../build/NEWS:3355 ../../build/NEWS:3564 +#: ../../build/NEWS:3648 ../../build/NEWS:3665 ../../build/NEWS:3807 +#: ../../build/NEWS:3833 ../../build/NEWS:3883 ../../build/NEWS:4355 +#: ../../build/NEWS:4479 ../../build/NEWS:4589 ../../build/NEWS:4679 +#: ../../build/NEWS:5513 ../../build/NEWS:5829 ../../build/NEWS:5840 +#: ../../build/NEWS:6234 ../../build/NEWS:6266 ../../build/NEWS:6379 +#: ../../build/NEWS:6433 ../../build/NEWS:6502 ../../build/NEWS:6940 +#: ../../build/NEWS:7378 ../../build/NEWS:7405 ../../build/NEWS:7443 +#: ../../build/NEWS:7463 ../../build/NEWS:7569 ../../build/NEWS:7663 +#: ../../build/NEWS:7759 ../../build/NEWS:7834 ../../build/NEWS:8092 +#: ../../build/NEWS:8315 ../../build/NEWS:8488 ../../build/NEWS:8847 +msgid "Library" +msgstr "Bibliothèque" + +#: ../../build/NEWS:488 +msgid "" +"`bpo-28638 `__: Changed the " +"implementation strategy for collections.namedtuple() to substantially reduce " +"the use of exec() in favor of precomputed methods. As a result, the " +"*verbose* parameter and *_source* attribute are no longer supported. The " +"benefits include 1) having a smaller memory footprint for applications using " +"multiple named tuples, 2) faster creation of the named tuple class (approx " +"4x to 6x depending on how it is measured), and 3) minor speed-ups for " +"instance creation using __new__, _make, and _replace. (The primary patch " +"contributor is Jelle Zijlstra with further improvements by INADA Naoki, " +"Serhiy Storchaka, and Raymond Hettinger.)" +msgstr "" + +#: ../../build/NEWS:504 +msgid "" +"`bpo-28182 `__: The SSL module now " +"raises SSLCertVerificationError when OpenSSL fails to verify the peer's " +"certificate. The exception contains more information about the error." +msgstr "" + +#: ../../build/NEWS:508 +msgid "" +"`bpo-27340 `__: SSLSocket.sendall() now " +"uses memoryview to create slices of data. This fixes support for all bytes-" +"like object. It is also more efficient and avoids costly copies." +msgstr "" + +#: ../../build/NEWS:512 +msgid "" +"`bpo-14191 `__: A new function " +"``argparse.ArgumentParser.parse_intermixed_args`` provides the ability to " +"parse command lines where there user intermixes options and positional " +"arguments." +msgstr "" + +#: ../../build/NEWS:523 +msgid "" +"`bpo-31170 `__: expat: Update libexpat " +"from 2.2.3 to 2.2.4. Fix copying of partial characters for UTF-8 input " +"(libexpat bug 115): https://github.com/libexpat/libexpat/issues/115" +msgstr "" + +#: ../../build/NEWS:529 +msgid "" +"`bpo-1198569 `__: ``string.Template`` " +"subclasses can optionally define ``braceidpattern`` if they want to specify " +"different placeholder patterns inside and outside the braces. If None (the " +"default) it falls back to ``idpattern``." +msgstr "" + +#: ../../build/NEWS:534 +msgid "" +"`bpo-31326 `__: concurrent.futures." +"ProcessPoolExecutor.shutdown() now explicitly closes the call queue. " +"Moreover, shutdown(wait=True) now also join the call queue thread, to " +"prevent leaking a dangling thread." +msgstr "" + +#: ../../build/NEWS:564 +msgid "" +"`bpo-23835 `__: configparser: reading " +"defaults in the ``ConfigParser()`` constructor is now using ``read_dict()``, " +"making its behavior consistent with the rest of the parser. Non-string keys " +"and values in the defaults dictionary are now being implicitly converted to " +"strings. Patch by James Tocknell." +msgstr "" + +#: ../../build/NEWS:570 +msgid "" +"`bpo-31238 `__: pydoc: the stop() method " +"of the private ServerThread class now waits until DocServer." +"serve_until_quit() completes and then explicitly sets its docserver " +"attribute to None to break a reference cycle." +msgstr "" + +#: ../../build/NEWS:579 +msgid "" +"`bpo-30102 `__: The ssl and hashlib " +"modules now call OPENSSL_add_all_algorithms_noconf() on OpenSSL < 1.1.0. The " +"function detects CPU features and enables optimizations on some CPU " +"architectures such as POWER8. Patch is based on research from Gustavo Serra " +"Scalet." +msgstr "" + +#: ../../build/NEWS:590 +msgid "" +"`bpo-5001 `__: There are a number of " +"uninformative asserts in the `multiprocessing` module, as noted in issue " +"5001. This change fixes two of the most potentially problematic ones, since " +"they are in error-reporting code, in the `multiprocessing.managers." +"convert_to_error` function. (It also makes more informative a ValueError " +"message.) The only potentially problematic change is that the AssertionError " +"is now a TypeError; however, this should also help distinguish it from an " +"AssertionError being *reported* by the function/its caller (such as in issue " +"31169). - Patch by Allen W. Smith (drallensmith on github)." +msgstr "" + +#: ../../build/NEWS:611 +msgid "" +"`bpo-31135 `__: ttk: fix the destroy() " +"method of LabeledScale and OptionMenu classes. Call the parent destroy() " +"method even if the used attribute doesn't exist. The LabeledScale.destroy() " +"method now also explicitly clears label and scale attributes to help the " +"garbage collector to destroy all widgets." +msgstr "" + +#: ../../build/NEWS:622 +msgid "" +"`bpo-30897 `__: ``pathlib.Path`` objects " +"now include an ``is_mount()`` method (only implemented on POSIX). This is " +"similar to ``os.path.ismount(p)``. Patch by Cooper Ry Lees." +msgstr "" + +#: ../../build/NEWS:641 +msgid "" +"Shared memory used anonymous memory mappings in 2.x, while 3.x mmaps actual " +"files. Try to be careful to do as little disk I/O as possible." +msgstr "" + +#: ../../build/NEWS:647 +msgid "" +"A child process would inherit as many fds as the number of still-running " +"children." +msgstr "" + +#: ../../build/NEWS:664 +msgid "" +"`bpo-30886 `__: Fix multiprocessing." +"Queue.join_thread(): it now waits until the thread completes, even if the " +"thread was started by the same process which created the queue." +msgstr "" + +#: ../../build/NEWS:684 +msgid "" +"Tiny values (such as 1e-6) are valid non-zero values for setitimer(), which " +"is specified as taking microsecond-resolution intervals. However, on some " +"platform, our conversion routine could convert 1e-6 into a zero interval, " +"therefore disabling the timer instead of (re-)scheduling it." +msgstr "" + +#: ../../build/NEWS:697 +msgid "" +"The doc claims multiprocessing.Condition behaves like threading.Condition, " +"but its notify() method lacked the optional \"n\" argument (to specify the " +"number of sleepers to wake up) that threading.Condition.notify() accepts." +msgstr "" + +#: ../../build/NEWS:706 +msgid "" +"`bpo-9146 `__: Fix a segmentation fault " +"in _hashopenssl when standard hash functions such as md5 are not available " +"in the linked OpenSSL library. As in some special FIPS-140 build " +"environments." +msgstr "" + +#: ../../build/NEWS:710 +msgid "" +"`bpo-29169 `__: Update zlib to 1.2.11." +msgstr "" +"`bpo-29169 `__: Update zlib to 1.2.11." + +#: ../../build/NEWS:718 +msgid "" +"`bpo-30746 `__: Prohibited the '=' " +"character in environment variable names in ``os.putenv()`` and ``os." +"spawn*()``." +msgstr "" +"`bpo-30746 `__: Prohibited the '=' " +"character in environment variable names in ``os.putenv()`` and ``os." +"spawn*()``." + +#: ../../build/NEWS:727 +msgid "" +"`bpo-29212 `__: Fix concurrent.futures." +"thread.ThreadPoolExecutor threads to have a non repr() based thread name by " +"default when no thread_name_prefix is supplied. They will now identify " +"themselves as \"ThreadPoolExecutor- y_n\"." +msgstr "" + +#: ../../build/NEWS:732 +msgid "" +"`bpo-29755 `__: Fixed the lgettext() " +"family of functions in the gettext module. They now always return bytes." +msgstr "" +"`bpo-29755 `__: Fixed the lgettext() " +"family of functions in the gettext module. They now always return bytes." + +#: ../../build/NEWS:735 +msgid "" +"`bpo-30616 `__: Functional API of enum " +"allows to create empty enums. Patched by Dong-hee Na" +msgstr "" +"`bpo-30616 `__: Functional API of enum " +"allows to create empty enums. Patched by Dong-hee Na" + +#: ../../build/NEWS:741 +msgid "" +"`bpo-23894 `__: lib2to3 now recognizes " +"``rb'...'`` and ``f'...'`` strings." +msgstr "" +"`bpo-23894 `__: lib2to3 now recognizes " +"``rb'...'`` and ``f'...'`` strings." + +#: ../../build/NEWS:748 +msgid "" +"`bpo-30589 `__: Fix multiprocessing." +"Process.exitcode to return the opposite of the signal number when the " +"process is killed by a signal (instead of 255) when using the \"forkserver\" " +"method." +msgstr "" + +#: ../../build/NEWS:752 +msgid "" +"`bpo-28994 `__: The traceback no longer " +"displayed for SystemExit raised in a callback registered by atexit." +msgstr "" +"`bpo-28994 `__: The traceback no longer " +"displayed for SystemExit raised in a callback registered by atexit." + +#: ../../build/NEWS:755 +msgid "" +"`bpo-30508 `__: Don't log exceptions if " +"Task/Future \"cancel()\" method was called." +msgstr "" +"`bpo-30508 `__: Don't log exceptions if " +"Task/Future \"cancel()\" method was called." + +#: ../../build/NEWS:769 +msgid "" +"`bpo-30595 `__: multiprocessing.Queue." +"get() with a timeout now polls its reader in non- blocking mode if it " +"succeeded to acquire the lock but the acquire took longer than the timeout." +msgstr "" + +#: ../../build/NEWS:773 +msgid "" +"`bpo-28556 `__: Updates to typing " +"module: Add generic AsyncContextManager, add support for ContextManager on " +"all versions. Original PRs by Jelle Zijlstra and Ivan Levkivskyi" +msgstr "" +"`bpo-28556 `__: Updates to typing " +"module: Add generic AsyncContextManager, add support for ContextManager on " +"all versions. Original PRs by Jelle Zijlstra and Ivan Levkivskyi" + +#: ../../build/NEWS:777 +msgid "" +"`bpo-30605 `__: re.compile() no longer " +"raises a BytesWarning when compiling a bytes instance with misplaced inline " +"modifier. Patch by Roy Williams." +msgstr "" +"`bpo-30605 `__: re.compile() no longer " +"raises a BytesWarning when compiling a bytes instance with misplaced inline " +"modifier. Patch by Roy Williams." + +#: ../../build/NEWS:780 +msgid "" +"`bpo-29870 `__: Fix ssl sockets leaks " +"when connection is aborted in asyncio/ssl implementation. Patch by Michaël " +"Sghaïer." +msgstr "" +"`bpo-29870 `__: Fix ssl sockets leaks " +"when connection is aborted in asyncio/ssl implementation. Patch by Michaël " +"Sghaïer." + +#: ../../build/NEWS:783 +msgid "" +"`bpo-29743 `__: Closing transport during " +"handshake process leaks open socket. Patch by Nikolay Kim" +msgstr "" +"`bpo-29743 `__: Closing transport during " +"handshake process leaks open socket. Patch by Nikolay Kim" + +#: ../../build/NEWS:786 +msgid "" +"`bpo-27585 `__: Fix waiter cancellation " +"in asyncio.Lock. Patch by Mathieu Sornay." +msgstr "" +"`bpo-27585 `__: Fix waiter cancellation " +"in asyncio.Lock. Patch by Mathieu Sornay." + +#: ../../build/NEWS:792 +msgid "" +"`bpo-30418 `__: On Windows, subprocess." +"Popen.communicate() now also ignore EINVAL on stdin.write() if the child " +"process is still running but closed the pipe." +msgstr "" +"`bpo-30418 `__: On Windows, subprocess." +"Popen.communicate() now also ignore EINVAL on stdin.write() if the child " +"process is still running but closed the pipe." + +#: ../../build/NEWS:801 +msgid "" +"`bpo-30557 `__: faulthandler now " +"correctly filters and displays exception codes on Windows" +msgstr "" +"`bpo-30557 `__: faulthandler now " +"correctly filters and displays exception codes on Windows" + +#: ../../build/NEWS:810 +msgid "" +"`bpo-30378 `__: Fix the problem that " +"logging.handlers.SysLogHandler cannot handle IPv6 addresses." +msgstr "" +"`bpo-30378 `__: Fix the problem that " +"logging.handlers.SysLogHandler cannot handle IPv6 addresses." + +#: ../../build/NEWS:818 +msgid "" +"`bpo-30414 `__: multiprocessing.Queue." +"_feed background running thread do not break from main loop on exception." +msgstr "" +"`bpo-30414 `__: multiprocessing.Queue." +"_feed background running thread do not break from main loop on exception." + +#: ../../build/NEWS:821 +msgid "" +"`bpo-30003 `__: Fix handling escape " +"characters in HZ codec. Based on patch by Ma Lin." +msgstr "" +"`bpo-30003 `__: Fix handling escape " +"characters in HZ codec. Based on patch by Ma Lin." + +#: ../../build/NEWS:831 +msgid "" +"`bpo-30301 `__: Fix AttributeError when " +"using SimpleQueue.empty() under *spawn* and *forkserver* start methods." +msgstr "" +"`bpo-30301 `__: Fix AttributeError when " +"using SimpleQueue.empty() under *spawn* and *forkserver* start methods." + +#: ../../build/NEWS:834 +msgid "" +"`bpo-30375 `__: Warnings emitted when " +"compile a regular expression now always point to the line in the user code. " +"Previously they could point into inners of the re module if emitted from " +"inside of groups or conditionals." +msgstr "" +"`bpo-30375 `__: Warnings emitted when " +"compile a regular expression now always point to the line in the user code. " +"Previously they could point into inners of the re module if emitted from " +"inside of groups or conditionals." + +#: ../../build/NEWS:838 +msgid "" +"`bpo-30329 `__: imaplib and poplib now " +"catch the Windows socket WSAEINVAL error (code 10022) on " +"shutdown(SHUT_RDWR): An invalid operation was attempted. This error occurs " +"sometimes on SSL connections." +msgstr "" +"`bpo-30329 `__: imaplib and poplib now " +"catch the Windows socket WSAEINVAL error (code 10022) on " +"shutdown(SHUT_RDWR): An invalid operation was attempted. This error occurs " +"sometimes on SSL connections." + +#: ../../build/NEWS:842 +msgid "" +"`bpo-29196 `__: Removed previously " +"deprecated in Python 2.4 classes Plist, Dict and _InternalDict in the " +"plistlib module. Dict values in the result of functions readPlist() and " +"readPlistFromBytes() are now normal dicts. You no longer can use attribute " +"access to access items of these dictionaries." +msgstr "" + +#: ../../build/NEWS:853 +msgid "" +"`bpo-30048 `__: Fixed ``Task.cancel()`` " +"can be ignored when the task is running coroutine and the coroutine returned " +"without any more ``await``." +msgstr "" +"`bpo-30048 `__: Fixed ``Task.cancel()`` " +"can be ignored when the task is running coroutine and the coroutine returned " +"without any more ``await``." + +#: ../../build/NEWS:863 +msgid "" +"`bpo-30298 `__: Weaken the condition of " +"deprecation warnings for inline modifiers. Now allowed several subsequential " +"inline modifiers at the start of the pattern (e.g. ``'(?i)(?s)...'``). In " +"verbose mode whitespaces and comments now are allowed before and between " +"inline modifiers (e.g. ``'(?x) (?i) (?s)...'``)." +msgstr "" +"`bpo-30298 `__: Weaken the condition of " +"deprecation warnings for inline modifiers. Now allowed several subsequential " +"inline modifiers at the start of the pattern (e.g. ``'(?i)(?s)...'``). In " +"verbose mode whitespaces and comments now are allowed before and between " +"inline modifiers (e.g. ``'(?x) (?i) (?s)...'``)." + +#: ../../build/NEWS:872 +msgid "" +"`bpo-29990 `__: Fix range checking in " +"GB18030 decoder. Original patch by Ma Lin." +msgstr "" +"`bpo-29990 `__: Fix range checking in " +"GB18030 decoder. Original patch by Ma Lin." + +#: ../../build/NEWS:875 +msgid "" +"`bpo-29979 `__: rewrite cgi." +"parse_multipart, reusing the FieldStorage class and making its results " +"consistent with those of FieldStorage for multipart/form-data requests. " +"Patch by Pierre Quentel." +msgstr "" + +#: ../../build/NEWS:879 +msgid "" +"`bpo-30243 `__: Removed the __init__ " +"methods of _json's scanner and encoder. Misusing them could cause memory " +"leaks or crashes. Now scanner and encoder objects are completely " +"initialized in the __new__ methods." +msgstr "" +"`bpo-30243 `__: Removed the __init__ " +"methods of _json's scanner and encoder. Misusing them could cause memory " +"leaks or crashes. Now scanner and encoder objects are completely " +"initialized in the __new__ methods." + +#: ../../build/NEWS:883 +msgid "" +"`bpo-30215 `__: Compiled regular " +"expression objects with the re.LOCALE flag no longer depend on the locale at " +"compile time. Only the locale at matching time affects the result of " +"matching." +msgstr "" + +#: ../../build/NEWS:887 +msgid "" +"`bpo-30185 `__: Avoid KeyboardInterrupt " +"tracebacks in forkserver helper process when Ctrl-C is received." +msgstr "" +"`bpo-30185 `__: Avoid KeyboardInterrupt " +"tracebacks in forkserver helper process when Ctrl-C is received." + +#: ../../build/NEWS:897 +msgid "" +"`bpo-30205 `__: Fix getsockname() for " +"unbound AF_UNIX sockets on Linux." +msgstr "" +"`bpo-30205 `__: Fix getsockname() for " +"unbound AF_UNIX sockets on Linux." + +#: ../../build/NEWS:899 +msgid "" +"`bpo-30228 `__: The seek() and tell() " +"methods of io.FileIO now set the internal seekable attribute to avoid one " +"syscall on open() (in buffered or text mode)." +msgstr "" + +#: ../../build/NEWS:903 +msgid "" +"`bpo-30190 `__: unittest's " +"assertAlmostEqual and assertNotAlmostEqual provide a better message in case " +"of failure which includes the difference between left and right arguments. " +"(patch by Giampaolo Rodola')" +msgstr "" + +#: ../../build/NEWS:909 +msgid "" +"`bpo-29822 `__: inspect.isabstract() now " +"works during __init_subclass__. Patch by Nate Soares." +msgstr "" +"`bpo-29822 `__: inspect.isabstract() now " +"works during __init_subclass__. Patch by Nate Soares." + +#: ../../build/NEWS:915 +msgid "" +"`bpo-30070 `__: Fixed leaks and crashes " +"in errors handling in the parser module." +msgstr "" +"`bpo-30070 `__: Fixed leaks and crashes " +"in errors handling in the parser module." + +#: ../../build/NEWS:921 +msgid "" +"`bpo-30061 `__: Fixed crashes in IOBase " +"methods __next__() and readlines() when readline() or __next__() " +"respectively return non-sizeable object. Fixed possible other errors caused " +"by not checking results of PyObject_Size(), PySequence_Size(), or " +"PyMapping_Size()." +msgstr "" +"`bpo-30061 `__: Fixed crashes in IOBase " +"methods __next__() and readlines() when readline() or __next__() " +"respectively return non-sizeable object. Fixed possible other errors caused " +"by not checking results of PyObject_Size(), PySequence_Size(), or " +"PyMapping_Size()." + +#: ../../build/NEWS:932 +msgid "" +"`bpo-30068 `__: _io._IOBase.readlines " +"will check if it's closed first when hint is present." +msgstr "" +"`bpo-30068 `__: _io._IOBase.readlines " +"will check if it's closed first when hint is present." + +#: ../../build/NEWS:938 +msgid "" +"`bpo-29692 `__: Fixed arbitrary " +"unchaining of RuntimeError exceptions in contextlib.contextmanager. Patch " +"by Siddharth Velankar." +msgstr "" +"`bpo-29692 `__: Fixed arbitrary " +"unchaining of RuntimeError exceptions in contextlib.contextmanager. Patch " +"by Siddharth Velankar." + +#: ../../build/NEWS:945 +msgid "" +"`bpo-30017 `__: Allowed calling the " +"close() method of the zip entry writer object multiple times. Writing to a " +"closed writer now always produces a ValueError." +msgstr "" +"`bpo-30017 `__: Allowed calling the " +"close() method of the zip entry writer object multiple times. Writing to a " +"closed writer now always produces a ValueError." + +#: ../../build/NEWS:949 +msgid "" +"`bpo-29998 `__: Pickling and copying " +"ImportError now preserves name and path attributes." +msgstr "" +"`bpo-29998 `__: Pickling and copying " +"ImportError now preserves name and path attributes." + +#: ../../build/NEWS:963 +msgid "" +"`bpo-29931 `__: Fixed comparison check " +"for ipaddress.ip_interface objects. Patch by Sanjay Sundaresan." +msgstr "" +"`bpo-29931 `__: Fixed comparison check " +"for ipaddress.ip_interface objects. Patch by Sanjay Sundaresan." + +#: ../../build/NEWS:966 +msgid "" +"`bpo-29953 `__: Fixed memory leaks in " +"the replace() method of datetime and time objects when pass out of bound " +"fold argument." +msgstr "" +"`bpo-29953 `__: Fixed memory leaks in " +"the replace() method of datetime and time objects when pass out of bound " +"fold argument." + +#: ../../build/NEWS:969 +msgid "" +"`bpo-29942 `__: Fix a crash in itertools." +"chain.from_iterable when encountering long runs of empty iterables." +msgstr "" +"`bpo-29942 `__: Fix a crash in itertools." +"chain.from_iterable when encountering long runs of empty iterables." + +#: ../../build/NEWS:974 +msgid "" +"`bpo-29204 `__: Element.getiterator() " +"and the html parameter of XMLParser() were deprecated only in the " +"documentation (since Python 3.2 and 3.4 correspondintly). Now using them " +"emits a deprecation warning." +msgstr "" + +#: ../../build/NEWS:978 +msgid "" +"`bpo-27863 `__: Fixed multiple crashes " +"in ElementTree caused by race conditions and wrong types." +msgstr "" +"`bpo-27863 `__: Fixed multiple crashes " +"in ElementTree caused by race conditions and wrong types." + +#: ../../build/NEWS:984 +msgid "" +"`bpo-28699 `__: Fixed a bug in pools in " +"multiprocessing.pool that raising an exception at the very first of an " +"iterable may swallow the exception or make the program hang. Patch by Davin " +"Potts and Xiang Zhang." +msgstr "" +"`bpo-28699 `__: Fixed a bug in pools in " +"multiprocessing.pool that raising an exception at the very first of an " +"iterable may swallow the exception or make the program hang. Patch by Davin " +"Potts and Xiang Zhang." + +#: ../../build/NEWS:988 +msgid "" +"`bpo-23890 `__: unittest.TestCase." +"assertRaises() now manually breaks a reference cycle to not keep objects " +"alive longer than expected." +msgstr "" +"`bpo-23890 `__: unittest.TestCase." +"assertRaises() now manually breaks a reference cycle to not keep objects " +"alive longer than expected." + +#: ../../build/NEWS:994 +msgid "" +"`bpo-25803 `__: Avoid incorrect errors " +"raised by Path.mkdir(exist_ok=True) when the OS gives priority to errors " +"such as EACCES over EEXIST." +msgstr "" +"`bpo-25803 `__: Avoid incorrect errors " +"raised by Path.mkdir(exist_ok=True) when the OS gives priority to errors " +"such as EACCES over EEXIST." + +#: ../../build/NEWS:997 +msgid "" +"`bpo-29861 `__: Release references to " +"tasks, their arguments and their results as soon as they are finished in " +"multiprocessing.Pool." +msgstr "" +"`bpo-29861 `__: Release references to " +"tasks, their arguments and their results as soon as they are finished in " +"multiprocessing.Pool." + +#: ../../build/NEWS:1003 +msgid "" +"`bpo-29884 `__: faulthandler: Restore " +"the old sigaltstack during teardown. Patch by Christophe Zeitouny." +msgstr "" +"`bpo-29884 `__: faulthandler: Restore " +"the old sigaltstack during teardown. Patch by Christophe Zeitouny." + +#: ../../build/NEWS:1006 +msgid "" +"`bpo-25455 `__: Fixed crashes in repr of " +"recursive buffered file-like objects." +msgstr "" +"`bpo-25455 `__: Fixed crashes in repr of " +"recursive buffered file-like objects." + +#: ../../build/NEWS:1008 +msgid "" +"`bpo-29800 `__: Fix crashes in partial." +"__repr__ if the keys of partial.keywords are not strings. Patch by Michael " +"Seifert." +msgstr "" +"`bpo-29800 `__: Fix crashes in partial." +"__repr__ if the keys of partial.keywords are not strings. Patch by Michael " +"Seifert." + +#: ../../build/NEWS:1011 +msgid "" +"`bpo-8256 `__: Fixed possible failing or " +"crashing input() if attributes \"encoding\" or \"errors\" of sys.stdin or " +"sys.stdout are not set or are not strings." +msgstr "" +"`bpo-8256 `__: Fixed possible failing or " +"crashing input() if attributes \"encoding\" or \"errors\" of sys.stdin or " +"sys.stdout are not set or are not strings." + +#: ../../build/NEWS:1030 +msgid "" +"`bpo-28231 `__: The zipfile module now " +"accepts path-like objects for external paths." +msgstr "" +"`bpo-28231 `__: The zipfile module now " +"accepts path-like objects for external paths." + +#: ../../build/NEWS:1033 +msgid "" +"`bpo-26915 `__: index() and count() " +"methods of collections.abc.Sequence now check identity before checking " +"equality when do comparisons." +msgstr "" +"`bpo-26915 `__: index() and count() " +"methods of collections.abc.Sequence now check identity before checking " +"equality when do comparisons." + +#: ../../build/NEWS:1046 +msgid "" +"`bpo-28963 `__: Fix out of bound " +"iteration in asyncio.Future.remove_done_callback implemented in C." +msgstr "" +"`bpo-28963 `__: Fix out of bound " +"iteration in asyncio.Future.remove_done_callback implemented in C." + +#: ../../build/NEWS:1049 +msgid "" +"`bpo-29704 `__: asyncio.subprocess." +"SubprocessStreamProtocol no longer closes before all pipes are closed." +msgstr "" +"`bpo-29704 `__: asyncio.subprocess." +"SubprocessStreamProtocol no longer closes before all pipes are closed." + +#: ../../build/NEWS:1052 +msgid "" +"`bpo-29271 `__: Fix Task.current_task " +"and Task.all_tasks implemented in C to accept None argument as their pure " +"Python implementation." +msgstr "" +"`bpo-29271 `__: Fix Task.current_task " +"and Task.all_tasks implemented in C to accept None argument as their pure " +"Python implementation." + +#: ../../build/NEWS:1055 +msgid "" +"`bpo-29703 `__: Fix asyncio to support " +"instantiation of new event loops in child processes." +msgstr "" +"`bpo-29703 `__: Fix asyncio to support " +"instantiation of new event loops in child processes." + +#: ../../build/NEWS:1058 +msgid "" +"`bpo-29615 `__: SimpleXMLRPCDispatcher " +"no longer chains KeyError (or any other exception) to exception(s) raised in " +"the dispatched methods. Patch by Petr Motejlek." +msgstr "" +"`bpo-29615 `__: SimpleXMLRPCDispatcher " +"no longer chains KeyError (or any other exception) to exception(s) raised in " +"the dispatched methods. Patch by Petr Motejlek." + +#: ../../build/NEWS:1062 +msgid "" +"`bpo-7769 `__: Method register_function() " +"of xmlrpc.server.SimpleXMLRPCDispatcher and its subclasses can now be used " +"as a decorator." +msgstr "" + +#: ../../build/NEWS:1066 +msgid "" +"`bpo-29376 `__: Fix assertion error in " +"threading._DummyThread.is_alive()." +msgstr "" +"`bpo-29376 `__: Fix assertion error in " +"threading._DummyThread.is_alive()." + +#: ../../build/NEWS:1068 +msgid "" +"`bpo-28624 `__: Add a test that checks " +"that cwd parameter of Popen() accepts PathLike objects. Patch by Sayan " +"Chowdhury." +msgstr "" +"`bpo-28624 `__: Add a test that checks " +"that cwd parameter of Popen() accepts PathLike objects. Patch by Sayan " +"Chowdhury." + +#: ../../build/NEWS:1071 +msgid "" +"`bpo-28518 `__: Start a transaction " +"implicitly before a DML statement. Patch by Aviv Palivoda." +msgstr "" +"`bpo-28518 `__: Start a transaction " +"implicitly before a DML statement. Patch by Aviv Palivoda." + +#: ../../build/NEWS:1074 +msgid "" +"`bpo-29742 `__: get_extra_info() raises " +"exception if get called on closed ssl transport. Patch by Nikolay Kim." +msgstr "" +"`bpo-29742 `__: get_extra_info() raises " +"exception if get called on closed ssl transport. Patch by Nikolay Kim." + +#: ../../build/NEWS:1077 +msgid "" +"`bpo-16285 `__: urrlib.parse.quote is " +"now based on RFC 3986 and hence includes '~' in the set of characters that " +"is not quoted by default. Patch by Christian Theune and Ratnadeep Debnath." +msgstr "" + +#: ../../build/NEWS:1081 +msgid "" +"`bpo-29532 `__: Altering a kwarg " +"dictionary passed to functools.partial() no longer affects a partial object " +"after creation." +msgstr "" +"`bpo-29532 `__: Altering a kwarg " +"dictionary passed to functools.partial() no longer affects a partial object " +"after creation." + +#: ../../build/NEWS:1084 +msgid "" +"`bpo-29110 `__: Fix file object leak in " +"aifc.open() when file is given as a filesystem path and is not in valid AIFF " +"format. Patch by Anthony Zhang." +msgstr "" +"`bpo-29110 `__: Fix file object leak in " +"aifc.open() when file is given as a filesystem path and is not in valid AIFF " +"format. Patch by Anthony Zhang." + +#: ../../build/NEWS:1087 +msgid "" +"`bpo-22807 `__: Add uuid.SafeUUID and " +"uuid.UUID.is_safe to relay information from the platform about whether " +"generated UUIDs are generated with a multiprocessing safe method." +msgstr "" + +#: ../../build/NEWS:1103 +msgid "" +"`bpo-28556 `__: Various updates to " +"typing module: typing.Counter, typing.ChainMap, improved ABC caching, etc. " +"Original PRs by Jelle Zijlstra, Ivan Levkivskyi, Manuel Krebber, and Łukasz " +"Langa." +msgstr "" +"`bpo-28556 `__: Various updates to " +"typing module: typing.Counter, typing.ChainMap, improved ABC caching, etc. " +"Original PRs by Jelle Zijlstra, Ivan Levkivskyi, Manuel Krebber, and Łukasz " +"Langa." + +#: ../../build/NEWS:1107 +msgid "" +"`bpo-29100 `__: Fix datetime." +"fromtimestamp() regression introduced in Python 3.6.0: check minimum and " +"maximum years." +msgstr "" +"`bpo-29100 `__: Fix datetime." +"fromtimestamp() regression introduced in Python 3.6.0: check minimum and " +"maximum years." + +#: ../../build/NEWS:1110 +msgid "" +"`bpo-29416 `__: Prevent infinite loop in " +"pathlib.Path.mkdir" +msgstr "" +"`bpo-29416 `__: Prevent infinite loop in " +"pathlib.Path.mkdir" + +#: ../../build/NEWS:1129 +msgid "" +"`bpo-29335 `__: Fix subprocess.Popen." +"wait() when the child process has exited to a stopped instead of terminated " +"state (ex: when under ptrace)." +msgstr "" +"`bpo-29335 `__: Fix subprocess.Popen." +"wait() when the child process has exited to a stopped instead of terminated " +"state (ex: when under ptrace)." + +#: ../../build/NEWS:1132 +msgid "" +"`bpo-29290 `__: Fix a regression in " +"argparse that help messages would wrap at non-breaking spaces." +msgstr "" +"`bpo-29290 `__: Fix a regression in " +"argparse that help messages would wrap at non-breaking spaces." + +#: ../../build/NEWS:1135 +msgid "" +"`bpo-28735 `__: Fixed the comparison of " +"mock.MagickMock with mock.ANY." +msgstr "" +"`bpo-28735 `__: Fixed the comparison of " +"mock.MagickMock with mock.ANY." + +#: ../../build/NEWS:1142 +msgid "" +"`bpo-29219 `__: Fixed infinite recursion " +"in the repr of uninitialized ctypes.CDLL instances." +msgstr "" +"`bpo-29219 `__: Fixed infinite recursion " +"in the repr of uninitialized ctypes.CDLL instances." + +#: ../../build/NEWS:1153 +msgid "" +"`bpo-28969 `__: Fixed race condition in " +"C implementation of functools.lru_cache. KeyError could be raised when " +"cached function with full cache was simultaneously called from differen " +"threads with the same uncached arguments." +msgstr "" +"`bpo-28969 `__: Fixed race condition in " +"C implementation of functools.lru_cache. KeyError could be raised when " +"cached function with full cache was simultaneously called from differen " +"threads with the same uncached arguments." + +#: ../../build/NEWS:1161 +msgid "" +"`bpo-29142 `__: In urllib.request, " +"suffixes in no_proxy environment variable with leading dots could match " +"related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch." +msgstr "" +"`bpo-29142 `__: In urllib.request, " +"suffixes in no_proxy environment variable with leading dots could match " +"related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch." + +#: ../../build/NEWS:1165 +msgid "" +"`bpo-28961 `__: Fix unittest.mock._Call " +"helper: don't ignore the name parameter anymore. Patch written by Jiajun " +"Huang." +msgstr "" +"`bpo-28961 `__: Fix unittest.mock._Call " +"helper: don't ignore the name parameter anymore. Patch written by Jiajun " +"Huang." + +#: ../../build/NEWS:1174 +msgid "" +"`bpo-29079 `__: Prevent infinite loop in " +"pathlib.resolve() on Windows" +msgstr "" +"`bpo-29079 `__: Prevent infinite loop in " +"pathlib.resolve() on Windows" + +#: ../../build/NEWS:1176 ../../build/NEWS:5521 +msgid "" +"`bpo-13051 `__: Fixed recursion errors " +"in large or resized curses.textpad.Textbox. Based on patch by Tycho " +"Andersen." +msgstr "" +"`bpo-13051 `__: Fixed recursion errors " +"in large or resized curses.textpad.Textbox. Based on patch by Tycho " +"Andersen." + +#: ../../build/NEWS:1179 ../../build/NEWS:5528 +msgid "" +"`bpo-9770 `__: curses.ascii predicates " +"now work correctly with negative integers." +msgstr "" +"`bpo-9770 `__: curses.ascii predicates " +"now work correctly with negative integers." + +#: ../../build/NEWS:1182 ../../build/NEWS:5531 +msgid "" +"`bpo-28427 `__: old keys should not " +"remove new values from WeakValueDictionary when collecting from another " +"thread." +msgstr "" +"`bpo-28427 `__: old keys should not " +"remove new values from WeakValueDictionary when collecting from another " +"thread." + +#: ../../build/NEWS:1185 ../../build/NEWS:2108 ../../build/NEWS:5534 +msgid "" +"`bpo-28923 `__: Remove editor artifacts " +"from Tix.py." +msgstr "" +"`bpo-28923 `__: Remove editor artifacts " +"from Tix.py." + +#: ../../build/NEWS:1187 ../../build/NEWS:2113 ../../build/NEWS:5536 +msgid "" +"`bpo-28871 `__: Fixed a crash when " +"deallocate deep ElementTree." +msgstr "" +"`bpo-28871 `__: Fixed a crash when " +"deallocate deep ElementTree." + +#: ../../build/NEWS:1189 ../../build/NEWS:2115 ../../build/NEWS:5538 +msgid "" +"`bpo-19542 `__: Fix bugs in " +"WeakValueDictionary.setdefault() and WeakValueDictionary.pop() when a GC " +"collection happens in another thread." +msgstr "" +"`bpo-19542 `__: Fix bugs in " +"WeakValueDictionary.setdefault() and WeakValueDictionary.pop() when a GC " +"collection happens in another thread." + +#: ../../build/NEWS:1192 ../../build/NEWS:2118 +msgid "" +"`bpo-20191 `__: Fixed a crash in " +"resource.prlimit() when passing a sequence that doesn't own its elements as " +"limits." +msgstr "" +"`bpo-20191 `__: Fixed a crash in " +"resource.prlimit() when passing a sequence that doesn't own its elements as " +"limits." + +#: ../../build/NEWS:1198 ../../build/NEWS:2121 ../../build/NEWS:5544 +msgid "" +"`bpo-28779 `__: multiprocessing." +"set_forkserver_preload() would crash the forkserver process if a preloaded " +"module instantiated some multiprocessing objects such as locks." +msgstr "" +"`bpo-28779 `__: multiprocessing." +"set_forkserver_preload() would crash the forkserver process if a preloaded " +"module instantiated some multiprocessing objects such as locks." + +#: ../../build/NEWS:1202 ../../build/NEWS:2128 +msgid "" +"`bpo-26937 `__: The chown() method of " +"the tarfile.TarFile class does not fail now when the grp module cannot be " +"imported, as for example on Android platforms." +msgstr "" +"`bpo-26937 `__: The chown() method of " +"the tarfile.TarFile class does not fail now when the grp module cannot be " +"imported, as for example on Android platforms." + +#: ../../build/NEWS:1217 ../../build/NEWS:2252 +msgid "" +"`bpo-27172 `__: To assist with upgrades " +"from 2.7, the previously documented deprecation of ``inspect." +"getfullargspec()`` has been reversed. This decision may be revisited again " +"after the Python 2.7 branch is no longer officially supported." +msgstr "" +"`bpo-27172 `__: To assist with upgrades " +"from 2.7, the previously documented deprecation of ``inspect." +"getfullargspec()`` has been reversed. This decision may be revisited again " +"after the Python 2.7 branch is no longer officially supported." + +#: ../../build/NEWS:1222 +msgid "" +"`bpo-28740 `__: Add sys." +"getandroidapilevel(): return the build time API version of Android as an " +"integer. Function only available on Android." +msgstr "" + +#: ../../build/NEWS:1225 ../../build/NEWS:2257 +msgid "" +"`bpo-26273 `__: Add new :data:`socket." +"TCP_CONGESTION` (Linux 2.6.13) and :data:`socket.TCP_USER_TIMEOUT` (Linux " +"2.6.37) constants. Patch written by Omar Sandoval." +msgstr "" +"`bpo-26273 `__: Add new :data:`socket." +"TCP_CONGESTION` (Linux 2.6.13) and :data:`socket.TCP_USER_TIMEOUT` (Linux " +"2.6.37) constants. Patch written by Omar Sandoval." + +#: ../../build/NEWS:1229 ../../build/NEWS:2327 +msgid "" +"`bpo-28752 `__: Restored the " +"__reduce__() methods of datetime objects." +msgstr "" +"`bpo-28752 `__: Restored the " +"__reduce__() methods of datetime objects." + +#: ../../build/NEWS:1231 ../../build/NEWS:2329 +msgid "" +"`bpo-28727 `__: Regular expression " +"patterns, _sre.SRE_Pattern objects created by re.compile(), become " +"comparable (only x==y and x!=y operators). This change should fix the " +"`bpo-18383 `__: don't duplicate warning " +"filters when the warnings module is reloaded (thing usually only done in " +"unit tests)." +msgstr "" +"`bpo-28727 `__: Regular expression " +"patterns, _sre.SRE_Pattern objects created by re.compile(), become " +"comparable (only x==y and x!=y operators). This change should fix the " +"`bpo-18383 `__: don't duplicate warning " +"filters when the warnings module is reloaded (thing usually only done in " +"unit tests)." + +#: ../../build/NEWS:1239 ../../build/NEWS:2337 ../../build/NEWS:5551 +msgid "" +"`bpo-25659 `__: In ctypes, prevent a " +"crash calling the from_buffer() and from_buffer_copy() methods on abstract " +"classes like Array." +msgstr "" +"`bpo-25659 `__: In ctypes, prevent a " +"crash calling the from_buffer() and from_buffer_copy() methods on abstract " +"classes like Array." + +#: ../../build/NEWS:1245 ../../build/NEWS:2340 +msgid "" +"`bpo-19717 `__: Makes Path.resolve() " +"succeed on paths that do not exist. Patch by Vajrasky Kok" +msgstr "" +"`bpo-19717 `__: Makes Path.resolve() " +"succeed on paths that do not exist. Patch by Vajrasky Kok" + +#: ../../build/NEWS:1248 ../../build/NEWS:2343 +msgid "" +"`bpo-28563 `__: Fixed possible DoS and " +"arbitrary code execution when handle plural form selections in the gettext " +"module. The expression parser now supports exact syntax supported by GNU " +"gettext." +msgstr "" +"`bpo-28563 `__: Fixed possible DoS and " +"arbitrary code execution when handle plural form selections in the gettext " +"module. The expression parser now supports exact syntax supported by GNU " +"gettext." + +#: ../../build/NEWS:1252 ../../build/NEWS:2347 ../../build/NEWS:5560 +msgid "" +"`bpo-28387 `__: Fixed possible crash in " +"_io.TextIOWrapper deallocator when the garbage collector is invoked in other " +"thread. Based on patch by Sebastian Cufre." +msgstr "" +"`bpo-28387 `__: Fixed possible crash in " +"_io.TextIOWrapper deallocator when the garbage collector is invoked in other " +"thread. Based on patch by Sebastian Cufre." + +#: ../../build/NEWS:1256 ../../build/NEWS:2432 ../../build/NEWS:5564 +msgid "" +"`bpo-27517 `__: LZMA compressor and " +"decompressor no longer raise exceptions if given empty data twice. Patch by " +"Benjamin Fogle." +msgstr "" +"`bpo-27517 `__: LZMA compressor and " +"decompressor no longer raise exceptions if given empty data twice. Patch by " +"Benjamin Fogle." + +#: ../../build/NEWS:1259 ../../build/NEWS:2435 ../../build/NEWS:5567 +msgid "" +"`bpo-28549 `__: Fixed segfault in " +"curses's addch() with ncurses6." +msgstr "" +"`bpo-28549 `__: Fixed segfault in " +"curses's addch() with ncurses6." + +#: ../../build/NEWS:1265 ../../build/NEWS:2441 ../../build/NEWS:5573 +msgid "" +"`bpo-23262 `__: The webbrowser module " +"now supports Firefox 36+ and derived browsers. Based on patch by Oleg " +"Broytman." +msgstr "" +"`bpo-23262 `__: The webbrowser module " +"now supports Firefox 36+ and derived browsers. Based on patch by Oleg " +"Broytman." + +#: ../../build/NEWS:1268 +msgid "" +"`bpo-24241 `__: The webbrowser in an X " +"environment now prefers using the default browser directly. Also, the " +"webbrowser register() function now has a documented 'preferred' argument, to " +"specify browsers to be returned by get() with no arguments. Patch by David " +"Steele" +msgstr "" + +#: ../../build/NEWS:1273 ../../build/NEWS:2444 ../../build/NEWS:5576 +msgid "" +"`bpo-27939 `__: Fixed bugs in tkinter." +"ttk.LabeledScale and tkinter.Scale caused by representing the scale as float " +"value internally in Tk. tkinter.IntVar now works if float value is set to " +"underlying Tk variable." +msgstr "" +"`bpo-27939 `__: Fixed bugs in tkinter." +"ttk.LabeledScale and tkinter.Scale caused by representing the scale as float " +"value internally in Tk. tkinter.IntVar now works if float value is set to " +"underlying Tk variable." + +#: ../../build/NEWS:1285 ../../build/NEWS:2455 ../../build/NEWS:5584 +msgid "" +"`bpo-20491 `__: The textwrap.TextWrapper " +"class now honors non-breaking spaces. Based on patch by Kaarle Ritvanen." +msgstr "" +"`bpo-20491 `__: The textwrap.TextWrapper " +"class now honors non-breaking spaces. Based on patch by Kaarle Ritvanen." + +#: ../../build/NEWS:1288 ../../build/NEWS:2458 ../../build/NEWS:5587 +msgid "" +"`bpo-28353 `__: os.fwalk() no longer " +"fails on broken links." +msgstr "" +"`bpo-28353 `__: os.fwalk() no longer " +"fails on broken links." + +#: ../../build/NEWS:1290 ../../build/NEWS:2460 +msgid "" +"`bpo-28430 `__: Fix iterator of C " +"implemented asyncio.Future doesn't accept non-None value is passed to it." +"send(val)." +msgstr "" +"`bpo-28430 `__: Fix iterator of C " +"implemented asyncio.Future doesn't accept non-None value is passed to it." +"send(val)." + +#: ../../build/NEWS:1293 ../../build/NEWS:2463 +msgid "" +"`bpo-27025 `__: Generated names for " +"Tkinter widgets now start by the \"!\" prefix for readability." +msgstr "" +"`bpo-27025 `__: Generated names for " +"Tkinter widgets now start by the \"!\" prefix for readability." + +#: ../../build/NEWS:1296 ../../build/NEWS:2466 ../../build/NEWS:5589 +msgid "" +"`bpo-25464 `__: Fixed HList." +"header_exists() in tkinter.tix module by addin a workaround to Tix library " +"bug." +msgstr "" +"`bpo-25464 `__: Fixed HList." +"header_exists() in tkinter.tix module by addin a workaround to Tix library " +"bug." + +#: ../../build/NEWS:1299 ../../build/NEWS:2469 +msgid "" +"`bpo-28488 `__: shutil.make_archive() no " +"longer adds entry \"./\" to ZIP archive." +msgstr "" +"`bpo-28488 `__: shutil.make_archive() no " +"longer adds entry \"./\" to ZIP archive." + +#: ../../build/NEWS:1301 ../../build/NEWS:2471 +msgid "" +"`bpo-25953 `__: re.sub() now raises an " +"error for invalid numerical group reference in replacement template even if " +"the pattern is not found in the string. Error message for invalid group " +"reference now includes the group index and the position of the reference. " +"Based on patch by SilentGhost." +msgstr "" +"`bpo-25953 `__: re.sub() now raises an " +"error for invalid numerical group reference in replacement template even if " +"the pattern is not found in the string. Error message for invalid group " +"reference now includes the group index and the position of the reference. " +"Based on patch by SilentGhost." + +#: ../../build/NEWS:1312 ../../build/NEWS:2476 +msgid "" +"`bpo-18219 `__: Optimize csv.DictWriter " +"for large number of columns. Patch by Mariatta Wijaya." +msgstr "" +"`bpo-18219 `__: Optimize csv.DictWriter " +"for large number of columns. Patch by Mariatta Wijaya." + +#: ../../build/NEWS:1315 ../../build/NEWS:2479 +msgid "" +"`bpo-28448 `__: Fix C implemented " +"asyncio.Future didn't work on Windows." +msgstr "" +"`bpo-28448 `__: Fix C implemented " +"asyncio.Future didn't work on Windows." + +#: ../../build/NEWS:1317 +msgid "" +"`bpo-23214 `__: In the \"io\" module, " +"the argument to BufferedReader and BytesIO's read1() methods is now optional " +"and can be -1, matching the BufferedIOBase specification." +msgstr "" + +#: ../../build/NEWS:1321 ../../build/NEWS:2481 +msgid "" +"`bpo-28480 `__: Fix error building " +"socket module when multithreading is disabled." +msgstr "" +"`bpo-28480 `__: Fix error building " +"socket module when multithreading is disabled." + +#: ../../build/NEWS:1330 +msgid "" +"`bpo-28240 `__: timeit autorange now " +"uses a single loop iteration if the benchmark takes less than 10 seconds, " +"instead of 10 iterations. \"python3 -m timeit -s 'import time' 'time." +"sleep(1)'\" now takes 4 seconds instead of 40 seconds." +msgstr "" + +#: ../../build/NEWS:1335 +msgid "" +"Distutils.sdist now looks for README and setup.py files with case " +"sensitivity. This behavior matches that found in Setuptools 6.0 and later. " +"See `setuptools 100 `_ for " +"rationale." +msgstr "" + +#: ../../build/NEWS:1343 ../../build/NEWS:2486 ../../build/NEWS:5596 +msgid "" +"`bpo-20766 `__: Fix references leaked by " +"pdb in the handling of SIGINT handlers." +msgstr "" +"`bpo-20766 `__: Fix references leaked by " +"pdb in the handling of SIGINT handlers." + +#: ../../build/NEWS:1346 ../../build/NEWS:2602 +msgid "" +"`bpo-27998 `__: Fixed bytes path support " +"in os.scandir() on Windows. Patch by Eryk Sun." +msgstr "" +"`bpo-27998 `__: Fixed bytes path support " +"in os.scandir() on Windows. Patch by Eryk Sun." + +#: ../../build/NEWS:1349 ../../build/NEWS:2605 +msgid "" +"`bpo-28317 `__: The disassembler now " +"decodes FORMAT_VALUE argument." +msgstr "" +"`bpo-28317 `__: The disassembler now " +"decodes FORMAT_VALUE argument." + +#: ../../build/NEWS:1351 ../../build/NEWS:2611 +msgid "" +"`bpo-28380 `__: unittest.mock Mock " +"autospec functions now properly support assert_called, assert_not_called, " +"and assert_called_once." +msgstr "" +"`bpo-28380 `__: unittest.mock Mock " +"autospec functions now properly support assert_called, assert_not_called, " +"and assert_called_once." + +#: ../../build/NEWS:1354 ../../build/NEWS:2616 +msgid "" +"`bpo-28229 `__: lzma module now supports " +"pathlib." +msgstr "" +"`bpo-28229 `__: lzma module now supports " +"pathlib." + +#: ../../build/NEWS:1356 ../../build/NEWS:2618 ../../build/NEWS:5603 +msgid "" +"`bpo-28321 `__: Fixed writing non-BMP " +"characters with binary format in plistlib." +msgstr "" +"`bpo-28321 `__: Fixed writing non-BMP " +"characters with binary format in plistlib." + +#: ../../build/NEWS:1359 ../../build/NEWS:2621 +msgid "" +"`bpo-28225 `__: bz2 module now supports " +"pathlib. Initial patch by Ethan Furman." +msgstr "" +"`bpo-28225 `__: bz2 module now supports " +"pathlib. Initial patch by Ethan Furman." + +#: ../../build/NEWS:1362 ../../build/NEWS:2624 +msgid "" +"`bpo-28227 `__: gzip now supports " +"pathlib. Patch by Ethan Furman." +msgstr "" +"`bpo-28227 `__: gzip now supports " +"pathlib. Patch by Ethan Furman." + +#: ../../build/NEWS:1367 ../../build/NEWS:2626 +msgid "" +"`bpo-27358 `__: Optimized merging var-" +"keyword arguments and improved error message when passing a non-mapping as a " +"var-keyword argument." +msgstr "" +"`bpo-27358 `__: Optimized merging var-" +"keyword arguments and improved error message when passing a non-mapping as a " +"var-keyword argument." + +#: ../../build/NEWS:1373 ../../build/NEWS:2632 ../../build/NEWS:5606 +msgid "" +"`bpo-28322 `__: Fixed possible crashes " +"when unpickle itertools objects from incorrect pickle data. Based on patch " +"by John Leitch." +msgstr "" +"`bpo-28322 `__: Fixed possible crashes " +"when unpickle itertools objects from incorrect pickle data. Based on patch " +"by John Leitch." + +#: ../../build/NEWS:1376 ../../build/NEWS:2635 +msgid "" +"`bpo-28228 `__: imghdr now supports " +"pathlib." +msgstr "" +"`bpo-28228 `__: imghdr now supports " +"pathlib." + +#: ../../build/NEWS:1378 ../../build/NEWS:2637 +msgid "" +"`bpo-28226 `__: compileall now supports " +"pathlib." +msgstr "" +"`bpo-28226 `__: compileall now supports " +"pathlib." + +#: ../../build/NEWS:1380 ../../build/NEWS:2639 +msgid "" +"`bpo-28314 `__: Fix function declaration " +"(C flags) for the getiterator() method of xml.etree.ElementTree.Element." +msgstr "" +"`bpo-28314 `__: Fix function declaration " +"(C flags) for the getiterator() method of xml.etree.ElementTree.Element." + +#: ../../build/NEWS:1383 ../../build/NEWS:2642 +msgid "" +"`bpo-28148 `__: Stop using localtime() " +"and gmtime() in the time module." +msgstr "" +"`bpo-28148 `__: Stop using localtime() " +"and gmtime() in the time module." + +#: ../../build/NEWS:1385 ../../build/NEWS:2644 +msgid "" +"Introduced platform independent _PyTime_localtime API that is similar to " +"POSIX localtime_r, but available on all platforms. Patch by Ed Schouten." +msgstr "" + +#: ../../build/NEWS:1388 ../../build/NEWS:2647 ../../build/NEWS:5615 +msgid "" +"`bpo-28253 `__: Fixed calendar functions " +"for extreme months: 0001-01 and 9999-12." +msgstr "" +"`bpo-28253 `__: Fixed calendar functions " +"for extreme months: 0001-01 and 9999-12." + +#: ../../build/NEWS:1391 ../../build/NEWS:2650 ../../build/NEWS:5618 +msgid "" +"Methods itermonthdays() and itermonthdays2() are reimplemented so that they " +"don't call itermonthdates() which can cause datetime.date under/overflow." +msgstr "" + +#: ../../build/NEWS:1395 ../../build/NEWS:2654 ../../build/NEWS:5622 +msgid "" +"`bpo-28275 `__: Fixed possible use after " +"free in the decompress() methods of the LZMADecompressor and BZ2Decompressor " +"classes. Original patch by John Leitch." +msgstr "" +"`bpo-28275 `__: Fixed possible use after " +"free in the decompress() methods of the LZMADecompressor and BZ2Decompressor " +"classes. Original patch by John Leitch." + +#: ../../build/NEWS:1399 ../../build/NEWS:2658 ../../build/NEWS:5626 +msgid "" +"`bpo-27897 `__: Fixed possible crash in " +"sqlite3.Connection.create_collation() if pass invalid string-like object as " +"a name. Patch by Xiang Zhang." +msgstr "" +"`bpo-27897 `__: Fixed possible crash in " +"sqlite3.Connection.create_collation() if pass invalid string-like object as " +"a name. Patch by Xiang Zhang." + +#: ../../build/NEWS:1402 ../../build/NEWS:2661 +msgid "" +"`bpo-18844 `__: random.choices() now has " +"k as a keyword-only argument to improve the readability of common cases and " +"come into line with the signature used in other languages." +msgstr "" +"`bpo-18844 `__: random.choices() now has " +"k as a keyword-only argument to improve the readability of common cases and " +"come into line with the signature used in other languages." + +#: ../../build/NEWS:1406 ../../build/NEWS:2665 ../../build/NEWS:5629 +msgid "" +"`bpo-18893 `__: Fix invalid exception " +"handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May." +msgstr "" +"`bpo-18893 `__: Fix invalid exception " +"handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May." + +#: ../../build/NEWS:1409 ../../build/NEWS:2668 +msgid "" +"`bpo-27611 `__: Fixed support of default " +"root window in the tkinter.tix module. Added the master parameter in the " +"DisplayStyle constructor." +msgstr "" +"`bpo-27611 `__: Fixed support of default " +"root window in the tkinter.tix module. Added the master parameter in the " +"DisplayStyle constructor." + +#: ../../build/NEWS:1412 ../../build/NEWS:2671 ../../build/NEWS:5634 +msgid "" +"`bpo-27348 `__: In the traceback module, " +"restore the formatting of exception messages like \"Exception: None\". This " +"fixes a regression introduced in 3.5a2." +msgstr "" +"`bpo-27348 `__: In the traceback module, " +"restore the formatting of exception messages like \"Exception: None\". This " +"fixes a regression introduced in 3.5a2." + +#: ../../build/NEWS:1416 ../../build/NEWS:2675 ../../build/NEWS:5638 +msgid "" +"`bpo-25651 `__: Allow falsy values to be " +"used for msg parameter of subTest()." +msgstr "" +"`bpo-25651 `__: Allow falsy values to be " +"used for msg parameter of subTest()." + +#: ../../build/NEWS:1418 ../../build/NEWS:2677 +msgid "" +"`bpo-27778 `__: Fix a memory leak in os." +"getrandom() when the getrandom() is interrupted by a signal and a signal " +"handler raises a Python exception." +msgstr "" +"`bpo-27778 `__: Fix a memory leak in os." +"getrandom() when the getrandom() is interrupted by a signal and a signal " +"handler raises a Python exception." + +#: ../../build/NEWS:1421 ../../build/NEWS:2680 +msgid "" +"`bpo-28200 `__: Fix memory leak on " +"Windows in the os module (fix path_converter() function)." +msgstr "" +"`bpo-28200 `__: Fix memory leak on " +"Windows in the os module (fix path_converter() function)." + +#: ../../build/NEWS:1424 ../../build/NEWS:2683 +msgid "" +"`bpo-25400 `__: RobotFileParser now " +"correctly returns default values for crawl_delay and request_rate. Initial " +"patch by Peter Wirtz." +msgstr "" +"`bpo-25400 `__: RobotFileParser now " +"correctly returns default values for crawl_delay and request_rate. Initial " +"patch by Peter Wirtz." + +#: ../../build/NEWS:1427 ../../build/NEWS:2686 ../../build/NEWS:5640 +msgid "" +"`bpo-27932 `__: Prevent memory leak in " +"win32_ver()." +msgstr "" +"`bpo-27932 `__: Prevent memory leak in " +"win32_ver()." + +#: ../../build/NEWS:1429 ../../build/NEWS:2688 ../../build/NEWS:5642 +msgid "Fix UnboundLocalError in socket._sendfile_use_sendfile." +msgstr "" + +#: ../../build/NEWS:1431 ../../build/NEWS:2690 ../../build/NEWS:5644 +msgid "" +"`bpo-28075 `__: Check for " +"ERROR_ACCESS_DENIED in Windows implementation of os.stat(). Patch by Eryk " +"Sun." +msgstr "" +"`bpo-28075 `__: Check for " +"ERROR_ACCESS_DENIED in Windows implementation of os.stat(). Patch by Eryk " +"Sun." + +#: ../../build/NEWS:1434 ../../build/NEWS:2693 +msgid "" +"`bpo-22493 `__: Warning message emitted " +"by using inline flags in the middle of regular expression now contains a " +"(truncated) regex pattern. Patch by Tim Graham." +msgstr "" +"`bpo-22493 `__: Warning message emitted " +"by using inline flags in the middle of regular expression now contains a " +"(truncated) regex pattern. Patch by Tim Graham." + +#: ../../build/NEWS:1438 ../../build/NEWS:2697 ../../build/NEWS:5647 +msgid "" +"`bpo-25270 `__: Prevent codecs." +"escape_encode() from raising SystemError when an empty bytestring is passed." +msgstr "" +"`bpo-25270 `__: Prevent codecs." +"escape_encode() from raising SystemError when an empty bytestring is passed." + +#: ../../build/NEWS:1441 ../../build/NEWS:2700 ../../build/NEWS:5650 +msgid "" +"`bpo-28181 `__: Get antigravity over " +"HTTPS. Patch by Kaartic Sivaraam." +msgstr "" +"`bpo-28181 `__: Get antigravity over " +"HTTPS. Patch by Kaartic Sivaraam." + +#: ../../build/NEWS:1443 ../../build/NEWS:2702 ../../build/NEWS:5652 +msgid "" +"`bpo-25895 `__: Enable WebSocket URL " +"schemes in urllib.parse.urljoin. Patch by Gergely Imreh and Markus " +"Holtermann." +msgstr "" +"`bpo-25895 `__: Enable WebSocket URL " +"schemes in urllib.parse.urljoin. Patch by Gergely Imreh and Markus " +"Holtermann." + +#: ../../build/NEWS:1446 ../../build/NEWS:2705 +msgid "" +"`bpo-28114 `__: Fix a crash in " +"parse_envlist() when env contains byte strings. Patch by Eryk Sun." +msgstr "" +"`bpo-28114 `__: Fix a crash in " +"parse_envlist() when env contains byte strings. Patch by Eryk Sun." + +#: ../../build/NEWS:1449 ../../build/NEWS:2708 ../../build/NEWS:5655 +msgid "" +"`bpo-27599 `__: Fixed buffer overrun in " +"binascii.b2a_qp() and binascii.a2b_qp()." +msgstr "" +"`bpo-27599 `__: Fixed buffer overrun in " +"binascii.b2a_qp() and binascii.a2b_qp()." + +#: ../../build/NEWS:1452 ../../build/NEWS:2711 ../../build/NEWS:5856 +msgid "" +"`bpo-27906 `__: Fix socket accept " +"exhaustion during high TCP traffic. Patch by Kevin Conway." +msgstr "" +"`bpo-27906 `__: Fix socket accept " +"exhaustion during high TCP traffic. Patch by Kevin Conway." + +#: ../../build/NEWS:1455 ../../build/NEWS:2714 ../../build/NEWS:5859 +msgid "" +"`bpo-28174 `__: Handle when SO_REUSEPORT " +"isn't properly supported. Patch by Seth Michael Larson." +msgstr "" +"`bpo-28174 `__: Handle when SO_REUSEPORT " +"isn't properly supported. Patch by Seth Michael Larson." + +#: ../../build/NEWS:1458 ../../build/NEWS:2717 ../../build/NEWS:5862 +msgid "" +"`bpo-26654 `__: Inspect functools." +"partial in asyncio.Handle.__repr__. Patch by iceboy." +msgstr "" +"`bpo-26654 `__: Inspect functools." +"partial in asyncio.Handle.__repr__. Patch by iceboy." + +#: ../../build/NEWS:1461 ../../build/NEWS:2720 ../../build/NEWS:5865 +msgid "" +"`bpo-26909 `__: Fix slow pipes IO in " +"asyncio. Patch by INADA Naoki." +msgstr "" +"`bpo-26909 `__: Fix slow pipes IO in " +"asyncio. Patch by INADA Naoki." + +#: ../../build/NEWS:1463 ../../build/NEWS:2722 ../../build/NEWS:5867 +msgid "" +"`bpo-28176 `__: Fix callbacks race in " +"asyncio.SelectorLoop.sock_connect." +msgstr "" +"`bpo-28176 `__: Fix callbacks race in " +"asyncio.SelectorLoop.sock_connect." + +#: ../../build/NEWS:1465 ../../build/NEWS:2724 ../../build/NEWS:5869 +msgid "" +"`bpo-27759 `__: Fix selectors " +"incorrectly retain invalid file descriptors. Patch by Mark Williams." +msgstr "" +"`bpo-27759 `__: Fix selectors " +"incorrectly retain invalid file descriptors. Patch by Mark Williams." + +#: ../../build/NEWS:1470 ../../build/NEWS:2727 ../../build/NEWS:5872 +msgid "" +"`bpo-28368 `__: Refuse monitoring " +"processes if the child watcher has no loop attached. Patch by Vincent Michel." +msgstr "" +"`bpo-28368 `__: Refuse monitoring " +"processes if the child watcher has no loop attached. Patch by Vincent Michel." + +#: ../../build/NEWS:1473 ../../build/NEWS:2730 ../../build/NEWS:5875 +msgid "" +"`bpo-28369 `__: Raise RuntimeError when " +"transport's FD is used with add_reader, add_writer, etc." +msgstr "" +"`bpo-28369 `__: Raise RuntimeError when " +"transport's FD is used with add_reader, add_writer, etc." + +#: ../../build/NEWS:1476 ../../build/NEWS:2733 ../../build/NEWS:5878 +msgid "" +"`bpo-28370 `__: Speedup asyncio." +"StreamReader.readexactly. Patch by Коренберг Марк." +msgstr "" +"`bpo-28370 `__: Speedup asyncio." +"StreamReader.readexactly. Patch by Коренберг Марк." + +#: ../../build/NEWS:1479 ../../build/NEWS:2736 ../../build/NEWS:5881 +msgid "" +"`bpo-28371 `__: Deprecate passing " +"asyncio.Handles to run_in_executor." +msgstr "" +"`bpo-28371 `__: Deprecate passing " +"asyncio.Handles to run_in_executor." + +#: ../../build/NEWS:1481 ../../build/NEWS:2738 ../../build/NEWS:5883 +msgid "" +"`bpo-28372 `__: Fix asyncio to support " +"formatting of non-python coroutines." +msgstr "" +"`bpo-28372 `__: Fix asyncio to support " +"formatting of non-python coroutines." + +#: ../../build/NEWS:1483 ../../build/NEWS:2740 ../../build/NEWS:5885 +msgid "" +"`bpo-28399 `__: Remove UNIX socket from " +"FS before binding. Patch by Коренберг Марк." +msgstr "" +"`bpo-28399 `__: Remove UNIX socket from " +"FS before binding. Patch by Коренберг Марк." + +#: ../../build/NEWS:1486 ../../build/NEWS:2743 ../../build/NEWS:5888 +msgid "" +"`bpo-27972 `__: Prohibit Tasks to await " +"on themselves." +msgstr "" +"`bpo-27972 `__: Prohibit Tasks to await " +"on themselves." + +#: ../../build/NEWS:1491 +msgid "" +"`bpo-29581 `__: ABCMeta.__new__ now " +"accepts ``**kwargs``, allowing abstract base classes to use keyword " +"parameters in __init_subclass__. Patch by Nate Soares." +msgstr "" +"`bpo-29581 `__: ABCMeta.__new__ now " +"accepts ``**kwargs``, allowing abstract base classes to use keyword " +"parameters in __init_subclass__. Patch by Nate Soares." + +#: ../../build/NEWS:1495 +msgid "" +"`bpo-25532 `__: inspect.unwrap() will " +"now only try to unwrap an object sys.getrecursionlimit() times, to protect " +"against objects which create a new object on every attribute access." +msgstr "" + +#: ../../build/NEWS:1499 +msgid "" +"`bpo-30177 `__: path." +"resolve(strict=False) no longer cuts the path after the first element not " +"present in the filesystem. Patch by Antoine Pietri." +msgstr "" +"`bpo-30177 `__: path." +"resolve(strict=False) no longer cuts the path after the first element not " +"present in the filesystem. Patch by Antoine Pietri." + +#: ../../build/NEWS:1503 ../../build/NEWS:2149 ../../build/NEWS:2272 +#: ../../build/NEWS:2374 ../../build/NEWS:3746 ../../build/NEWS:4006 +#: ../../build/NEWS:5192 ../../build/NEWS:5954 ../../build/NEWS:6705 +#: ../../build/NEWS:7269 ../../build/NEWS:7521 ../../build/NEWS:7720 +#: ../../build/NEWS:8031 ../../build/NEWS:10230 +msgid "Documentation" +msgstr "Documentation" + +#: ../../build/NEWS:1505 +msgid "" +"`bpo-31294 `__: Fix incomplete code " +"snippet in the ZeroMQSocketListener and ZeroMQSocketHandler examples and " +"adapt them to Python 3." +msgstr "" + +#: ../../build/NEWS:1514 +msgid "" +"`bpo-30176 `__: Add missing attribute " +"related constants in curses documentation." +msgstr "" +"`bpo-30176 `__: Add missing attribute " +"related constants in curses documentation." + +#: ../../build/NEWS:1517 +msgid "" +"`bpo-30052 `__: the link targets for :" +"func:`bytes` and :func:`bytearray` are now their respective type " +"definitions, rather than the corresponding builtin function entries. Use :" +"ref:`bytes ` and :ref:`bytearray ` to reference " +"the latter." +msgstr "" +"`bpo-30052 `__: the link targets for :" +"func:`bytes` and :func:`bytearray` are now their respective type " +"definitions, rather than the corresponding builtin function entries. Use :" +"ref:`bytes ` and :ref:`bytearray ` to reference " +"the latter." + +#: ../../build/NEWS:1522 +msgid "" +"In order to ensure this and future cross-reference updates are applied " +"automatically, the daily documentation builds now disable the default output " +"caching features in Sphinx." +msgstr "" +"Pour s'assurer que les mises à jour des références croisées soient " +"appliquées automatiquement, la génération de documentations désactive le " +"cache par défaut de sphinx." + +#: ../../build/NEWS:1526 +msgid "" +"`bpo-26985 `__: Add missing info of code " +"object in inspect documentation." +msgstr "" +"`bpo-26985 `__: Add missing info of code " +"object in inspect documentation." + +#: ../../build/NEWS:1528 +msgid "" +"`bpo-19824 `__: Improve the " +"documentation for, and links to, template strings by emphasizing their " +"utility for internationalization, and by clarifying some usage constraints. " +"(See also: `bpo-20314 `__, `bpo-12518 " +"`__)" +msgstr "" + +#: ../../build/NEWS:1532 +msgid "" +"`bpo-28929 `__: Link the documentation " +"to its source file on GitHub." +msgstr "" +"`bpo-28929 `__: Link the documentation " +"to its source file on GitHub." + +#: ../../build/NEWS:1534 +msgid "" +"`bpo-25008 `__: Document smtpd.py as " +"effectively deprecated and add a pointer to aiosmtpd, a third-party asyncio-" +"based replacement." +msgstr "" +"`bpo-25008 `__: Document smtpd.py as " +"effectively deprecated and add a pointer to aiosmtpd, a third-party asyncio-" +"based replacement." + +#: ../../build/NEWS:1537 +msgid "" +"`bpo-26355 `__: Add canonical header " +"link on each page to corresponding major version of the documentation. Patch " +"by Matthias Bussonnier." +msgstr "" +"`bpo-26355 `__: Add canonical header " +"link on each page to corresponding major version of the documentation. Patch " +"by Matthias Bussonnier." + +#: ../../build/NEWS:1540 ../../build/NEWS:2151 +msgid "" +"`bpo-29349 `__: Fix Python 2 syntax in " +"code for building the documentation." +msgstr "" +"`bpo-29349 `__: Fix Python 2 syntax in " +"code for building the documentation." + +#: ../../build/NEWS:1547 ../../build/NEWS:2376 ../../build/NEWS:5956 +msgid "" +"`bpo-28513 `__: Documented command-line " +"interface of zipfile." +msgstr "" +"`bpo-28513 `__: Documented command-line " +"interface of zipfile." + +#: ../../build/NEWS:1550 ../../build/NEWS:2154 ../../build/NEWS:2379 +#: ../../build/NEWS:2516 ../../build/NEWS:2790 ../../build/NEWS:3220 +#: ../../build/NEWS:3492 ../../build/NEWS:3755 ../../build/NEWS:4018 +#: ../../build/NEWS:5210 ../../build/NEWS:5959 ../../build/NEWS:6080 +#: ../../build/NEWS:6728 ../../build/NEWS:7293 ../../build/NEWS:7536 +#: ../../build/NEWS:7713 ../../build/NEWS:8022 ../../build/NEWS:8251 +#: ../../build/NEWS:8461 ../../build/NEWS:10270 +msgid "Tests" +msgstr "Tests" + +#: ../../build/NEWS:1552 +msgid "" +"`bpo-29639 `__: test.support.HOST is now " +"\"localhost\", a new HOSTv4 constant has been added for your ``127.0.0.1`` " +"needs, similar to the existing HOSTv6 constant." +msgstr "" + +#: ../../build/NEWS:1560 +msgid "" +"`bpo-30715 `__: Address ALPN callback " +"changes for OpenSSL 1.1.0f. The latest version behaves like OpenSSL 1.0.2 " +"and no longer aborts handshake." +msgstr "" + +#: ../../build/NEWS:1563 +msgid "" +"`bpo-30822 `__: regrtest: Exclude tzdata " +"from regrtest --all. When running the test suite using --use=all / -u all, " +"exclude tzdata since it makes test_datetime too slow (15-20 min on some " +"buildbots) which then times out on some buildbots. Fix also regrtest command " +"line parser to allow passing -u extralargefile to run test_zipfile64." +msgstr "" + +#: ../../build/NEWS:1572 +msgid "" +"`bpo-30357 `__: test_thread: setUp() now " +"uses support.threading_setup() and support.threading_cleanup() to wait until " +"threads complete to avoid random side effects on following tests. Initial " +"patch written by Grzegorz Grzywacz." +msgstr "" +"`bpo-30357 `__: test_thread: setUp() now " +"uses support.threading_setup() and support.threading_cleanup() to wait until " +"threads complete to avoid random side effects on following tests. Initial " +"patch written by Grzegorz Grzywacz." + +#: ../../build/NEWS:1585 ../../build/NEWS:2156 +msgid "" +"`bpo-28950 `__: Disallow -j0 to be " +"combined with -T/-l in regrtest command line arguments." +msgstr "" +"`bpo-28950 `__: Disallow -j0 to be " +"combined with -T/-l in regrtest command line arguments." + +#: ../../build/NEWS:1588 ../../build/NEWS:2159 +msgid "" +"`bpo-28683 `__: Fix the tests that " +"bind() a unix socket and raise PermissionError on Android for a non-root " +"user." +msgstr "" +"`bpo-28683 `__: Fix the tests that " +"bind() a unix socket and raise PermissionError on Android for a non-root " +"user." + +#: ../../build/NEWS:1594 ../../build/NEWS:2381 ../../build/NEWS:5964 +msgid "" +"`bpo-28666 `__: Now test.support.rmtree " +"is able to remove unwritable or unreadable directories." +msgstr "" +"`bpo-28666 `__: Now test.support.rmtree " +"is able to remove unwritable or unreadable directories." + +#: ../../build/NEWS:1597 ../../build/NEWS:2384 ../../build/NEWS:5967 +msgid "" +"`bpo-23839 `__: Various caches now are " +"cleared before running every test file." +msgstr "" +"`bpo-23839 `__: Various caches now are " +"cleared before running every test file." + +#: ../../build/NEWS:1599 ../../build/NEWS:2518 +msgid "" +"`bpo-26944 `__: Fix test_posix for " +"Android where 'id -G' is entirely wrong or missing the effective gid." +msgstr "" +"`bpo-26944 `__: Fix test_posix for " +"Android where 'id -G' is entirely wrong or missing the effective gid." + +#: ../../build/NEWS:1602 ../../build/NEWS:2521 ../../build/NEWS:5969 +msgid "" +"`bpo-28409 `__: regrtest: fix the parser " +"of command line arguments." +msgstr "" +"`bpo-28409 `__: regrtest: fix the parser " +"of command line arguments." + +#: ../../build/NEWS:1604 ../../build/NEWS:2792 +msgid "" +"`bpo-28217 `__: Adds _testconsole module " +"to test console input." +msgstr "" +"`bpo-28217 `__: Adds _testconsole module " +"to test console input." + +#: ../../build/NEWS:1606 ../../build/NEWS:2162 +msgid "" +"`bpo-26939 `__: Add the support." +"setswitchinterval() function to fix test_functools hanging on the Android " +"armv7 qemu emulator." +msgstr "" +"`bpo-26939 `__: Add the support." +"setswitchinterval() function to fix test_functools hanging on the Android " +"armv7 qemu emulator." + +#: ../../build/NEWS:1610 ../../build/NEWS:2166 ../../build/NEWS:2216 +#: ../../build/NEWS:2387 ../../build/NEWS:2507 ../../build/NEWS:2779 +#: ../../build/NEWS:3234 ../../build/NEWS:3519 ../../build/NEWS:3716 +#: ../../build/NEWS:4035 ../../build/NEWS:5253 ../../build/NEWS:6005 +#: ../../build/NEWS:6751 ../../build/NEWS:7306 ../../build/NEWS:7366 +#: ../../build/NEWS:7383 ../../build/NEWS:7624 ../../build/NEWS:7729 +#: ../../build/NEWS:8242 ../../build/NEWS:8456 ../../build/NEWS:8592 +#: ../../build/NEWS:10121 +msgid "Build" +msgstr "Build" + +#: ../../build/NEWS:1617 +msgid "" +"This option is not really useful anymore in the 21st century. Removing lots " +"of conditional paths allows us to simplify the code base, including in " +"difficult to maintain low-level internal code." +msgstr "" + +#: ../../build/NEWS:1626 +msgid "" +"`bpo-30687 `__: Locate msbuild.exe on " +"Windows when building rather than vcvarsall.bat" +msgstr "" +"`bpo-30687 `__: Locate msbuild.exe on " +"Windows when building rather than vcvarsall.bat" + +#: ../../build/NEWS:1629 +msgid "" +"`bpo-20210 `__: Support the *disabled* " +"marker in Setup files. Extension modules listed after this marker are not " +"built at all, neither by the Makefile nor by setup.py." +msgstr "" + +#: ../../build/NEWS:1644 +msgid "" +"`bpo-23404 `__: Don't regenerate " +"generated files based on file modification time anymore: the action is now " +"explicit. Replace ``make touch`` with ``make regen-all``." +msgstr "" +"`bpo-23404 `__: Don't regenerate " +"generated files based on file modification time anymore: the action is now " +"explicit. Replace ``make touch`` with ``make regen-all``." + +#: ../../build/NEWS:1648 +msgid "" +"`bpo-29643 `__: Fix ``--enable-" +"optimization`` didn't work." +msgstr "" +"`bpo-29643 `__: Fix ``--enable-" +"optimization`` didn't work." + +#: ../../build/NEWS:1650 +msgid "" +"`bpo-27593 `__: sys.version and the " +"platform module python_build(), python_branch(), and python_revision() " +"functions now use git information rather than hg when building from a repo." +msgstr "" +"`bpo-27593 `__: sys.version and the " +"platform module python_build(), python_branch(), and python_revision() " +"functions now use git information rather than hg when building from a repo." + +#: ../../build/NEWS:1654 +msgid "" +"`bpo-29572 `__: Update Windows build and " +"OS X installers to use OpenSSL 1.0.2k." +msgstr "" +"`bpo-29572 `__: Update Windows build and " +"OS X installers to use OpenSSL 1.0.2k." + +#: ../../build/NEWS:1656 +msgid "" +"`bpo-27659 `__: Prohibit implicit C " +"function declarations: use -Werror=implicit-function- declaration when " +"possible (GCC and Clang, but it depends on the compiler version). Patch " +"written by Chi Hsuan Yen." +msgstr "" + +#: ../../build/NEWS:1662 +msgid "" +"`bpo-26851 `__: Set Android compilation " +"and link flags." +msgstr "" +"`bpo-26851 `__: Set Android compilation " +"and link flags." + +#: ../../build/NEWS:1664 +msgid "" +"`bpo-28768 `__: Fix implicit declaration " +"of function _setmode. Patch by Masayuki Yamamoto" +msgstr "" +"`bpo-28768 `__: Fix implicit declaration " +"of function _setmode. Patch by Masayuki Yamamoto" + +#: ../../build/NEWS:1667 ../../build/NEWS:6007 +msgid "" +"`bpo-29080 `__: Removes hard dependency " +"on hg.exe from PCBuild/build.bat" +msgstr "" +"`bpo-29080 `__: Removes hard dependency " +"on hg.exe from PCBuild/build.bat" + +#: ../../build/NEWS:1669 ../../build/NEWS:6009 +msgid "" +"`bpo-23903 `__: Added missed names to PC/" +"python3.def." +msgstr "" +"`bpo-23903 `__: Added missed names to PC/" +"python3.def." + +#: ../../build/NEWS:1671 ../../build/NEWS:2168 +msgid "" +"`bpo-28762 `__: lockf() is available on " +"Android API level 24, but the F_LOCK macro is not defined in android-ndk-r13." +msgstr "" +"`bpo-28762 `__: lockf() is available on " +"Android API level 24, but the F_LOCK macro is not defined in android-ndk-r13." + +#: ../../build/NEWS:1674 ../../build/NEWS:2171 +msgid "" +"`bpo-28538 `__: Fix the compilation " +"error that occurs because if_nameindex() is available on Android API level " +"24, but the if_nameindex structure is not defined." +msgstr "" +"`bpo-28538 `__: Fix the compilation " +"error that occurs because if_nameindex() is available on Android API level " +"24, but the if_nameindex structure is not defined." + +#: ../../build/NEWS:1678 ../../build/NEWS:2175 +msgid "" +"`bpo-20211 `__: Do not add the directory " +"for installing C header files and the directory for installing object code " +"libraries to the cross compilation search paths. Original patch by Thomas " +"Petazzoni." +msgstr "" +"`bpo-20211 `__: Do not add the directory " +"for installing C header files and the directory for installing object code " +"libraries to the cross compilation search paths. Original patch by Thomas " +"Petazzoni." + +#: ../../build/NEWS:1682 ../../build/NEWS:2179 +msgid "" +"`bpo-28849 `__: Do not define sys." +"implementation._multiarch on Android." +msgstr "" +"`bpo-28849 `__: Do not define sys." +"implementation._multiarch on Android." + +#: ../../build/NEWS:1684 ../../build/NEWS:2389 ../../build/NEWS:6011 +msgid "" +"`bpo-10656 `__: Fix out-of-tree building " +"on AIX. Patch by Tristan Carel and Michael Haubenwallner." +msgstr "" +"`bpo-10656 `__: Fix out-of-tree building " +"on AIX. Patch by Tristan Carel and Michael Haubenwallner." + +#: ../../build/NEWS:1687 ../../build/NEWS:2392 ../../build/NEWS:6014 +msgid "" +"`bpo-26359 `__: Rename --with-" +"optimiations to --enable-optimizations." +msgstr "" +"`bpo-26359 `__: Rename --with-" +"optimiations to --enable-optimizations." + +#: ../../build/NEWS:1689 ../../build/NEWS:2509 ../../build/NEWS:6016 +msgid "" +"`bpo-28444 `__: Fix missing extensions " +"modules when cross compiling." +msgstr "" +"`bpo-28444 `__: Fix missing extensions " +"modules when cross compiling." + +#: ../../build/NEWS:1691 ../../build/NEWS:2511 +msgid "" +"`bpo-28208 `__: Update Windows build and " +"OS X installers to use SQLite 3.14.2." +msgstr "" +"`bpo-28208 `__: Update Windows build and " +"OS X installers to use SQLite 3.14.2." + +#: ../../build/NEWS:1693 ../../build/NEWS:2513 ../../build/NEWS:6018 +msgid "" +"`bpo-28248 `__: Update Windows build and " +"OS X installers to use OpenSSL 1.0.2j." +msgstr "" +"`bpo-28248 `__: Update Windows build and " +"OS X installers to use OpenSSL 1.0.2j." + +#: ../../build/NEWS:1702 +msgid "" +"`bpo-21085 `__: Add configure check for " +"siginfo_t.si_band, which Cygwin does not provide. Patch by Masayuki Yamamoto " +"with review and rebase by Erik Bray." +msgstr "" + +#: ../../build/NEWS:1706 ../../build/NEWS:2781 ../../build/NEWS:6020 +msgid "" +"`bpo-28258 `__: Fixed build with " +"Estonian locale (python-config and distclean targets in Makefile). Patch by " +"Arfrever Frehtes Taifersar Arahesis." +msgstr "" +"`bpo-28258 `__: Fixed build with " +"Estonian locale (python-config and distclean targets in Makefile). Patch by " +"Arfrever Frehtes Taifersar Arahesis." + +#: ../../build/NEWS:1709 ../../build/NEWS:2784 ../../build/NEWS:6023 +msgid "" +"`bpo-26661 `__: setup.py now detects " +"system libffi with multiarch wrapper." +msgstr "" +"`bpo-26661 `__: setup.py now detects " +"system libffi with multiarch wrapper." + +#: ../../build/NEWS:1715 ../../build/NEWS:2786 ../../build/NEWS:6028 +msgid "" +"`bpo-15819 `__: Remove redundant include " +"search directory option for building outside the source tree." +msgstr "" +"`bpo-15819 `__: Remove redundant include " +"search directory option for building outside the source tree." + +#: ../../build/NEWS:1718 ../../build/NEWS:2394 ../../build/NEWS:6065 +msgid "" +"`bpo-28676 `__: Prevent missing " +"'getentropy' declaration warning on macOS. Patch by Gareth Rees." +msgstr "" +"`bpo-28676 `__: Prevent missing " +"'getentropy' declaration warning on macOS. Patch by Gareth Rees." + +#: ../../build/NEWS:1722 ../../build/NEWS:2133 ../../build/NEWS:2211 +#: ../../build/NEWS:2502 ../../build/NEWS:2746 ../../build/NEWS:3276 +#: ../../build/NEWS:3507 ../../build/NEWS:4028 ../../build/NEWS:4044 +#: ../../build/NEWS:5316 ../../build/NEWS:5990 ../../build/NEWS:6810 +#: ../../build/NEWS:6842 ../../build/NEWS:6860 ../../build/NEWS:7317 +#: ../../build/NEWS:8606 ../../build/NEWS:10417 +msgid "Windows" +msgstr "Windows" + +#: ../../build/NEWS:1728 +msgid "" +"`bpo-31358 `__: zlib is no longer " +"bundled in the CPython source, instead it is downloaded on demand just like " +"bz2, lzma, OpenSSL, Tcl/Tk, and SQLite." +msgstr "" + +#: ../../build/NEWS:1752 +msgid "" +"`bpo-30450 `__: The build process on " +"Windows no longer depends on Subversion, instead pulling external code from " +"GitHub via a Python script. If Python 3.6 is not found on the system (via " +"``py -3.6``), NuGet is used to download a copy of 32-bit Python." +msgstr "" +"`bpo-30450 `__: The build process on " +"Windows no longer depends on Subversion, instead pulling external code from " +"GitHub via a Python script. If Python 3.6 is not found on the system (via " +"``py -3.6``), NuGet is used to download a copy of 32-bit Python." + +#: ../../build/NEWS:1759 ../../build/NEWS:2144 +msgid "" +"`bpo-25778 `__: winreg does not truncate " +"string correctly (Patch by Eryk Sun)" +msgstr "" +"`bpo-25778 `__: winreg does not truncate " +"string correctly (Patch by Eryk Sun)" + +#: ../../build/NEWS:1763 ../../build/NEWS:2504 +msgid "" +"`bpo-28522 `__: Fixes mishandled buffer " +"reallocation in getpathp.c" +msgstr "" +"`bpo-28522 `__: Fixes mishandled buffer " +"reallocation in getpathp.c" + +#: ../../build/NEWS:1765 ../../build/NEWS:2748 +msgid "" +"`bpo-28402 `__: Adds signed catalog " +"files for stdlib on Windows." +msgstr "" +"`bpo-28402 `__: Adds signed catalog " +"files for stdlib on Windows." + +#: ../../build/NEWS:1767 ../../build/NEWS:2750 +msgid "" +"`bpo-28333 `__: Enables Unicode for ps1/" +"ps2 and input() prompts. (Patch by Eryk Sun)" +msgstr "" +"`bpo-28333 `__: Enables Unicode for ps1/" +"ps2 and input() prompts. (Patch by Eryk Sun)" + +#: ../../build/NEWS:1770 ../../build/NEWS:2753 ../../build/NEWS:5992 +msgid "" +"`bpo-28251 `__: Improvements to help " +"manuals on Windows." +msgstr "" +"`bpo-28251 `__: Improvements to help " +"manuals on Windows." + +#: ../../build/NEWS:1772 ../../build/NEWS:2755 ../../build/NEWS:5994 +msgid "" +"`bpo-28110 `__: launcher.msi has " +"different product codes between 32-bit and 64-bit" +msgstr "" +"`bpo-28110 `__: launcher.msi has " +"different product codes between 32-bit and 64-bit" + +#: ../../build/NEWS:1775 ../../build/NEWS:2758 +msgid "" +"`bpo-28161 `__: Opening CON for write " +"access fails" +msgstr "" +"`bpo-28161 `__: Opening CON for write " +"access fails" + +#: ../../build/NEWS:1777 ../../build/NEWS:2760 +msgid "" +"`bpo-28162 `__: WindowsConsoleIO " +"readall() fails if first line starts with Ctrl+Z" +msgstr "" +"`bpo-28162 `__: WindowsConsoleIO " +"readall() fails if first line starts with Ctrl+Z" + +#: ../../build/NEWS:1780 ../../build/NEWS:2763 +msgid "" +"`bpo-28163 `__: WindowsConsoleIO " +"fileno() passes wrong flags to _open_osfhandle" +msgstr "" +"`bpo-28163 `__: WindowsConsoleIO " +"fileno() passes wrong flags to _open_osfhandle" + +#: ../../build/NEWS:1782 ../../build/NEWS:2765 +msgid "" +"`bpo-28164 `__: _PyIO_get_console_type " +"fails for various paths" +msgstr "" +"`bpo-28164 `__: _PyIO_get_console_type " +"fails for various paths" + +#: ../../build/NEWS:1784 ../../build/NEWS:2767 +msgid "" +"`bpo-28137 `__: Renames Windows path " +"file to ._pth" +msgstr "" +"`bpo-28137 `__: Renames Windows path " +"file to ._pth" + +#: ../../build/NEWS:1786 ../../build/NEWS:2769 +msgid "" +"`bpo-28138 `__: Windows ._pth file " +"should allow import site" +msgstr "" +"`bpo-28138 `__: Windows ._pth file " +"should allow import site" + +#: ../../build/NEWS:1789 ../../build/NEWS:3191 ../../build/NEWS:3463 +#: ../../build/NEWS:3674 ../../build/NEWS:3944 ../../build/NEWS:5082 +#: ../../build/NEWS:5917 ../../build/NEWS:6085 ../../build/NEWS:6652 +#: ../../build/NEWS:7172 ../../build/NEWS:7505 ../../build/NEWS:8016 +#: ../../build/NEWS:10039 +msgid "IDLE" +msgstr "IDLE" + +#: ../../build/NEWS:1796 +msgid "" +"Move some data and functions from the class to module level. Patch by Cheryl " +"Sabella." +msgstr "" + +#: ../../build/NEWS:1803 +msgid "" +"About 10 IDLE features were implemented as supposedly optional extensions. " +"Their different behavior could be confusing or worse for users and not good " +"for maintenance. Hence the conversion." +msgstr "" + +#: ../../build/NEWS:1807 +msgid "" +"The main difference for users is that user configurable key bindings for " +"builtin features are now handled uniformly. Now, editing a binding in a " +"keyset only affects its value in the keyset. All bindings are defined " +"together in the system-specific default keysets in config- extensions.def. " +"All custom keysets are saved as a whole in config- extension.cfg. All take " +"effect as soon as one clicks Apply or Ok." +msgstr "" + +#: ../../build/NEWS:1814 +msgid "" +"The affected events are '<>', '<>', " +"'<>', '<>', '<>', '<>', '<>', and '<>'. Any (global) " +"customizations made before 3.6.3 will not affect their keyset- specific " +"customization after 3.6.3. and vice versa." +msgstr "" + +#: ../../build/NEWS:1820 +msgid "Inital patch by Charles Wohlganger." +msgstr "" + +#: ../../build/NEWS:1828 +msgid "" +"`bpo-31205 `__: IDLE: Factor " +"KeysPage(Frame) class from ConfigDialog. The slightly modified tests " +"continue to pass. Patch by Cheryl Sabella." +msgstr "" + +#: ../../build/NEWS:1836 +msgid "" +"`bpo-19903 `__: IDLE: Calltips use " +"`inspect.signature` instead of `inspect.getfullargspec`. This improves " +"calltips for builtins converted to use Argument Clinic. Patch by Louie Lu." +msgstr "" + +#: ../../build/NEWS:1848 +msgid "" +"Slightly modified tests continue to pass. Fix General tests. Patch mostly by " +"Cheryl Sabella." +msgstr "" + +#: ../../build/NEWS:1854 +msgid "" +"`bpo-31060 `__: IDLE - Finish " +"rearranging methods of ConfigDialog Grouping methods pertaining to each tab " +"and the buttons will aid writing tests and improving the tabs and will " +"enable splitting the groups into classes." +msgstr "" + +#: ../../build/NEWS:1860 +msgid "" +"Instance tracers manages pairs consisting of a tk variable and a callback " +"function. When tracing is turned on, setting the variable calls the " +"function. Test coverage for the new class is 100%." +msgstr "" + +#: ../../build/NEWS:1868 +msgid "" +"In configdialog: Document causal pathways in create_font_tab docstring. " +"Simplify some attribute names. Move set_samples calls to var_changed_font " +"(idea from Cheryl Sabella). Move related functions to positions after the " +"create widgets function." +msgstr "" + +#: ../../build/NEWS:1873 +msgid "" +"In test_configdialog: Fix test_font_set so not order dependent. Fix renamed " +"test_indent_scale so it tests the widget. Adjust tests for movement of " +"set_samples call. Add tests for load functions. Put all font tests in one " +"class and tab indent tests in another. Except for two lines, these tests " +"completely cover the related functions." +msgstr "" + +#: ../../build/NEWS:1888 +msgid "Add section to idlelib/idle-test/README.txt." +msgstr "" + +#: ../../build/NEWS:1890 +msgid "Include check that branches are taken both ways." +msgstr "" + +#: ../../build/NEWS:1892 +msgid "Exclude IDLE-specific code that does not run during unit tests." +msgstr "" + +#: ../../build/NEWS:1894 +msgid "" +"`bpo-30913 `__: IDLE: Document " +"ConfigDialog tk Vars, methods, and widgets in docstrings This will " +"facilitate improving the dialog and splitting up the class. Original patch " +"by Cheryl Sabella." +msgstr "" + +#: ../../build/NEWS:1912 +msgid "" +"`bpo-30779 `__: IDLE: Factor " +"ConfigChanges class from configdialog, put in config; test. * In config, put " +"dump test code in a function; run it and unittest in 'if __name__ == " +"'__main__'. * Add class config.ConfigChanges based on changes_class_v4.py on " +"bpo issue. * Add class test_config.ChangesTest, partly using " +"configdialog_tests_v1.py. * Revise configdialog to use ConfigChanges; see " +"tracker msg297804. * Revise test_configdialog to match configdialog changes. " +"* Remove configdialog functions unused or moved to ConfigChanges. Cheryl " +"Sabella contributed parts of the patch." +msgstr "" + +#: ../../build/NEWS:1928 +msgid "" +"`bpo-30723 `__: IDLE: Make several " +"improvements to parenmatch. Add 'parens' style to highlight both opener and " +"closer. Make 'default' style, which is not default, a synonym for 'opener'. " +"Make time-delay work the same with all styles. Add help for config dialog " +"extensions tab, including help for parenmatch. Add new tests. Original " +"patch by Charles Wohlganger." +msgstr "" + +#: ../../build/NEWS:1939 +msgid "" +"`bpo-29910 `__: IDLE no longer deletes a " +"character after commenting out a region by a key shortcut. Add ``return " +"'break'`` for this and other potential conflicts between IDLE and default " +"key bindings." +msgstr "" + +#: ../../build/NEWS:1943 +msgid "" +"`bpo-30728 `__: Review and change " +"idlelib.configdialog names. Lowercase method and attribute names. Replace " +"'colour' with 'color', expand overly cryptic names, delete unneeded " +"underscores. Replace ``import *`` with specific imports. Patches by Cheryl " +"Sabella." +msgstr "" + +#: ../../build/NEWS:1948 +msgid "" +"`bpo-6739 `__: IDLE: Verify user-entered " +"key sequences by trying to bind them with tk. Add tests for all 3 validation " +"functions. Original patch by G Polo. Tests added by Cheryl Sabella." +msgstr "" + +#: ../../build/NEWS:1952 +msgid "" +"`bpo-15786 `__: Fix several problems " +"with IDLE's autocompletion box. The following should now work: clicking on " +"selection box items; using the scrollbar; selecting an item by hitting " +"Return. Hangs on MacOSX should no longer happen. Patch by Louie Lu." +msgstr "" +"`bpo-15786 `__: Fix several problems " +"with IDLE's autocompletion box. The following should now work: clicking on " +"selection box items; using the scrollbar; selecting an item by hitting " +"Return. Hangs on MacOSX should no longer happen. Patch by Louie Lu." + +#: ../../build/NEWS:1960 +msgid "" +"`bpo-30642 `__: Fix reference leaks in " +"IDLE tests. Patches by Louie Lu and Terry Jan Reedy." +msgstr "" +"`bpo-30642 `__: Fix reference leaks in " +"IDLE tests. Patches by Louie Lu and Terry Jan Reedy." + +#: ../../build/NEWS:1963 +msgid "" +"`bpo-30495 `__: Add docstrings for " +"textview.py and use PEP8 names. Patches by Cheryl Sabella and Terry Jan " +"Reedy." +msgstr "" +"`bpo-30495 `__: Add docstrings for " +"textview.py and use PEP8 names. Patches by Cheryl Sabella and Terry Jan " +"Reedy." + +#: ../../build/NEWS:1966 +msgid "" +"`bpo-30290 `__: Help-about: use pep8 " +"names and add tests. Increase coverage to 100%. Patches by Louie Lu, Cheryl " +"Sabella, and Terry Jan Reedy." +msgstr "" +"`bpo-30290 `__: Help-about: use pep8 " +"names and add tests. Increase coverage to 100%. Patches by Louie Lu, Cheryl " +"Sabella, and Terry Jan Reedy." + +#: ../../build/NEWS:1969 +msgid "" +"`bpo-30303 `__: Add _utest option to " +"textview; add new tests. Increase coverage to 100%. Patches by Louie Lu and " +"Terry Jan Reedy." +msgstr "" +"`bpo-30303 `__: Add _utest option to " +"textview; add new tests. Increase coverage to 100%. Patches by Louie Lu and " +"Terry Jan Reedy." + +#: ../../build/NEWS:1972 +msgid "" +"`bpo-29071 `__: IDLE colors f-string " +"prefixes (but not invalid ur prefixes)." +msgstr "" +"`bpo-29071 `__: IDLE colors f-string " +"prefixes (but not invalid ur prefixes)." + +#: ../../build/NEWS:1974 +msgid "" +"`bpo-28572 `__: Add 10% to coverage of " +"IDLE's test_configdialog. Update and augment description of the " +"configuration system." +msgstr "" +"`bpo-28572 `__: Add 10% to coverage of " +"IDLE's test_configdialog. Update and augment description of the " +"configuration system." + +#: ../../build/NEWS:1978 ../../build/NEWS:2206 ../../build/NEWS:2279 +#: ../../build/NEWS:3269 ../../build/NEWS:3738 ../../build/NEWS:4058 +#: ../../build/NEWS:5334 ../../build/NEWS:5978 ../../build/NEWS:6826 +#: ../../build/NEWS:7355 ../../build/NEWS:8041 ../../build/NEWS:8260 +#: ../../build/NEWS:8468 ../../build/NEWS:10378 +msgid "Tools/Demos" +msgstr "Outils / Démos" + +#: ../../build/NEWS:1980 +msgid "" +"`bpo-30983 `__: gdb integration commands " +"(py-bt, etc.) work on optimized shared builds now, too. PEP 523 introduced " +"_PyEval_EvalFrameDefault which inlines PyEval_EvalFrameEx on non-debug " +"shared builds. This broke the ability to use py-bt, py-up, and a few other " +"Python-specific gdb integrations. The problem is fixed by only looking for " +"_PyEval_EvalFrameDefault frames in python-gdb.py. Original patch by Bruno " +"\"Polaco\" Penteado." +msgstr "" + +#: ../../build/NEWS:1990 +msgid "" +"`bpo-24037 `__: Argument Clinic now uses " +"the converter `bool(accept={int})` rather than `int` for semantical " +"booleans. This avoids repeating the default value for Python and C and will " +"help in converting to `bool` in future." +msgstr "" + +#: ../../build/NEWS:1995 +msgid "" +"`bpo-29367 `__: python-gdb.py now " +"supports also ``method-wrapper`` (``wrapperobject``) objects." +msgstr "" +"`bpo-29367 `__: python-gdb.py now " +"supports also ``method-wrapper`` (``wrapperobject``) objects." + +#: ../../build/NEWS:1998 ../../build/NEWS:2281 +msgid "" +"`bpo-28023 `__: Fix python-gdb.py didn't " +"support new dict implementation." +msgstr "" +"`bpo-28023 `__: Fix python-gdb.py didn't " +"support new dict implementation." + +#: ../../build/NEWS:2000 +msgid "" +"`bpo-15369 `__: The pybench and pystone " +"microbenchmark have been removed from Tools. Please use the new Python " +"benchmark suite https://github.com/python/performance which is more reliable " +"and includes a portable version of pybench working on Python 2 and Python 3." +msgstr "" + +#: ../../build/NEWS:2009 ../../build/NEWS:2267 ../../build/NEWS:2772 +#: ../../build/NEWS:3211 ../../build/NEWS:3709 ../../build/NEWS:4050 +#: ../../build/NEWS:5355 ../../build/NEWS:5945 ../../build/NEWS:8284 +#: ../../build/NEWS:8600 ../../build/NEWS:10201 +msgid "C API" +msgstr "API C" + +#: ../../build/NEWS:2013 +msgid "" +"CPython has provided the own implementation for thread-local storage (TLS) " +"on Python/thread.c, it's used in the case which a platform has not supplied " +"native TLS. However, currently all supported platforms (Windows and " +"pthreads) have provided native TLS and defined the Py_HAVE_NATIVE_TLS macro " +"with unconditional in any case." +msgstr "" + +#: ../../build/NEWS:2022 +msgid "" +"`bpo-16500 `__: Deprecate " +"PyOS_AfterFork() and add PyOS_BeforeFork(), PyOS_AfterFork_Parent() and " +"PyOS_AfterFork_Child()." +msgstr "" + +#: ../../build/NEWS:2025 +msgid "" +"`bpo-6532 `__: The type of results of " +"PyThread_start_new_thread() and PyThread_get_thread_ident(), and the id " +"parameter of PyThreadState_SetAsyncExc() changed from \"long\" to \"unsigned " +"long\"." +msgstr "" + +#: ../../build/NEWS:2043 +msgid "" +"`bpo-29058 `__: All stable API " +"extensions added after Python 3.2 are now available only when Py_LIMITED_API " +"is set to the PY_VERSION_HEX value of the minimum Python version supporting " +"this API." +msgstr "" +"`bpo-29058 `__: All stable API " +"extensions added after Python 3.2 are now available only when Py_LIMITED_API " +"is set to the PY_VERSION_HEX value of the minimum Python version supporting " +"this API." + +#: ../../build/NEWS:2047 +msgid "" +"`bpo-28822 `__: The index parameters " +"*start* and *end* of PyUnicode_FindChar() are now adjusted to behave like " +"``str[start:end]``." +msgstr "" + +#: ../../build/NEWS:2050 ../../build/NEWS:2269 ../../build/NEWS:5947 +msgid "" +"`bpo-28808 `__: " +"PyUnicode_CompareWithASCIIString() now never raises exceptions." +msgstr "" +"`bpo-28808 `__: " +"PyUnicode_CompareWithASCIIString() now never raises exceptions." + +#: ../../build/NEWS:2052 +msgid "" +"`bpo-28761 `__: The fields name and doc " +"of structures PyMemberDef, PyGetSetDef, PyStructSequence_Field, " +"PyStructSequence_Desc, and wrapperbase are now of type ``const char *`` " +"rather of ``char *``." +msgstr "" + +#: ../../build/NEWS:2062 ../../build/NEWS:2774 +msgid "" +"`bpo-28426 `__: Deprecated undocumented " +"functions PyUnicode_AsEncodedObject(), PyUnicode_AsDecodedObject(), " +"PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode()." +msgstr "" +"`bpo-28426 `__: Deprecated undocumented " +"functions PyUnicode_AsEncodedObject(), PyUnicode_AsDecodedObject(), " +"PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode()." + +#: ../../build/NEWS:2068 +msgid "Python 3.6.1 release candidate 1" +msgstr "Python 3.6.1 release candidate 1" + +#: ../../build/NEWS:2105 +msgid "" +"`bpo-29085 `__: Allow random.Random." +"seed() to use high quality OS randomness rather than the pid and time." +msgstr "" +"`bpo-29085 `__: Allow random.Random." +"seed() to use high quality OS randomness rather than the pid and time." + +#: ../../build/NEWS:2125 ../../build/NEWS:5548 +msgid "" +"`bpo-28847 `__: dbm.dumb now supports " +"reading read-only files and no longer writes the index file when it is not " +"changed." +msgstr "" +"`bpo-28847 `__: dbm.dumb now supports " +"reading read-only files and no longer writes the index file when it is not " +"changed." + +#: ../../build/NEWS:2135 +msgid "" +"`bpo-29326 `__: Ignores blank lines in ." +"_pth files (Patch by Alexey Izbyshev)" +msgstr "" +"`bpo-29326 `__: Ignores blank lines in ." +"_pth files (Patch by Alexey Izbyshev)" + +#: ../../build/NEWS:2137 +msgid "" +"`bpo-28164 `__: Correctly handle special " +"console filenames (patch by Eryk Sun)" +msgstr "" +"`bpo-28164 `__: Correctly handle special " +"console filenames (patch by Eryk Sun)" + +#: ../../build/NEWS:2139 +msgid "" +"`bpo-29409 `__: Implement PEP 529 for io." +"FileIO (Patch by Eryk Sun)" +msgstr "" +"`bpo-29409 `__: Implement PEP 529 for io." +"FileIO (Patch by Eryk Sun)" + +#: ../../build/NEWS:2141 +msgid "" +"`bpo-29392 `__: Prevent crash when " +"passing invalid arguments into msvcrt module." +msgstr "" +"`bpo-29392 `__: Prevent crash when " +"passing invalid arguments into msvcrt module." + +#: ../../build/NEWS:2146 +msgid "" +"`bpo-28896 `__: Deprecate " +"WindowsRegistryFinder and disable it by default." +msgstr "" +"`bpo-28896 `__: Deprecate " +"WindowsRegistryFinder and disable it by default." + +#: ../../build/NEWS:2185 +msgid "*Release date: 2016-12-23*" +msgstr "*Date de sortie : 2016-12-23*" + +#: ../../build/NEWS:2187 +msgid "No changes since release candidate 2" +msgstr "Aucun changement depuis la seconde *release candidate*" + +#: ../../build/NEWS:2192 +msgid "Python 3.6.0 release candidate 2" +msgstr "Python 3.6.0 release candidate 2" + +#: ../../build/NEWS:2194 +msgid "*Release date: 2016-12-16*" +msgstr "*Date de sortie : 2016-12-16*" + +#: ../../build/NEWS:2202 +msgid "" +"`bpo-28990 `__: Fix asyncio SSL hanging " +"if connection is closed before handshake is completed. (Patch by HoHo-Ho)" +msgstr "" +"`bpo-28990 `__: Fix asyncio SSL hanging " +"if connection is closed before handshake is completed. (Patch by HoHo-Ho)" + +#: ../../build/NEWS:2208 +msgid "" +"`bpo-28770 `__: Fix python-gdb.py for " +"fastcalls." +msgstr "" +"`bpo-28770 `__: Fix python-gdb.py for " +"fastcalls." + +#: ../../build/NEWS:2213 +msgid "" +"`bpo-28896 `__: Deprecate " +"WindowsRegistryFinder." +msgstr "" +"`bpo-28896 `__: Deprecate " +"WindowsRegistryFinder." + +#: ../../build/NEWS:2218 +msgid "" +"`bpo-28898 `__: Prevent gdb build errors " +"due to HAVE_LONG_LONG redefinition." +msgstr "" +"`bpo-28898 `__: Prevent gdb build errors " +"due to HAVE_LONG_LONG redefinition." + +#: ../../build/NEWS:2222 +msgid "Python 3.6.0 release candidate 1" +msgstr "Python 3.6.0 release candidate 1" + +#: ../../build/NEWS:2224 +msgid "*Release date: 2016-12-06*" +msgstr "*Date de sortie : 2016-12-06*" + +#: ../../build/NEWS:2246 +msgid "" +"`bpo-27030 `__: Unknown escapes in re." +"sub() replacement template are allowed again. But they still are deprecated " +"and will be disabled in 3.7." +msgstr "" +"`bpo-27030 `__: Unknown escapes in re." +"sub() replacement template are allowed again. But they still are deprecated " +"and will be disabled in 3.7." + +#: ../../build/NEWS:2264 +msgid "" +"`bpo-28843 `__: Fix asyncio C Task to " +"handle exceptions __traceback__." +msgstr "" +"`bpo-28843 `__: Fix asyncio C Task to " +"handle exceptions __traceback__." + +#: ../../build/NEWS:2274 +msgid "" +"`bpo-23722 `__: The data model reference " +"and the porting section in the What's New guide now cover the additional " +"``__classcell__`` handling needed for custom metaclasses to fully support " +"PEP 487 and zero-argument ``super()``." +msgstr "" +"`bpo-23722 `__: The data model reference " +"and the porting section in the What's New guide now cover the additional " +"``__classcell__`` handling needed for custom metaclasses to fully support " +"PEP 487 and zero-argument ``super()``." + +#: ../../build/NEWS:2285 +msgid "Python 3.6.0 beta 4" +msgstr "Python 3.6.0 beta 4" + +#: ../../build/NEWS:2287 +msgid "*Release date: 2016-11-21*" +msgstr "*Date de sortie : 2016-11-21*" + +#: ../../build/NEWS:2315 +msgid "" +"`bpo-27243 `__: Change " +"PendingDeprecationWarning -> DeprecationWarning. As it was agreed in the " +"issue, __aiter__ returning an awaitable should result in " +"PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6." +msgstr "" +"`bpo-27243 `__: Change " +"PendingDeprecationWarning -> DeprecationWarning. As it was agreed in the " +"issue, __aiter__ returning an awaitable should result in " +"PendingDeprecationWarning in 3.5 and in DeprecationWarning in 3.6." + +#: ../../build/NEWS:2334 +msgid "" +"`bpo-20572 `__: The subprocess.Popen." +"wait method's undocumented endtime parameter now raises a DeprecationWarning." +msgstr "" +"`bpo-20572 `__: The subprocess.Popen." +"wait method's undocumented endtime parameter now raises a DeprecationWarning." + +#: ../../build/NEWS:2351 +msgid "" +"`bpo-28600 `__: Optimize loop.call_soon." +msgstr "" +"`bpo-28600 `__: Optimize loop.call_soon." + +#: ../../build/NEWS:2353 ../../build/NEWS:5898 +msgid "" +"`bpo-28613 `__: Fix get_event_loop() " +"return the current loop if called from coroutines/callbacks." +msgstr "" +"`bpo-28613 `__: Fix get_event_loop() " +"return the current loop if called from coroutines/callbacks." + +#: ../../build/NEWS:2356 +msgid "" +"`bpo-28634 `__: Fix asyncio.isfuture() " +"to support unittest.Mock." +msgstr "" +"`bpo-28634 `__: Fix asyncio.isfuture() " +"to support unittest.Mock." + +#: ../../build/NEWS:2358 +msgid "" +"`bpo-26081 `__: Fix refleak in _asyncio." +"Future.__iter__().throw." +msgstr "" +"`bpo-26081 `__: Fix refleak in _asyncio." +"Future.__iter__().throw." + +#: ../../build/NEWS:2360 ../../build/NEWS:5901 +msgid "" +"`bpo-28639 `__: Fix inspect.isawaitable " +"to always return bool Patch by Justin Mayfield." +msgstr "" +"`bpo-28639 `__: Fix inspect.isawaitable " +"to always return bool Patch by Justin Mayfield." + +#: ../../build/NEWS:2363 ../../build/NEWS:5904 +msgid "" +"`bpo-28652 `__: Make loop methods reject " +"socket kinds they do not support." +msgstr "" +"`bpo-28652 `__: Make loop methods reject " +"socket kinds they do not support." + +#: ../../build/NEWS:2365 ../../build/NEWS:5906 +msgid "" +"`bpo-28653 `__: Fix a refleak in " +"functools.lru_cache." +msgstr "" +"`bpo-28653 `__: Fix a refleak in " +"functools.lru_cache." + +#: ../../build/NEWS:2367 ../../build/NEWS:5908 +msgid "" +"`bpo-28703 `__: Fix asyncio." +"iscoroutinefunction to handle Mock objects." +msgstr "" +"`bpo-28703 `__: Fix asyncio." +"iscoroutinefunction to handle Mock objects." + +#: ../../build/NEWS:2369 +msgid "" +"`bpo-28704 `__: Fix create_unix_server " +"to support Path-like objects (PEP 519)." +msgstr "" +"`bpo-28704 `__: Fix create_unix_server " +"to support Path-like objects (PEP 519)." + +#: ../../build/NEWS:2371 +msgid "" +"`bpo-28720 `__: Add collections.abc." +"AsyncGenerator." +msgstr "" +"`bpo-28720 `__: Add collections.abc." +"AsyncGenerator." + +#: ../../build/NEWS:2399 +msgid "Python 3.6.0 beta 3" +msgstr "Python 3.6.0 beta 3" + +#: ../../build/NEWS:2401 +msgid "*Release date: 2016-10-31*" +msgstr "*Date de sortie : 2016-10-31*" + +#: ../../build/NEWS:2424 +msgid "" +"`bpo-28471 `__: Fix \"Python memory " +"allocator called without holding the GIL\" crash in socket.setblocking." +msgstr "" +"`bpo-28471 `__: Fix \"Python memory " +"allocator called without holding the GIL\" crash in socket.setblocking." + +#: ../../build/NEWS:2448 +msgid "" +"`bpo-18844 `__: The various ways of " +"specifying weights for random.choices() now produce the same result " +"sequences." +msgstr "" +"`bpo-18844 `__: The various ways of " +"specifying weights for random.choices() now produce the same result " +"sequences." + +#: ../../build/NEWS:2451 ../../build/NEWS:5580 +msgid "" +"`bpo-28255 `__: calendar.TextCalendar()." +"prmonth() no longer prints a space at the start of new line after printing a " +"month's calendar. Patch by Xiang Zhang." +msgstr "" +"`bpo-28255 `__: calendar.TextCalendar()." +"prmonth() no longer prints a space at the start of new line after printing a " +"month's calendar. Patch by Xiang Zhang." + +#: ../../build/NEWS:2484 ../../build/NEWS:5594 +msgid "" +"`bpo-24452 `__: Make webbrowser support " +"Chrome on Mac OS X." +msgstr "" +"`bpo-24452 `__: Make webbrowser support " +"Chrome on Mac OS X." + +#: ../../build/NEWS:2489 +msgid "" +"`bpo-28492 `__: Fix how StopIteration " +"exception is raised in _asyncio.Future." +msgstr "" +"`bpo-28492 `__: Fix how StopIteration " +"exception is raised in _asyncio.Future." + +#: ../../build/NEWS:2491 +msgid "" +"`bpo-28500 `__: Fix asyncio to handle " +"async gens GC from another thread." +msgstr "" +"`bpo-28500 `__: Fix asyncio to handle " +"async gens GC from another thread." + +#: ../../build/NEWS:2493 ../../build/NEWS:5890 +msgid "" +"`bpo-26923 `__: Fix asyncio.Gather to " +"refuse being cancelled once all children are done. Patch by Johannes Ebke." +msgstr "" +"`bpo-26923 `__: Fix asyncio.Gather to " +"refuse being cancelled once all children are done. Patch by Johannes Ebke." + +#: ../../build/NEWS:2496 ../../build/NEWS:5893 +msgid "" +"`bpo-26796 `__: Don't configure the " +"number of workers for default threadpool executor. Initial patch by Hans " +"Lawrenz." +msgstr "" +"`bpo-26796 `__: Don't configure the " +"number of workers for default threadpool executor. Initial patch by Hans " +"Lawrenz." + +#: ../../build/NEWS:2499 +msgid "" +"`bpo-28544 `__: Implement asyncio.Task " +"in C." +msgstr "" +"`bpo-28544 `__: Implement asyncio.Task " +"in C." + +#: ../../build/NEWS:2525 +msgid "Python 3.6.0 beta 2" +msgstr "Python 3.6.0 beta 2" + +#: ../../build/NEWS:2527 +msgid "*Release date: 2016-10-10*" +msgstr "*Date de sortie : 2016-10-10*" + +#: ../../build/NEWS:2543 +msgid "" +"`bpo-28376 `__: Creating instances of " +"range_iterator by calling range_iterator type now is deprecated. Patch by " +"Oren Milman." +msgstr "" +"`bpo-28376 `__: Creating instances of " +"range_iterator by calling range_iterator type now is deprecated. Patch by " +"Oren Milman." + +#: ../../build/NEWS:2546 ../../build/NEWS:5421 +msgid "" +"`bpo-28376 `__: The constructor of " +"range_iterator now checks that step is not 0. Patch by Oren Milman." +msgstr "" +"`bpo-28376 `__: The constructor of " +"range_iterator now checks that step is not 0. Patch by Oren Milman." + +#: ../../build/NEWS:2607 ../../build/NEWS:5599 +msgid "" +"`bpo-26293 `__: Fixed writing ZIP files " +"that starts not from the start of the file. Offsets in ZIP file now are " +"relative to the start of the archive in conforming to the specification." +msgstr "" +"`bpo-26293 `__: Fixed writing ZIP files " +"that starts not from the start of the file. Offsets in ZIP file now are " +"relative to the start of the archive in conforming to the specification." + +#: ../../build/NEWS:2796 +msgid "Python 3.6.0 beta 1" +msgstr "Python 3.6.0 beta 1" + +#: ../../build/NEWS:2798 +msgid "*Release date: 2016-09-12*" +msgstr "*Date de sortie : 2016-09-12*" + +#: ../../build/NEWS:2803 +msgid "" +"`bpo-23722 `__: The __class__ cell used " +"by zero-argument super() is now initialized from type.__new__ rather than " +"__build_class__, so class methods relying on that will now work correctly " +"when called from metaclass methods during class creation. Patch by Martin " +"Teichmann." +msgstr "" +"`bpo-23722 `__: The __class__ cell used " +"by zero-argument super() is now initialized from type.__new__ rather than " +"__build_class__, so class methods relying on that will now work correctly " +"when called from metaclass methods during class creation. Patch by Martin " +"Teichmann." + +#: ../../build/NEWS:2808 ../../build/NEWS:5452 +msgid "" +"`bpo-25221 `__: Fix corrupted result " +"from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0." +msgstr "" +"`bpo-25221 `__: Fix corrupted result " +"from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0." + +#: ../../build/NEWS:2811 +msgid "" +"`bpo-27080 `__: Implement formatting " +"support for PEP 515. Initial patch by Chris Angelico." +msgstr "" +"`bpo-27080 `__: Implement formatting " +"support for PEP 515. Initial patch by Chris Angelico." + +#: ../../build/NEWS:2814 +msgid "" +"`bpo-27199 `__: In tarfile, expose " +"copyfileobj bufsize to improve throughput. Patch by Jason Fried." +msgstr "" +"`bpo-27199 `__: In tarfile, expose " +"copyfileobj bufsize to improve throughput. Patch by Jason Fried." + +#: ../../build/NEWS:2817 +msgid "" +"`bpo-27948 `__: In f-strings, only allow " +"backslashes inside the braces (where the expressions are). This is a " +"breaking change from the 3.6 alpha releases, where backslashes are allowed " +"anywhere in an f-string. Also, require that expressions inside f-strings be " +"enclosed within literal braces, and not escapes like ``f'\\x7b\"hi\"\\x7d'``." +msgstr "" +"`bpo-27948 `__: In f-strings, only allow " +"backslashes inside the braces (where the expressions are). This is a " +"breaking change from the 3.6 alpha releases, where backslashes are allowed " +"anywhere in an f-string. Also, require that expressions inside f-strings be " +"enclosed within literal braces, and not escapes like ``f'\\x7b\"hi\"\\x7d'``." + +#: ../../build/NEWS:2823 +msgid "" +"`bpo-28046 `__: Remove platform-specific " +"directories from sys.path." +msgstr "" +"`bpo-28046 `__: Remove platform-specific " +"directories from sys.path." + +#: ../../build/NEWS:2825 +msgid "" +"`bpo-28071 `__: Add early-out for " +"differencing from an empty set." +msgstr "" +"`bpo-28071 `__: Add early-out for " +"differencing from an empty set." + +#: ../../build/NEWS:2827 ../../build/NEWS:5455 +msgid "" +"`bpo-25758 `__: Prevents zipimport from " +"unnecessarily encoding a filename (patch by Eryk Sun)" +msgstr "" +"`bpo-25758 `__: Prevents zipimport from " +"unnecessarily encoding a filename (patch by Eryk Sun)" + +#: ../../build/NEWS:2830 +msgid "" +"`bpo-25856 `__: The __module__ attribute " +"of extension classes and functions now is interned. This leads to more " +"compact pickle data with protocol 4." +msgstr "" +"`bpo-25856 `__: The __module__ attribute " +"of extension classes and functions now is interned. This leads to more " +"compact pickle data with protocol 4." + +#: ../../build/NEWS:2833 +msgid "" +"`bpo-27213 `__: Rework CALL_FUNCTION* " +"opcodes to produce shorter and more efficient bytecode. Patch by Demur " +"Rumed, design by Serhiy Storchaka, reviewed by Serhiy Storchaka and Victor " +"Stinner." +msgstr "" +"`bpo-27213 `__: Rework CALL_FUNCTION* " +"opcodes to produce shorter and more efficient bytecode. Patch by Demur " +"Rumed, design by Serhiy Storchaka, reviewed by Serhiy Storchaka and Victor " +"Stinner." + +#: ../../build/NEWS:2837 +msgid "" +"`bpo-26331 `__: Implement tokenizing " +"support for PEP 515. Patch by Georg Brandl." +msgstr "" +"`bpo-26331 `__: Implement tokenizing " +"support for PEP 515. Patch by Georg Brandl." + +#: ../../build/NEWS:2840 +msgid "" +"`bpo-27999 `__: Make \"global after use" +"\" a SyntaxError, and ditto for nonlocal. Patch by Ivan Levkivskyi." +msgstr "" +"`bpo-27999 `__: Make \"global after use" +"\" a SyntaxError, and ditto for nonlocal. Patch by Ivan Levkivskyi." + +#: ../../build/NEWS:2843 +msgid "" +"`bpo-28003 `__: Implement PEP 525 -- " +"Asynchronous Generators." +msgstr "" +"`bpo-28003 `__: Implement PEP 525 -- " +"Asynchronous Generators." + +#: ../../build/NEWS:2845 +msgid "" +"`bpo-27985 `__: Implement PEP 526 -- " +"Syntax for Variable Annotations. Patch by Ivan Levkivskyi." +msgstr "" +"`bpo-27985 `__: Implement PEP 526 -- " +"Syntax for Variable Annotations. Patch by Ivan Levkivskyi." + +#: ../../build/NEWS:2848 +msgid "" +"`bpo-26058 `__: Add a new private " +"version to the builtin dict type, incremented at each dictionary creation " +"and at each dictionary change. Implementation of the PEP 509." +msgstr "" +"`bpo-26058 `__: Add a new private " +"version to the builtin dict type, incremented at each dictionary creation " +"and at each dictionary change. Implementation of the PEP 509." + +#: ../../build/NEWS:2852 +msgid "" +"`bpo-27364 `__: A backslash-character " +"pair that is not a valid escape sequence now generates a " +"DeprecationWarning. Patch by Emanuel Barry." +msgstr "" +"`bpo-27364 `__: A backslash-character " +"pair that is not a valid escape sequence now generates a " +"DeprecationWarning. Patch by Emanuel Barry." + +#: ../../build/NEWS:2855 +msgid "" +"`bpo-27350 `__: `dict` implementation is " +"changed like PyPy. It is more compact and preserves insertion order. " +"(Concept developed by Raymond Hettinger and patch by Inada Naoki.)" +msgstr "" +"`bpo-27350 `__: `dict` implementation is " +"changed like PyPy. It is more compact and preserves insertion order. " +"(Concept developed by Raymond Hettinger and patch by Inada Naoki.)" + +#: ../../build/NEWS:2859 +msgid "" +"`bpo-27911 `__: Remove unnecessary error " +"checks in ``exec_builtin_or_dynamic()``." +msgstr "" +"`bpo-27911 `__: Remove unnecessary error " +"checks in ``exec_builtin_or_dynamic()``." + +#: ../../build/NEWS:2862 +msgid "" +"`bpo-27078 `__: Added BUILD_STRING " +"opcode. Optimized f-strings evaluation." +msgstr "" +"`bpo-27078 `__: Added BUILD_STRING " +"opcode. Optimized f-strings evaluation." + +#: ../../build/NEWS:2864 +msgid "" +"`bpo-17884 `__: Python now requires " +"systems with inttypes.h and stdint.h" +msgstr "" +"`bpo-17884 `__: Python now requires " +"systems with inttypes.h and stdint.h" + +#: ../../build/NEWS:2866 +msgid "" +"`bpo-27961 `__: Require platforms to " +"support ``long long``. Python hasn't compiled without ``long long`` for " +"years, so this is basically a formality." +msgstr "" +"`bpo-27961 `__: Require platforms to " +"support ``long long``. Python hasn't compiled without ``long long`` for " +"years, so this is basically a formality." + +#: ../../build/NEWS:2870 +msgid "" +"`bpo-27355 `__: Removed support for " +"Windows CE. It was never finished, and Windows CE is no longer a relevant " +"platform for Python." +msgstr "" +"`bpo-27355 `__: Removed support for " +"Windows CE. It was never finished, and Windows CE is no longer a relevant " +"platform for Python." + +#: ../../build/NEWS:2873 +msgid "Implement PEP 523." +msgstr "" + +#: ../../build/NEWS:2875 +msgid "" +"`bpo-27870 `__: A left shift of zero by " +"a large integer no longer attempts to allocate large amounts of memory." +msgstr "" +"`bpo-27870 `__: A left shift of zero by " +"a large integer no longer attempts to allocate large amounts of memory." + +#: ../../build/NEWS:2878 +msgid "" +"`bpo-25402 `__: In int-to-decimal-string " +"conversion, improve the estimate of the intermediate memory required, and " +"remove an unnecessarily strict overflow check. Patch by Serhiy Storchaka." +msgstr "" +"`bpo-25402 `__: In int-to-decimal-string " +"conversion, improve the estimate of the intermediate memory required, and " +"remove an unnecessarily strict overflow check. Patch by Serhiy Storchaka." + +#: ../../build/NEWS:2882 +msgid "" +"`bpo-27214 `__: In long_invert, be more " +"careful about modifying object returned by long_add, and remove an " +"unnecessary check for small longs. Thanks Oren Milman for analysis and patch." +msgstr "" +"`bpo-27214 `__: In long_invert, be more " +"careful about modifying object returned by long_add, and remove an " +"unnecessary check for small longs. Thanks Oren Milman for analysis and patch." + +#: ../../build/NEWS:2886 +msgid "" +"`bpo-27506 `__: Support passing the " +"bytes/bytearray.translate() \"delete\" argument by keyword." +msgstr "" +"`bpo-27506 `__: Support passing the " +"bytes/bytearray.translate() \"delete\" argument by keyword." + +#: ../../build/NEWS:2889 ../../build/NEWS:5461 +msgid "" +"`bpo-27812 `__: Properly clear out a " +"generator's frame's backreference to the generator to prevent crashes in " +"frame.clear()." +msgstr "" +"`bpo-27812 `__: Properly clear out a " +"generator's frame's backreference to the generator to prevent crashes in " +"frame.clear()." + +#: ../../build/NEWS:2892 ../../build/NEWS:5464 +msgid "" +"`bpo-27811 `__: Fix a crash when a " +"coroutine that has not been awaited is finalized with warnings-as-errors " +"enabled." +msgstr "" +"`bpo-27811 `__: Fix a crash when a " +"coroutine that has not been awaited is finalized with warnings-as-errors " +"enabled." + +#: ../../build/NEWS:2895 ../../build/NEWS:5467 +msgid "" +"`bpo-27587 `__: Fix another issue found " +"by PVS-Studio: Null pointer check after use of 'def' in " +"_PyState_AddModule(). Initial patch by Christian Heimes." +msgstr "" +"`bpo-27587 `__: Fix another issue found " +"by PVS-Studio: Null pointer check after use of 'def' in " +"_PyState_AddModule(). Initial patch by Christian Heimes." + +#: ../../build/NEWS:2898 +msgid "" +"`bpo-27792 `__: The modulo operation " +"applied to ``bool`` and other ``int`` subclasses now always returns an " +"``int``. Previously the return type depended on the input values. Patch by " +"Xiang Zhang." +msgstr "" +"`bpo-27792 `__: The modulo operation " +"applied to ``bool`` and other ``int`` subclasses now always returns an " +"``int``. Previously the return type depended on the input values. Patch by " +"Xiang Zhang." + +#: ../../build/NEWS:2902 +msgid "" +"`bpo-26984 `__: int() now always returns " +"an instance of exact int." +msgstr "" +"`bpo-26984 `__: int() now always returns " +"an instance of exact int." + +#: ../../build/NEWS:2904 +msgid "" +"`bpo-25604 `__: Fix a minor bug in " +"integer true division; this bug could potentially have caused off-by-one-ulp " +"results on platforms with unreliable ldexp implementations." +msgstr "" +"`bpo-25604 `__: Fix a minor bug in " +"integer true division; this bug could potentially have caused off-by-one-ulp " +"results on platforms with unreliable ldexp implementations." + +#: ../../build/NEWS:2908 +msgid "" +"`bpo-24254 `__: Make class definition " +"namespace ordered by default." +msgstr "" +"`bpo-24254 `__: Make class definition " +"namespace ordered by default." + +#: ../../build/NEWS:2910 +msgid "" +"`bpo-27662 `__: Fix an overflow check in " +"``List_New``: the original code was checking against ``Py_SIZE_MAX`` instead " +"of the correct upper bound of ``Py_SSIZE_T_MAX``. Patch by Xiang Zhang." +msgstr "" +"`bpo-27662 `__: Fix an overflow check in " +"``List_New``: the original code was checking against ``Py_SIZE_MAX`` instead " +"of the correct upper bound of ``Py_SSIZE_T_MAX``. Patch by Xiang Zhang." + +#: ../../build/NEWS:2914 ../../build/NEWS:5473 +msgid "" +"`bpo-27782 `__: Multi-phase extension " +"module import now correctly allows the ``m_methods`` field to be used to add " +"module level functions to instances of non-module types returned from " +"``Py_create_mod``. Patch by Xiang Zhang." +msgstr "" +"`bpo-27782 `__: Multi-phase extension " +"module import now correctly allows the ``m_methods`` field to be used to add " +"module level functions to instances of non-module types returned from " +"``Py_create_mod``. Patch by Xiang Zhang." + +#: ../../build/NEWS:2918 ../../build/NEWS:5477 +msgid "" +"`bpo-27936 `__: The round() function " +"accepted a second None argument for some types but not for others. Fixed " +"the inconsistency by accepting None for all numeric types." +msgstr "" +"`bpo-27936 `__: The round() function " +"accepted a second None argument for some types but not for others. Fixed " +"the inconsistency by accepting None for all numeric types." + +#: ../../build/NEWS:2922 ../../build/NEWS:5481 +msgid "" +"`bpo-27487 `__: Warn if a submodule " +"argument to \"python -m\" or runpy.run_module() is found in sys.modules " +"after parent packages are imported, but before the submodule is executed." +msgstr "" +"`bpo-27487 `__: Warn if a submodule " +"argument to \"python -m\" or runpy.run_module() is found in sys.modules " +"after parent packages are imported, but before the submodule is executed." + +#: ../../build/NEWS:2926 +msgid "" +"`bpo-27157 `__: Make only type() itself " +"accept the one-argument form. Patch by Eryk Sun and Emanuel Barry." +msgstr "" +"`bpo-27157 `__: Make only type() itself " +"accept the one-argument form. Patch by Eryk Sun and Emanuel Barry." + +#: ../../build/NEWS:2929 ../../build/NEWS:5485 +msgid "" +"`bpo-27558 `__: Fix a SystemError in the " +"implementation of \"raise\" statement. In a brand new thread, raise a " +"RuntimeError since there is no active exception to reraise. Patch written by " +"Xiang Zhang." +msgstr "" +"`bpo-27558 `__: Fix a SystemError in the " +"implementation of \"raise\" statement. In a brand new thread, raise a " +"RuntimeError since there is no active exception to reraise. Patch written by " +"Xiang Zhang." + +#: ../../build/NEWS:2933 +msgid "" +"`bpo-28008 `__: Implement PEP 530 -- " +"asynchronous comprehensions." +msgstr "" +"`bpo-28008 `__: Implement PEP 530 -- " +"asynchronous comprehensions." + +#: ../../build/NEWS:2935 ../../build/NEWS:5510 +msgid "" +"`bpo-27942 `__: Fix memory leak in " +"codeobject.c" +msgstr "" +"`bpo-27942 `__: Fix memory leak in " +"codeobject.c" + +#: ../../build/NEWS:2940 ../../build/NEWS:5554 +msgid "" +"`bpo-28732 `__: Fix crash in os.spawnv() " +"with no elements in args" +msgstr "" +"`bpo-28732 `__: Fix crash in os.spawnv() " +"with no elements in args" + +#: ../../build/NEWS:2942 ../../build/NEWS:5556 +msgid "" +"`bpo-28485 `__: Always raise ValueError " +"for negative compileall.compile_dir(workers=...) parameter, even when " +"multithreading is unavailable." +msgstr "" +"`bpo-28485 `__: Always raise ValueError " +"for negative compileall.compile_dir(workers=...) parameter, even when " +"multithreading is unavailable." + +#: ../../build/NEWS:2946 +msgid "" +"`bpo-28037 `__: Use " +"sqlite3_get_autocommit() instead of setting Connection->inTransaction " +"manually." +msgstr "" +"`bpo-28037 `__: Use " +"sqlite3_get_autocommit() instead of setting Connection->inTransaction " +"manually." + +#: ../../build/NEWS:2949 +msgid "" +"`bpo-25283 `__: Attributes tm_gmtoff and " +"tm_zone are now available on all platforms in the return values of time." +"localtime() and time.gmtime()." +msgstr "" +"`bpo-25283 `__: Attributes tm_gmtoff and " +"tm_zone are now available on all platforms in the return values of time." +"localtime() and time.gmtime()." + +#: ../../build/NEWS:2955 +msgid "" +"`bpo-10740 `__: sqlite3 no longer " +"implicitly commit an open transaction before DDL statements." +msgstr "" +"`bpo-10740 `__: sqlite3 no longer " +"implicitly commit an open transaction before DDL statements." + +#: ../../build/NEWS:2958 +msgid "" +"`bpo-17941 `__: Add a *module* parameter " +"to collections.namedtuple()." +msgstr "" +"`bpo-17941 `__: Add a *module* parameter " +"to collections.namedtuple()." + +#: ../../build/NEWS:2967 +msgid "" +"`bpo-28070 `__: Fixed parsing inline " +"verbose flag in regular expressions." +msgstr "" +"`bpo-28070 `__: Fixed parsing inline " +"verbose flag in regular expressions." + +#: ../../build/NEWS:2969 +msgid "" +"`bpo-19500 `__: Add client-side SSL " +"session resumption to the ssl module." +msgstr "" +"`bpo-19500 `__: Add client-side SSL " +"session resumption to the ssl module." + +#: ../../build/NEWS:2971 +msgid "" +"`bpo-28022 `__: Deprecate ssl-related " +"arguments in favor of SSLContext. The deprecation include manual creation of " +"SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, " +"smtplib, poplib and urllib." +msgstr "" +"`bpo-28022 `__: Deprecate ssl-related " +"arguments in favor of SSLContext. The deprecation include manual creation of " +"SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, " +"smtplib, poplib and urllib." + +#: ../../build/NEWS:2975 +msgid "" +"`bpo-28043 `__: SSLContext has improved " +"default settings: OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, " +"OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE and HIGH " +"ciphers without MD5." +msgstr "" +"`bpo-28043 `__: SSLContext has improved " +"default settings: OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, " +"OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE and HIGH " +"ciphers without MD5." + +#: ../../build/NEWS:2979 +msgid "" +"`bpo-24693 `__: Changed some " +"RuntimeError's in the zipfile module to more appropriate types. Improved " +"some error messages and debugging output." +msgstr "" +"`bpo-24693 `__: Changed some " +"RuntimeError's in the zipfile module to more appropriate types. Improved " +"some error messages and debugging output." + +#: ../../build/NEWS:2982 +msgid "" +"`bpo-17909 `__: ``json.load`` and ``json." +"loads`` now support binary input encoded as UTF-8, UTF-16 or UTF-32. Patch " +"by Serhiy Storchaka." +msgstr "" +"`bpo-17909 `__: ``json.load`` and ``json." +"loads`` now support binary input encoded as UTF-8, UTF-16 or UTF-32. Patch " +"by Serhiy Storchaka." + +#: ../../build/NEWS:2985 +msgid "" +"`bpo-27137 `__: the pure Python fallback " +"implementation of ``functools.partial`` now matches the behaviour of its " +"accelerated C counterpart for subclassing, pickling and text representation " +"purposes. Patch by Emanuel Barry and Serhiy Storchaka." +msgstr "" +"`bpo-27137 `__: the pure Python fallback " +"implementation of ``functools.partial`` now matches the behaviour of its " +"accelerated C counterpart for subclassing, pickling and text representation " +"purposes. Patch by Emanuel Barry and Serhiy Storchaka." + +#: ../../build/NEWS:2990 ../../build/NEWS:5609 +msgid "" +"Fix possible integer overflows and crashes in the mmap module with unusual " +"usage patterns." +msgstr "" + +#: ../../build/NEWS:2993 ../../build/NEWS:5612 +msgid "" +"`bpo-1703178 `__: Fix the ability to " +"pass the --link-objects option to the distutils build_ext command." +msgstr "" +"`bpo-1703178 `__: Fix the ability to " +"pass the --link-objects option to the distutils build_ext command." + +#: ../../build/NEWS:2996 ../../build/NEWS:5661 +msgid "" +"`bpo-28019 `__: itertools.count() no " +"longer rounds non-integer step in range between 1.0 and 2.0 to 1." +msgstr "" +"`bpo-28019 `__: itertools.count() no " +"longer rounds non-integer step in range between 1.0 and 2.0 to 1." + +#: ../../build/NEWS:2999 +msgid "" +"`bpo-18401 `__: Pdb now supports the " +"'readrc' keyword argument to control whether .pdbrc files should be read. " +"Patch by Martin Matusiak and Sam Kimbrel." +msgstr "" +"`bpo-18401 `__: Pdb now supports the " +"'readrc' keyword argument to control whether .pdbrc files should be read. " +"Patch by Martin Matusiak and Sam Kimbrel." + +#: ../../build/NEWS:3003 ../../build/NEWS:5664 +msgid "" +"`bpo-25969 `__: Update the lib2to3 " +"grammar to handle the unpacking generalizations added in 3.5." +msgstr "" +"`bpo-25969 `__: Update the lib2to3 " +"grammar to handle the unpacking generalizations added in 3.5." + +#: ../../build/NEWS:3006 ../../build/NEWS:5667 +msgid "" +"`bpo-14977 `__: mailcap now respects the " +"order of the lines in the mailcap files (\"first match\"), as required by " +"RFC 1542. Patch by Michael Lazar." +msgstr "" +"`bpo-14977 `__: mailcap now respects the " +"order of the lines in the mailcap files (\"first match\"), as required by " +"RFC 1542. Patch by Michael Lazar." + +#: ../../build/NEWS:3009 +msgid "" +"`bpo-28082 `__: Convert re flag " +"constants to IntFlag." +msgstr "" +"`bpo-28082 `__: Convert re flag " +"constants to IntFlag." + +#: ../../build/NEWS:3011 +msgid "" +"`bpo-28025 `__: Convert all ssl module " +"constants to IntEnum and IntFlags. SSLContext properties now return flags " +"and enums." +msgstr "" +"`bpo-28025 `__: Convert all ssl module " +"constants to IntEnum and IntFlags. SSLContext properties now return flags " +"and enums." + +#: ../../build/NEWS:3014 +msgid "" +"`bpo-23591 `__: Add Flag, IntFlag, and " +"auto() to enum module." +msgstr "" +"`bpo-23591 `__: Add Flag, IntFlag, and " +"auto() to enum module." + +#: ../../build/NEWS:3016 +msgid "" +"`bpo-433028 `__: Added support of " +"modifier spans in regular expressions." +msgstr "" +"`bpo-433028 `__: Added support of " +"modifier spans in regular expressions." + +#: ../../build/NEWS:3018 ../../build/NEWS:5670 +msgid "" +"`bpo-24594 `__: Validates persist " +"parameter when opening MSI database" +msgstr "" +"`bpo-24594 `__: Validates persist " +"parameter when opening MSI database" + +#: ../../build/NEWS:3020 ../../build/NEWS:5672 +msgid "" +"`bpo-17582 `__: xml.etree.ElementTree " +"nows preserves whitespaces in attributes (Patch by Duane Griffin. Reviewed " +"and approved by Stefan Behnel.)" +msgstr "" +"`bpo-17582 `__: xml.etree.ElementTree " +"nows preserves whitespaces in attributes (Patch by Duane Griffin. Reviewed " +"and approved by Stefan Behnel.)" + +#: ../../build/NEWS:3023 ../../build/NEWS:5675 +msgid "" +"`bpo-28047 `__: Fixed calculation of " +"line length used for the base64 CTE in the new email policies." +msgstr "" +"`bpo-28047 `__: Fixed calculation of " +"line length used for the base64 CTE in the new email policies." + +#: ../../build/NEWS:3026 +msgid "" +"`bpo-27576 `__: Fix call order in " +"OrderedDict.__init__()." +msgstr "" +"`bpo-27576 `__: Fix call order in " +"OrderedDict.__init__()." + +#: ../../build/NEWS:3028 +msgid "email.generator.DecodedGenerator now supports the policy keyword." +msgstr "" + +#: ../../build/NEWS:3030 +msgid "" +"`bpo-28027 `__: Remove undocumented " +"modules from ``Lib/plat-*``: IN, CDROM, DLFCN, TYPES, CDIO, and STROPTS." +msgstr "" +"`bpo-28027 `__: Remove undocumented " +"modules from ``Lib/plat-*``: IN, CDROM, DLFCN, TYPES, CDIO, and STROPTS." + +#: ../../build/NEWS:3033 ../../build/NEWS:5678 +msgid "" +"`bpo-27445 `__: Don't pass str(_charset) " +"to MIMEText.set_payload(). Patch by Claude Paroz." +msgstr "" +"`bpo-27445 `__: Don't pass str(_charset) " +"to MIMEText.set_payload(). Patch by Claude Paroz." + +#: ../../build/NEWS:3036 +msgid "" +"`bpo-24277 `__: The new email API is no " +"longer provisional, and the docs have been reorganized and rewritten to " +"emphasize the new API." +msgstr "" +"`bpo-24277 `__: The new email API is no " +"longer provisional, and the docs have been reorganized and rewritten to " +"emphasize the new API." + +#: ../../build/NEWS:3043 ../../build/NEWS:5685 +msgid "" +"lib2to3.pgen3.driver.load_grammar() now creates a stable cache file between " +"runs given the same Grammar.txt input regardless of the hash randomization " +"setting." +msgstr "" + +#: ../../build/NEWS:3047 +msgid "" +"`bpo-28005 `__: Allow ImportErrors in " +"encoding implementation to propagate." +msgstr "" +"`bpo-28005 `__: Allow ImportErrors in " +"encoding implementation to propagate." + +#: ../../build/NEWS:3049 +msgid "" +"`bpo-26667 `__: Support path-like " +"objects in importlib.util." +msgstr "" +"`bpo-26667 `__: Support path-like " +"objects in importlib.util." + +#: ../../build/NEWS:3051 ../../build/NEWS:5689 +msgid "" +"`bpo-27570 `__: Avoid zero-length " +"memcpy() etc calls with null source pointers in the \"ctypes\" and \"array\" " +"modules." +msgstr "" +"`bpo-27570 `__: Avoid zero-length " +"memcpy() etc calls with null source pointers in the \"ctypes\" and \"array\" " +"modules." + +#: ../../build/NEWS:3054 ../../build/NEWS:5692 +msgid "" +"`bpo-22233 `__: Break email header lines " +"*only* on the RFC specified CR and LF characters, not on arbitrary unicode " +"line breaks. This also fixes a bug in HTTP header parsing." +msgstr "" +"`bpo-22233 `__: Break email header lines " +"*only* on the RFC specified CR and LF characters, not on arbitrary unicode " +"line breaks. This also fixes a bug in HTTP header parsing." + +#: ../../build/NEWS:3058 +msgid "" +"`bpo-27331 `__: The email.mime classes " +"now all accept an optional policy keyword." +msgstr "" +"`bpo-27331 `__: The email.mime classes " +"now all accept an optional policy keyword." + +#: ../../build/NEWS:3061 ../../build/NEWS:5696 +msgid "" +"`bpo-27988 `__: Fix email " +"iter_attachments incorrect mutation of payload list." +msgstr "" +"`bpo-27988 `__: Fix email " +"iter_attachments incorrect mutation of payload list." + +#: ../../build/NEWS:3063 +msgid "" +"`bpo-16113 `__: Add SHA-3 and SHAKE " +"support to hashlib module." +msgstr "" +"`bpo-16113 `__: Add SHA-3 and SHAKE " +"support to hashlib module." + +#: ../../build/NEWS:3065 +msgid "Eliminate a tautological-pointer-compare warning in _scproxy.c." +msgstr "" + +#: ../../build/NEWS:3067 +msgid "" +"`bpo-27776 `__: The :func:`os.urandom` " +"function does now block on Linux 3.17 and newer until the system urandom " +"entropy pool is initialized to increase the security. This change is part of " +"the :pep:`524`." +msgstr "" +"`bpo-27776 `__: The :func:`os.urandom` " +"function does now block on Linux 3.17 and newer until the system urandom " +"entropy pool is initialized to increase the security. This change is part of " +"the :pep:`524`." + +#: ../../build/NEWS:3071 +msgid "" +"`bpo-27778 `__: Expose the Linux " +"``getrandom()`` syscall as a new :func:`os.getrandom` function. This change " +"is part of the :pep:`524`." +msgstr "" +"`bpo-27778 `__: Expose the Linux " +"``getrandom()`` syscall as a new :func:`os.getrandom` function. This change " +"is part of the :pep:`524`." + +#: ../../build/NEWS:3074 ../../build/NEWS:5698 +msgid "" +"`bpo-27691 `__: Fix ssl module's parsing " +"of GEN_RID subject alternative name fields in X.509 certs." +msgstr "" +"`bpo-27691 `__: Fix ssl module's parsing " +"of GEN_RID subject alternative name fields in X.509 certs." + +#: ../../build/NEWS:3077 +msgid "" +"`bpo-18844 `__: Add random.choices()." +msgstr "" +"`bpo-18844 `__: Add random.choices()." + +#: ../../build/NEWS:3079 +msgid "" +"`bpo-25761 `__: Improved error reporting " +"about truncated pickle data in C implementation of unpickler. " +"UnpicklingError is now raised instead of AttributeError and ValueError in " +"some cases." +msgstr "" +"`bpo-25761 `__: Improved error reporting " +"about truncated pickle data in C implementation of unpickler. " +"UnpicklingError is now raised instead of AttributeError and ValueError in " +"some cases." + +#: ../../build/NEWS:3083 +msgid "" +"`bpo-26798 `__: Add BLAKE2 (blake2b and " +"blake2s) to hashlib." +msgstr "" +"`bpo-26798 `__: Add BLAKE2 (blake2b and " +"blake2s) to hashlib." + +#: ../../build/NEWS:3085 +msgid "" +"`bpo-26032 `__: Optimized globbing in " +"pathlib by using os.scandir(); it is now about 1.5--4 times faster." +msgstr "" +"`bpo-26032 `__: Optimized globbing in " +"pathlib by using os.scandir(); it is now about 1.5--4 times faster." + +#: ../../build/NEWS:3088 +msgid "" +"`bpo-25596 `__: Optimized glob() and " +"iglob() functions in the glob module; they are now about 3--6 times faster." +msgstr "" +"`bpo-25596 `__: Optimized glob() and " +"iglob() functions in the glob module; they are now about 3--6 times faster." + +#: ../../build/NEWS:3091 +msgid "" +"`bpo-27928 `__: Add scrypt (password-" +"based key derivation function) to hashlib module (requires OpenSSL 1.1.0)." +msgstr "" +"`bpo-27928 `__: Add scrypt (password-" +"based key derivation function) to hashlib module (requires OpenSSL 1.1.0)." + +#: ../../build/NEWS:3094 ../../build/NEWS:5701 +msgid "" +"`bpo-27850 `__: Remove 3DES from ssl " +"module's default cipher list to counter measure sweet32 attack " +"(CVE-2016-2183)." +msgstr "" +"`bpo-27850 `__: Remove 3DES from ssl " +"module's default cipher list to counter measure sweet32 attack " +"(CVE-2016-2183)." + +#: ../../build/NEWS:3097 ../../build/NEWS:5704 +msgid "" +"`bpo-27766 `__: Add ChaCha20 Poly1305 to " +"ssl module's default ciper list. (Required OpenSSL 1.1.0 or LibreSSL)." +msgstr "" +"`bpo-27766 `__: Add ChaCha20 Poly1305 to " +"ssl module's default ciper list. (Required OpenSSL 1.1.0 or LibreSSL)." + +#: ../../build/NEWS:3100 +msgid "" +"`bpo-25387 `__: Check return value of " +"winsound.MessageBeep." +msgstr "" +"`bpo-25387 `__: Check return value of " +"winsound.MessageBeep." + +#: ../../build/NEWS:3102 +msgid "" +"`bpo-27866 `__: Add SSLContext." +"get_ciphers() method to get a list of all enabled ciphers." +msgstr "" +"`bpo-27866 `__: Add SSLContext." +"get_ciphers() method to get a list of all enabled ciphers." + +#: ../../build/NEWS:3105 +msgid "" +"`bpo-27744 `__: Add AF_ALG (Linux Kernel " +"crypto) to socket module." +msgstr "" +"`bpo-27744 `__: Add AF_ALG (Linux Kernel " +"crypto) to socket module." + +#: ../../build/NEWS:3107 ../../build/NEWS:5707 +msgid "" +"`bpo-26470 `__: Port ssl and hashlib " +"module to OpenSSL 1.1.0." +msgstr "" +"`bpo-26470 `__: Port ssl and hashlib " +"module to OpenSSL 1.1.0." + +#: ../../build/NEWS:3109 +msgid "" +"`bpo-11620 `__: Fix support for " +"SND_MEMORY in winsound.PlaySound. Based on a patch by Tim Lesher." +msgstr "" +"`bpo-11620 `__: Fix support for " +"SND_MEMORY in winsound.PlaySound. Based on a patch by Tim Lesher." + +#: ../../build/NEWS:3112 +msgid "" +"`bpo-11734 `__: Add support for IEEE 754 " +"half-precision floats to the struct module. Based on a patch by Eli Stevens." +msgstr "" +"`bpo-11734 `__: Add support for IEEE 754 " +"half-precision floats to the struct module. Based on a patch by Eli Stevens." + +#: ../../build/NEWS:3115 +msgid "" +"`bpo-27919 `__: Deprecated " +"``extra_path`` distribution option in distutils packaging." +msgstr "" +"`bpo-27919 `__: Deprecated " +"``extra_path`` distribution option in distutils packaging." + +#: ../../build/NEWS:3118 +msgid "" +"`bpo-23229 `__: Add new ``cmath`` " +"constants: ``cmath.inf`` and ``cmath.nan`` to match ``math.inf`` and ``math." +"nan``, and also ``cmath.infj`` and ``cmath.nanj`` to match the format used " +"by complex repr." +msgstr "" +"`bpo-23229 `__: Add new ``cmath`` " +"constants: ``cmath.inf`` and ``cmath.nan`` to match ``math.inf`` and ``math." +"nan``, and also ``cmath.infj`` and ``cmath.nanj`` to match the format used " +"by complex repr." + +#: ../../build/NEWS:3122 +msgid "" +"`bpo-27842 `__: The csv.DictReader now " +"returns rows of type OrderedDict. (Contributed by Steve Holden.)" +msgstr "" +"`bpo-27842 `__: The csv.DictReader now " +"returns rows of type OrderedDict. (Contributed by Steve Holden.)" + +#: ../../build/NEWS:3125 ../../build/NEWS:5709 +msgid "" +"Remove support for passing a file descriptor to os.access. It never worked " +"but previously didn't raise." +msgstr "" + +#: ../../build/NEWS:3128 ../../build/NEWS:5712 +msgid "" +"`bpo-12885 `__: Fix error when distutils " +"encounters symlink." +msgstr "" +"`bpo-12885 `__: Fix error when distutils " +"encounters symlink." + +#: ../../build/NEWS:3130 ../../build/NEWS:5714 +msgid "" +"`bpo-27881 `__: Fixed possible bugs when " +"setting sqlite3.Connection.isolation_level. Based on patch by Xiang Zhang." +msgstr "" +"`bpo-27881 `__: Fixed possible bugs when " +"setting sqlite3.Connection.isolation_level. Based on patch by Xiang Zhang." + +#: ../../build/NEWS:3133 ../../build/NEWS:5717 +msgid "" +"`bpo-27861 `__: Fixed a crash in sqlite3." +"Connection.cursor() when a factory creates not a cursor. Patch by Xiang " +"Zhang." +msgstr "" +"`bpo-27861 `__: Fixed a crash in sqlite3." +"Connection.cursor() when a factory creates not a cursor. Patch by Xiang " +"Zhang." + +#: ../../build/NEWS:3136 ../../build/NEWS:5720 +msgid "" +"`bpo-19884 `__: Avoid spurious output on " +"OS X with Gnu Readline." +msgstr "" +"`bpo-19884 `__: Avoid spurious output on " +"OS X with Gnu Readline." + +#: ../../build/NEWS:3138 ../../build/NEWS:5722 +msgid "" +"`bpo-27706 `__: Restore deterministic " +"behavior of random.Random().seed() for string seeds using seeding version " +"1. Allows sequences of calls to random() to exactly match those obtained in " +"Python 2. Patch by Nofar Schnider." +msgstr "" +"`bpo-27706 `__: Restore deterministic " +"behavior of random.Random().seed() for string seeds using seeding version " +"1. Allows sequences of calls to random() to exactly match those obtained in " +"Python 2. Patch by Nofar Schnider." + +#: ../../build/NEWS:3143 ../../build/NEWS:5727 +msgid "" +"`bpo-10513 `__: Fix a regression in " +"Connection.commit(). Statements should not be reset after a commit." +msgstr "" +"`bpo-10513 `__: Fix a regression in " +"Connection.commit(). Statements should not be reset after a commit." + +#: ../../build/NEWS:3146 +msgid "" +"`bpo-12319 `__: Chunked transfer " +"encoding support added to http.client.HTTPConnection requests. The urllib." +"request.AbstractHTTPHandler class does not enforce a Content-Length header " +"any more. If a HTTP request has a file or iterable body, but no Content-" +"Length header, the library now falls back to use chunked transfer- encoding." +msgstr "" +"`bpo-12319 `__: Chunked transfer " +"encoding support added to http.client.HTTPConnection requests. The urllib." +"request.AbstractHTTPHandler class does not enforce a Content-Length header " +"any more. If a HTTP request has a file or iterable body, but no Content-" +"Length header, the library now falls back to use chunked transfer- encoding." + +#: ../../build/NEWS:3153 ../../build/NEWS:5730 +msgid "" +"A new version of typing.py from https://github.com/python/typing: - " +"Collection (only for 3.6) (`bpo-27598 `__) - Add FrozenSet to __all__ (upstream #261) - fix crash in " +"_get_type_vars() (upstream #259) - Remove the dict constraint in ForwardRef." +"_eval_type (upstream #252)" +msgstr "" +"A new version of typing.py from https://github.com/python/typing: - " +"Collection (only for 3.6) (`bpo-27598 `__) - Add FrozenSet to __all__ (upstream #261) - fix crash in " +"_get_type_vars() (upstream #259) - Remove the dict constraint in ForwardRef." +"_eval_type (upstream #252)" + +#: ../../build/NEWS:3158 +msgid "" +"`bpo-27832 `__: Make ``_normalize`` " +"parameter to ``Fraction`` constuctor keyword-only, so that ``Fraction(2, 3, " +"4)`` now raises ``TypeError``." +msgstr "" +"`bpo-27832 `__: Make ``_normalize`` " +"parameter to ``Fraction`` constuctor keyword-only, so that ``Fraction(2, 3, " +"4)`` now raises ``TypeError``." + +#: ../../build/NEWS:3161 ../../build/NEWS:5735 +msgid "" +"`bpo-27539 `__: Fix unnormalised " +"``Fraction.__pow__`` result in the case of negative exponent and negative " +"base." +msgstr "" +"`bpo-27539 `__: Fix unnormalised " +"``Fraction.__pow__`` result in the case of negative exponent and negative " +"base." + +#: ../../build/NEWS:3164 ../../build/NEWS:5738 +msgid "" +"`bpo-21718 `__: cursor.description is " +"now available for queries using CTEs." +msgstr "" +"`bpo-21718 `__: cursor.description is " +"now available for queries using CTEs." + +#: ../../build/NEWS:3166 +msgid "" +"`bpo-27819 `__: In distutils sdists, " +"simply produce the \"gztar\" (gzipped tar format) distributions on all " +"platforms unless \"formats\" is supplied." +msgstr "" +"`bpo-27819 `__: In distutils sdists, " +"simply produce the \"gztar\" (gzipped tar format) distributions on all " +"platforms unless \"formats\" is supplied." + +#: ../../build/NEWS:3169 ../../build/NEWS:5740 +msgid "" +"`bpo-2466 `__: posixpath.ismount now " +"correctly recognizes mount points which the user does not have permission to " +"access." +msgstr "" +"`bpo-2466 `__: posixpath.ismount now " +"correctly recognizes mount points which the user does not have permission to " +"access." + +#: ../../build/NEWS:3172 +msgid "" +"`bpo-9998 `__: On Linux, ctypes.util." +"find_library now looks in LD_LIBRARY_PATH for shared libraries." +msgstr "" +"`bpo-9998 `__: On Linux, ctypes.util." +"find_library now looks in LD_LIBRARY_PATH for shared libraries." + +#: ../../build/NEWS:3175 +msgid "" +"`bpo-27573 `__: exit message for code." +"interact is now configurable." +msgstr "" +"`bpo-27573 `__: exit message for code." +"interact is now configurable." + +#: ../../build/NEWS:3177 ../../build/NEWS:5848 +msgid "" +"`bpo-27930 `__: Improved behaviour of " +"logging.handlers.QueueListener. Thanks to Paulo Andrade and Petr Viktorin " +"for the analysis and patch." +msgstr "" +"`bpo-27930 `__: Improved behaviour of " +"logging.handlers.QueueListener. Thanks to Paulo Andrade and Petr Viktorin " +"for the analysis and patch." + +#: ../../build/NEWS:3180 +msgid "" +"`bpo-6766 `__: Distributed reference " +"counting added to multiprocessing to support nesting of shared values / " +"proxy objects." +msgstr "" +"`bpo-6766 `__: Distributed reference " +"counting added to multiprocessing to support nesting of shared values / " +"proxy objects." + +#: ../../build/NEWS:3183 ../../build/NEWS:5851 +msgid "" +"`bpo-21201 `__: Improves readability of " +"multiprocessing error message. Thanks to Wojciech Walczak for patch." +msgstr "" +"`bpo-21201 `__: Improves readability of " +"multiprocessing error message. Thanks to Wojciech Walczak for patch." + +#: ../../build/NEWS:3186 +msgid "asyncio: Add set_protocol / get_protocol to Transports." +msgstr "" + +#: ../../build/NEWS:3188 ../../build/NEWS:5854 +msgid "" +"`bpo-27456 `__: asyncio: Set TCP_NODELAY " +"by default." +msgstr "" +"`bpo-27456 `__: asyncio: Set TCP_NODELAY " +"by default." + +#: ../../build/NEWS:3193 ../../build/NEWS:5919 +msgid "" +"`bpo-15308 `__: Add 'interrupt " +"execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard " +"Randel." +msgstr "" +"`bpo-15308 `__: Add 'interrupt " +"execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard " +"Randel." + +#: ../../build/NEWS:3196 ../../build/NEWS:5922 +msgid "" +"`bpo-27922 `__: Stop IDLE tests from " +"'flashing' gui widgets on the screen." +msgstr "" +"`bpo-27922 `__: Stop IDLE tests from " +"'flashing' gui widgets on the screen." + +#: ../../build/NEWS:3198 +msgid "" +"`bpo-27891 `__: Consistently group and " +"sort imports within idlelib modules." +msgstr "" +"`bpo-27891 `__: Consistently group and " +"sort imports within idlelib modules." + +#: ../../build/NEWS:3200 +msgid "" +"`bpo-17642 `__: add larger font sizes " +"for classroom projection." +msgstr "" +"`bpo-17642 `__: add larger font sizes " +"for classroom projection." + +#: ../../build/NEWS:3202 ../../build/NEWS:5924 +msgid "Add version to title of IDLE help window." +msgstr "" + +#: ../../build/NEWS:3204 ../../build/NEWS:5926 +msgid "" +"`bpo-25564 `__: In section on IDLE -- " +"console differences, mention that using exec means that __builtins__ is " +"defined for each statement." +msgstr "" +"`bpo-25564 `__: In section on IDLE -- " +"console differences, mention that using exec means that __builtins__ is " +"defined for each statement." + +#: ../../build/NEWS:3207 +msgid "" +"`bpo-27821 `__: Fix 3.6.0a3 regression " +"that prevented custom key sets from being selected when no custom theme was " +"defined." +msgstr "" +"`bpo-27821 `__: Fix 3.6.0a3 regression " +"that prevented custom key sets from being selected when no custom theme was " +"defined." + +#: ../../build/NEWS:3213 +msgid "" +"`bpo-26900 `__: Excluded underscored " +"names and other private API from limited API." +msgstr "" +"`bpo-26900 `__: Excluded underscored " +"names and other private API from limited API." + +#: ../../build/NEWS:3216 +msgid "" +"`bpo-26027 `__: Add support for path-" +"like objects in PyUnicode_FSConverter() & PyUnicode_FSDecoder()." +msgstr "" +"`bpo-26027 `__: Add support for path-" +"like objects in PyUnicode_FSConverter() & PyUnicode_FSDecoder()." + +#: ../../build/NEWS:3222 +msgid "" +"`bpo-27427 `__: Additional tests for the " +"math module. Patch by Francisco Couzo." +msgstr "" +"`bpo-27427 `__: Additional tests for the " +"math module. Patch by Francisco Couzo." + +#: ../../build/NEWS:3224 +msgid "" +"`bpo-27953 `__: Skip math and cmath " +"tests that fail on OS X 10.4 due to a poor libm implementation of tan." +msgstr "" +"`bpo-27953 `__: Skip math and cmath " +"tests that fail on OS X 10.4 due to a poor libm implementation of tan." + +#: ../../build/NEWS:3227 +msgid "" +"`bpo-26040 `__: Improve test_math and " +"test_cmath coverage and rigour. Patch by Jeff Allen." +msgstr "" +"`bpo-26040 `__: Improve test_math and " +"test_cmath coverage and rigour. Patch by Jeff Allen." + +#: ../../build/NEWS:3230 ../../build/NEWS:5971 +msgid "" +"`bpo-27787 `__: Call gc.collect() before " +"checking each test for \"dangling threads\", since the dangling threads are " +"weak references." +msgstr "" +"`bpo-27787 `__: Call gc.collect() before " +"checking each test for \"dangling threads\", since the dangling threads are " +"weak references." + +#: ../../build/NEWS:3236 ../../build/NEWS:6031 +msgid "" +"`bpo-27566 `__: Fix clean target in " +"freeze makefile (patch by Lisa Roach)" +msgstr "" +"`bpo-27566 `__: Fix clean target in " +"freeze makefile (patch by Lisa Roach)" + +#: ../../build/NEWS:3238 ../../build/NEWS:6033 +msgid "" +"`bpo-27705 `__: Update message in " +"validate_ucrtbase.py" +msgstr "" +"`bpo-27705 `__: Update message in " +"validate_ucrtbase.py" + +#: ../../build/NEWS:3240 +msgid "" +"`bpo-27976 `__: Deprecate building " +"_ctypes with the bundled copy of libffi on non-OSX UNIX platforms." +msgstr "" +"`bpo-27976 `__: Deprecate building " +"_ctypes with the bundled copy of libffi on non-OSX UNIX platforms." + +#: ../../build/NEWS:3248 +msgid "" +"`bpo-21590 `__: Support for DTrace and " +"SystemTap probes." +msgstr "" +"`bpo-21590 `__: Support for DTrace and " +"SystemTap probes." + +#: ../../build/NEWS:3250 ../../build/NEWS:6040 +msgid "" +"`bpo-26307 `__: The profile-opt build " +"now applies PGO to the built-in modules." +msgstr "" +"`bpo-26307 `__: The profile-opt build " +"now applies PGO to the built-in modules." + +#: ../../build/NEWS:3252 +msgid "" +"`bpo-26359 `__: Add the --with-" +"optimizations flag to turn on LTO and PGO build support when available." +msgstr "" +"`bpo-26359 `__: Add the --with-" +"optimizations flag to turn on LTO and PGO build support when available." + +#: ../../build/NEWS:3255 +msgid "" +"`bpo-27917 `__: Set platform triplets " +"for Android builds." +msgstr "" +"`bpo-27917 `__: Set platform triplets " +"for Android builds." + +#: ../../build/NEWS:3257 +msgid "" +"`bpo-25825 `__: Update references to the " +"$(LIBPL) installation path on AIX. This path was changed in 3.2a4." +msgstr "" +"`bpo-25825 `__: Update references to the " +"$(LIBPL) installation path on AIX. This path was changed in 3.2a4." + +#: ../../build/NEWS:3260 +msgid "Update OS X installer to use SQLite 3.14.1 and XZ 5.2.2." +msgstr "" + +#: ../../build/NEWS:3262 +msgid "" +"`bpo-21122 `__: Fix LTO builds on OS X." +msgstr "" +"`bpo-21122 `__: Fix LTO builds on OS X." + +#: ../../build/NEWS:3264 +msgid "" +"`bpo-17128 `__: Build OS X installer " +"with a private copy of OpenSSL. Also provide a sample Install Certificates " +"command script to install a set of root certificates from the third-party " +"certifi module." +msgstr "" +"`bpo-17128 `__: Build OS X installer " +"with a private copy of OpenSSL. Also provide a sample Install Certificates " +"command script to install a set of root certificates from the third-party " +"certifi module." + +#: ../../build/NEWS:3271 ../../build/NEWS:5980 +msgid "" +"`bpo-27952 `__: Get Tools/scripts/fixcid." +"py working with Python 3 and the current \"re\" module, avoid invalid Python " +"backslash escapes, and fix a bug parsing escaped C quote signs." +msgstr "" +"`bpo-27952 `__: Get Tools/scripts/fixcid." +"py working with Python 3 and the current \"re\" module, avoid invalid Python " +"backslash escapes, and fix a bug parsing escaped C quote signs." + +#: ../../build/NEWS:3278 +msgid "" +"`bpo-28065 `__: Update xz dependency to " +"5.2.2 and build it from source." +msgstr "" +"`bpo-28065 `__: Update xz dependency to " +"5.2.2 and build it from source." + +#: ../../build/NEWS:3280 ../../build/NEWS:5997 +msgid "" +"`bpo-25144 `__: Ensures TargetDir is set " +"before continuing with custom install." +msgstr "" +"`bpo-25144 `__: Ensures TargetDir is set " +"before continuing with custom install." + +#: ../../build/NEWS:3282 +msgid "" +"`bpo-1602 `__: Windows console doesn't " +"input or print Unicode (PEP 528)" +msgstr "" +"`bpo-1602 `__: Windows console doesn't " +"input or print Unicode (PEP 528)" + +#: ../../build/NEWS:3284 +msgid "" +"`bpo-27781 `__: Change file system " +"encoding on Windows to UTF-8 (PEP 529)" +msgstr "" +"`bpo-27781 `__: Change file system " +"encoding on Windows to UTF-8 (PEP 529)" + +#: ../../build/NEWS:3286 +msgid "" +"`bpo-27731 `__: Opt-out of MAX_PATH on " +"Windows 10" +msgstr "" +"`bpo-27731 `__: Opt-out of MAX_PATH on " +"Windows 10" + +#: ../../build/NEWS:3288 +msgid "" +"`bpo-6135 `__: Adds encoding and errors " +"parameters to subprocess." +msgstr "" +"`bpo-6135 `__: Adds encoding and errors " +"parameters to subprocess." + +#: ../../build/NEWS:3290 +msgid "" +"`bpo-27959 `__: Adds oem encoding, alias " +"ansi to mbcs, move aliasmbcs to codec lookup." +msgstr "" +"`bpo-27959 `__: Adds oem encoding, alias " +"ansi to mbcs, move aliasmbcs to codec lookup." + +#: ../../build/NEWS:3293 +msgid "" +"`bpo-27982 `__: The functions of the " +"winsound module now accept keyword arguments." +msgstr "" +"`bpo-27982 `__: The functions of the " +"winsound module now accept keyword arguments." + +#: ../../build/NEWS:3296 +msgid "" +"`bpo-20366 `__: Build full text search " +"support into SQLite on Windows." +msgstr "" +"`bpo-20366 `__: Build full text search " +"support into SQLite on Windows." + +#: ../../build/NEWS:3298 +msgid "" +"`bpo-27756 `__: Adds new icons for " +"Python files and processes on Windows. Designs by Cherry Wang." +msgstr "" +"`bpo-27756 `__: Adds new icons for " +"Python files and processes on Windows. Designs by Cherry Wang." + +#: ../../build/NEWS:3301 +msgid "" +"`bpo-27883 `__: Update sqlite to " +"3.14.1.0 on Windows." +msgstr "" +"`bpo-27883 `__: Update sqlite to " +"3.14.1.0 on Windows." + +#: ../../build/NEWS:3305 +msgid "Python 3.6.0 alpha 4" +msgstr "Python 3.6.0 alpha 4" + +#: ../../build/NEWS:3316 +msgid "" +"`bpo-26823 `__: Large sections of " +"repeated lines in tracebacks are now abbreviated as \"[Previous line " +"repeated {count} more times]\" by the builtin traceback rendering. Patch by " +"Emanuel Barry." +msgstr "" +"`bpo-26823 `__: Large sections of " +"repeated lines in tracebacks are now abbreviated as \"[Previous line " +"repeated {count} more times]\" by the builtin traceback rendering. Patch by " +"Emanuel Barry." + +#: ../../build/NEWS:3320 +msgid "" +"`bpo-27574 `__: Decreased an overhead of " +"parsing keyword arguments in functions implemented with using Argument " +"Clinic." +msgstr "" +"`bpo-27574 `__: Decreased an overhead of " +"parsing keyword arguments in functions implemented with using Argument " +"Clinic." + +#: ../../build/NEWS:3323 +msgid "" +"`bpo-22557 `__: Now importing already " +"imported modules is up to 2.5 times faster." +msgstr "" +"`bpo-22557 `__: Now importing already " +"imported modules is up to 2.5 times faster." + +#: ../../build/NEWS:3326 +msgid "" +"`bpo-17596 `__: Include to " +"help with Min GW building." +msgstr "" +"`bpo-17596 `__: Include to " +"help with Min GW building." + +#: ../../build/NEWS:3328 +msgid "" +"`bpo-17599 `__: On Windows, rename the " +"privately defined REPARSE_DATA_BUFFER structure to avoid conflicting with " +"the definition from Min GW." +msgstr "" +"`bpo-17599 `__: On Windows, rename the " +"privately defined REPARSE_DATA_BUFFER structure to avoid conflicting with " +"the definition from Min GW." + +#: ../../build/NEWS:3331 ../../build/NEWS:5501 +msgid "" +"`bpo-27507 `__: Add integer overflow " +"check in bytearray.extend(). Patch by Xiang Zhang." +msgstr "" +"`bpo-27507 `__: Add integer overflow " +"check in bytearray.extend(). Patch by Xiang Zhang." + +#: ../../build/NEWS:3334 ../../build/NEWS:5504 +msgid "" +"`bpo-27581 `__: Don't rely on wrapping " +"for overflow check in PySequence_Tuple(). Patch by Xiang Zhang." +msgstr "" +"`bpo-27581 `__: Don't rely on wrapping " +"for overflow check in PySequence_Tuple(). Patch by Xiang Zhang." + +#: ../../build/NEWS:3337 +msgid "" +"`bpo-1621 `__: Avoid signed integer " +"overflow in list and tuple operations. Patch by Xiang Zhang." +msgstr "" +"`bpo-1621 `__: Avoid signed integer " +"overflow in list and tuple operations. Patch by Xiang Zhang." + +#: ../../build/NEWS:3340 +msgid "" +"`bpo-27419 `__: Standard __import__() no " +"longer look up \"__import__\" in globals or builtins for importing " +"submodules or \"from import\". Fixed a crash if raise a warning about " +"unabling to resolve package from __spec__ or __package__." +msgstr "" +"`bpo-27419 `__: Standard __import__() no " +"longer look up \"__import__\" in globals or builtins for importing " +"submodules or \"from import\". Fixed a crash if raise a warning about " +"unabling to resolve package from __spec__ or __package__." + +#: ../../build/NEWS:3345 ../../build/NEWS:5493 +msgid "" +"`bpo-27083 `__: Respect the PYTHONCASEOK " +"environment variable under Windows." +msgstr "" +"`bpo-27083 `__: Respect the PYTHONCASEOK " +"environment variable under Windows." + +#: ../../build/NEWS:3347 ../../build/NEWS:5495 +msgid "" +"`bpo-27514 `__: Make having too many " +"statically nested blocks a SyntaxError instead of SystemError." +msgstr "" +"`bpo-27514 `__: Make having too many " +"statically nested blocks a SyntaxError instead of SystemError." + +#: ../../build/NEWS:3350 +msgid "" +"`bpo-27366 `__: Implemented PEP 487 " +"(Simpler customization of class creation). Upon subclassing, the " +"__init_subclass__ classmethod is called on the base class. Descriptors are " +"initialized with __set_name__ after class creation." +msgstr "" +"`bpo-27366 `__: Implemented PEP 487 " +"(Simpler customization of class creation). Upon subclassing, the " +"__init_subclass__ classmethod is called on the base class. Descriptors are " +"initialized with __set_name__ after class creation." + +#: ../../build/NEWS:3360 +msgid "" +"`bpo-27598 `__: Add Collections to " +"collections.abc. Patch by Ivan Levkivskyi, docs by Neil Girdhar." +msgstr "" +"`bpo-27598 `__: Add Collections to " +"collections.abc. Patch by Ivan Levkivskyi, docs by Neil Girdhar." + +#: ../../build/NEWS:3363 +msgid "" +"`bpo-25958 `__: Support \"anti-" +"registration\" of special methods from various ABCs, like __hash__, __iter__ " +"or __len__. All these (and several more) can be set to None in an " +"implementation class and the behavior will be as if the method is not " +"defined at all. (Previously, this mechanism existed only for __hash__, to " +"make mutable classes unhashable.) Code contributed by Andrew Barnert and " +"Ivan Levkivskyi." +msgstr "" +"`bpo-25958 `__: Support \"anti-" +"registration\" of special methods from various ABCs, like __hash__, __iter__ " +"or __len__. All these (and several more) can be set to None in an " +"implementation class and the behavior will be as if the method is not " +"defined at all. (Previously, this mechanism existed only for __hash__, to " +"make mutable classes unhashable.) Code contributed by Andrew Barnert and " +"Ivan Levkivskyi." + +#: ../../build/NEWS:3370 +msgid "" +"`bpo-16764 `__: Support keyword " +"arguments to zlib.decompress(). Patch by Xiang Zhang." +msgstr "" +"`bpo-16764 `__: Support keyword " +"arguments to zlib.decompress(). Patch by Xiang Zhang." + +#: ../../build/NEWS:3373 +msgid "" +"`bpo-27736 `__: Prevent segfault after " +"interpreter re-initialization due to ref count problem introduced in code " +"for `bpo-27038 `__ in 3.6.0a3. Patch by " +"Xiang Zhang." +msgstr "" +"`bpo-27736 `__: Prevent segfault after " +"interpreter re-initialization due to ref count problem introduced in code " +"for `bpo-27038 `__ in 3.6.0a3. Patch by " +"Xiang Zhang." + +#: ../../build/NEWS:3380 +msgid "" +"`bpo-12345 `__: Add mathematical " +"constant tau to math and cmath. See also PEP 628." +msgstr "" +"`bpo-12345 `__: Add mathematical " +"constant tau to math and cmath. See also PEP 628." + +#: ../../build/NEWS:3383 +msgid "" +"`bpo-26823 `__: traceback.StackSummary." +"format now abbreviates large sections of repeated lines as \"[Previous line " +"repeated {count} more times]\" (this change then further affects other " +"traceback display operations in the module). Patch by Emanuel Barry." +msgstr "" +"`bpo-26823 `__: traceback.StackSummary." +"format now abbreviates large sections of repeated lines as \"[Previous line " +"repeated {count} more times]\" (this change then further affects other " +"traceback display operations in the module). Patch by Emanuel Barry." + +#: ../../build/NEWS:3388 +msgid "" +"`bpo-27664 `__: Add to concurrent." +"futures.thread.ThreadPoolExecutor() the ability to specify a thread name " +"prefix." +msgstr "" +"`bpo-27664 `__: Add to concurrent." +"futures.thread.ThreadPoolExecutor() the ability to specify a thread name " +"prefix." + +#: ../../build/NEWS:3391 +msgid "" +"`bpo-27181 `__: Add geometric_mean and " +"harmonic_mean to statistics module." +msgstr "" +"`bpo-27181 `__: Add geometric_mean and " +"harmonic_mean to statistics module." + +#: ../../build/NEWS:3393 +msgid "" +"`bpo-27573 `__: code.interact now prints " +"an message when exiting." +msgstr "" +"`bpo-27573 `__: code.interact now prints " +"an message when exiting." + +#: ../../build/NEWS:3395 +msgid "" +"`bpo-6422 `__: Add autorange method to " +"timeit.Timer objects." +msgstr "" +"`bpo-6422 `__: Add autorange method to " +"timeit.Timer objects." + +#: ../../build/NEWS:3397 ../../build/NEWS:5743 +msgid "" +"`bpo-27773 `__: Correct some memory " +"management errors server_hostname in _ssl.wrap_socket()." +msgstr "" +"`bpo-27773 `__: Correct some memory " +"management errors server_hostname in _ssl.wrap_socket()." + +#: ../../build/NEWS:3400 +msgid "" +"`bpo-26750 `__: unittest.mock." +"create_autospec() now works properly for subclasses of property() and other " +"data descriptors. Removes the never publicly used, never documented " +"unittest.mock.DescriptorTypes tuple." +msgstr "" +"`bpo-26750 `__: unittest.mock." +"create_autospec() now works properly for subclasses of property() and other " +"data descriptors. Removes the never publicly used, never documented " +"unittest.mock.DescriptorTypes tuple." + +#: ../../build/NEWS:3404 +msgid "" +"`bpo-26754 `__: Undocumented support of " +"general bytes-like objects as path in compile() and similar functions is now " +"deprecated." +msgstr "" +"`bpo-26754 `__: Undocumented support of " +"general bytes-like objects as path in compile() and similar functions is now " +"deprecated." + +#: ../../build/NEWS:3407 +msgid "" +"`bpo-26800 `__: Undocumented support of " +"general bytes-like objects as paths in os functions is now deprecated." +msgstr "" +"`bpo-26800 `__: Undocumented support of " +"general bytes-like objects as paths in os functions is now deprecated." + +#: ../../build/NEWS:3410 +msgid "" +"`bpo-26981 `__: Add _order_ " +"compatibility shim to enum.Enum for Python 2/3 code bases." +msgstr "" +"`bpo-26981 `__: Add _order_ " +"compatibility shim to enum.Enum for Python 2/3 code bases." + +#: ../../build/NEWS:3413 +msgid "" +"`bpo-27661 `__: Added tzinfo keyword " +"argument to datetime.combine." +msgstr "" +"`bpo-27661 `__: Added tzinfo keyword " +"argument to datetime.combine." + +#: ../../build/NEWS:3415 ../../build/NEWS:5749 +msgid "" +"In the curses module, raise an error if window.getstr() or window.instr() is " +"passed a negative value." +msgstr "" + +#: ../../build/NEWS:3418 ../../build/NEWS:5752 +msgid "" +"`bpo-27783 `__: Fix possible usage of " +"uninitialized memory in operator.methodcaller." +msgstr "" +"`bpo-27783 `__: Fix possible usage of " +"uninitialized memory in operator.methodcaller." + +#: ../../build/NEWS:3421 ../../build/NEWS:5755 +msgid "" +"`bpo-27774 `__: Fix possible Py_DECREF " +"on unowned object in _sre." +msgstr "" +"`bpo-27774 `__: Fix possible Py_DECREF " +"on unowned object in _sre." + +#: ../../build/NEWS:3423 ../../build/NEWS:5757 +msgid "" +"`bpo-27760 `__: Fix possible integer " +"overflow in binascii.b2a_qp." +msgstr "" +"`bpo-27760 `__: Fix possible integer " +"overflow in binascii.b2a_qp." + +#: ../../build/NEWS:3425 ../../build/NEWS:5759 +msgid "" +"`bpo-27758 `__: Fix possible integer " +"overflow in the _csv module for large record lengths." +msgstr "" +"`bpo-27758 `__: Fix possible integer " +"overflow in the _csv module for large record lengths." + +#: ../../build/NEWS:3428 ../../build/NEWS:5762 +msgid "" +"`bpo-27568 `__: Prevent HTTPoxy attack " +"(CVE-2016-1000110). Ignore the HTTP_PROXY variable when REQUEST_METHOD " +"environment is set, which indicates that the script is in CGI mode." +msgstr "" +"`bpo-27568 `__: Prevent HTTPoxy attack " +"(CVE-2016-1000110). Ignore the HTTP_PROXY variable when REQUEST_METHOD " +"environment is set, which indicates that the script is in CGI mode." + +#: ../../build/NEWS:3432 +msgid "" +"`bpo-7063 `__: Remove dead code from the " +"\"array\" module's slice handling. Patch by Chuck." +msgstr "" +"`bpo-7063 `__: Remove dead code from the " +"\"array\" module's slice handling. Patch by Chuck." + +#: ../../build/NEWS:3435 ../../build/NEWS:5766 +msgid "" +"`bpo-27656 `__: Do not assume sched.h " +"defines any SCHED_* constants." +msgstr "" +"`bpo-27656 `__: Do not assume sched.h " +"defines any SCHED_* constants." + +#: ../../build/NEWS:3437 ../../build/NEWS:5768 +msgid "" +"`bpo-27130 `__: In the \"zlib\" module, " +"fix handling of large buffers (typically 4 GiB) when compressing and " +"decompressing. Previously, inputs were limited to 4 GiB, and compression " +"and decompression operations did not properly handle results of 4 GiB." +msgstr "" +"`bpo-27130 `__: In the \"zlib\" module, " +"fix handling of large buffers (typically 4 GiB) when compressing and " +"decompressing. Previously, inputs were limited to 4 GiB, and compression " +"and decompression operations did not properly handle results of 4 GiB." + +#: ../../build/NEWS:3442 +msgid "" +"`bpo-24773 `__: Implemented PEP 495 " +"(Local Time Disambiguation)." +msgstr "" +"`bpo-24773 `__: Implemented PEP 495 " +"(Local Time Disambiguation)." + +#: ../../build/NEWS:3444 +msgid "" +"Expose the EPOLLEXCLUSIVE constant (when it is defined) in the select module." +msgstr "" + +#: ../../build/NEWS:3447 +msgid "" +"`bpo-27567 `__: Expose the EPOLLRDHUP " +"and POLLRDHUP constants in the select module." +msgstr "" +"`bpo-27567 `__: Expose the EPOLLRDHUP " +"and POLLRDHUP constants in the select module." + +#: ../../build/NEWS:3450 +msgid "" +"`bpo-1621 `__: Avoid signed int negation " +"overflow in the \"audioop\" module." +msgstr "" +"`bpo-1621 `__: Avoid signed int negation " +"overflow in the \"audioop\" module." + +#: ../../build/NEWS:3452 ../../build/NEWS:5773 +msgid "" +"`bpo-27533 `__: Release GIL in nt._isdir" +msgstr "" +"`bpo-27533 `__: Release GIL in nt._isdir" + +#: ../../build/NEWS:3454 ../../build/NEWS:5775 +msgid "" +"`bpo-17711 `__: Fixed unpickling by the " +"persistent ID with protocol 0. Original patch by Alexandre Vassalotti." +msgstr "" +"`bpo-17711 `__: Fixed unpickling by the " +"persistent ID with protocol 0. Original patch by Alexandre Vassalotti." + +#: ../../build/NEWS:3457 ../../build/NEWS:5778 +msgid "" +"`bpo-27522 `__: Avoid an unintentional " +"reference cycle in email.feedparser." +msgstr "" +"`bpo-27522 `__: Avoid an unintentional " +"reference cycle in email.feedparser." + +#: ../../build/NEWS:3459 +msgid "" +"`bpo-27512 `__: Fix a segfault when os." +"fspath() called an __fspath__() method that raised an exception. Patch by " +"Xiang Zhang." +msgstr "" +"`bpo-27512 `__: Fix a segfault when os." +"fspath() called an __fspath__() method that raised an exception. Patch by " +"Xiang Zhang." + +#: ../../build/NEWS:3465 ../../build/NEWS:5929 +msgid "" +"`bpo-27714 `__: text_textview and " +"test_autocomplete now pass when re-run in the same process. This occurs " +"when test_idle fails when run with the -w option but without -jn. Fix " +"warning from test_config." +msgstr "" +"`bpo-27714 `__: text_textview and " +"test_autocomplete now pass when re-run in the same process. This occurs " +"when test_idle fails when run with the -w option but without -jn. Fix " +"warning from test_config." + +#: ../../build/NEWS:3473 +msgid "" +"`bpo-27620 `__: Escape key now closes " +"Query box as cancelled." +msgstr "" +"`bpo-27620 `__: Escape key now closes " +"Query box as cancelled." + +#: ../../build/NEWS:3475 +msgid "" +"`bpo-27609 `__: IDLE: tab after initial " +"whitespace should tab, not autocomplete. This fixes problem with writing " +"docstrings at least twice indented." +msgstr "" +"`bpo-27609 `__: IDLE: tab after initial " +"whitespace should tab, not autocomplete. This fixes problem with writing " +"docstrings at least twice indented." + +#: ../../build/NEWS:3479 +msgid "" +"`bpo-27609 `__: Explicitly return None " +"when there are also non-None returns. In a few cases, reverse a condition " +"and eliminate a return." +msgstr "" +"`bpo-27609 `__: Explicitly return None " +"when there are also non-None returns. In a few cases, reverse a condition " +"and eliminate a return." + +#: ../../build/NEWS:3482 ../../build/NEWS:5933 +msgid "" +"`bpo-25507 `__: IDLE no longer runs " +"buggy code because of its tkinter imports. Users must include the same " +"imports required to run directly in Python." +msgstr "" +"`bpo-25507 `__: IDLE no longer runs " +"buggy code because of its tkinter imports. Users must include the same " +"imports required to run directly in Python." + +#: ../../build/NEWS:3485 ../../build/NEWS:3678 +msgid "" +"`bpo-27173 `__: Add 'IDLE Modern Unix' " +"to the built-in key sets. Make the default key set depend on the platform. " +"Add tests for the changes to the config module." +msgstr "" +"`bpo-27173 `__: Add 'IDLE Modern Unix' " +"to the built-in key sets. Make the default key set depend on the platform. " +"Add tests for the changes to the config module." + +#: ../../build/NEWS:3489 ../../build/NEWS:3685 ../../build/NEWS:5936 +msgid "" +"`bpo-27452 `__: add line counter and crc " +"to IDLE configHandler test dump." +msgstr "" +"`bpo-27452 `__: add line counter and crc " +"to IDLE configHandler test dump." + +#: ../../build/NEWS:3494 +msgid "" +"`bpo-25805 `__: Skip a test in " +"test_pkgutil as needed that doesn't work when ``__name__ == __main__``. " +"Patch by SilentGhost." +msgstr "" +"`bpo-25805 `__: Skip a test in " +"test_pkgutil as needed that doesn't work when ``__name__ == __main__``. " +"Patch by SilentGhost." + +#: ../../build/NEWS:3497 +msgid "" +"`bpo-27472 `__: Add test.support." +"unix_shell as the path to the default shell." +msgstr "" +"`bpo-27472 `__: Add test.support." +"unix_shell as the path to the default shell." + +#: ../../build/NEWS:3499 ../../build/NEWS:5974 +msgid "" +"`bpo-27369 `__: In test_pyexpat, avoid " +"testing an error message detail that changed in Expat 2.2.0." +msgstr "" +"`bpo-27369 `__: In test_pyexpat, avoid " +"testing an error message detail that changed in Expat 2.2.0." + +#: ../../build/NEWS:3502 +msgid "" +"`bpo-27594 `__: Prevent assertion error " +"when running test_ast with coverage enabled: ensure code object has a valid " +"first line number. Patch suggested by Ivan Levkivskyi." +msgstr "" +"`bpo-27594 `__: Prevent assertion error " +"when running test_ast with coverage enabled: ensure code object has a valid " +"first line number. Patch suggested by Ivan Levkivskyi." + +#: ../../build/NEWS:3509 +msgid "" +"`bpo-27647 `__: Update bundled Tcl/Tk to " +"8.6.6." +msgstr "" +"`bpo-27647 `__: Update bundled Tcl/Tk to " +"8.6.6." + +#: ../../build/NEWS:3511 +msgid "" +"`bpo-27610 `__: Adds PEP 514 metadata to " +"Windows installer" +msgstr "" +"`bpo-27610 `__: Adds PEP 514 metadata to " +"Windows installer" + +#: ../../build/NEWS:3513 ../../build/NEWS:5999 +msgid "" +"`bpo-27469 `__: Adds a shell extension " +"to the launcher so that drag and drop works correctly." +msgstr "" +"`bpo-27469 `__: Adds a shell extension " +"to the launcher so that drag and drop works correctly." + +#: ../../build/NEWS:3516 +msgid "" +"`bpo-27309 `__: Enables proper Windows " +"styles in python[w].exe manifest." +msgstr "" +"`bpo-27309 `__: Enables proper Windows " +"styles in python[w].exe manifest." + +#: ../../build/NEWS:3524 +msgid "" +"`bpo-25825 `__: Correct the references " +"to Modules/python.exp, which is required on AIX. The references were " +"accidentally changed in 3.5.0a1." +msgstr "" +"`bpo-25825 `__: Correct the references " +"to Modules/python.exp, which is required on AIX. The references were " +"accidentally changed in 3.5.0a1." + +#: ../../build/NEWS:3527 ../../build/NEWS:6052 +msgid "" +"`bpo-27453 `__: CPP invocation in " +"configure must use CPPFLAGS. Patch by Chi Hsuan Yen." +msgstr "" +"`bpo-27453 `__: CPP invocation in " +"configure must use CPPFLAGS. Patch by Chi Hsuan Yen." + +#: ../../build/NEWS:3530 ../../build/NEWS:6055 +msgid "" +"`bpo-27641 `__: The configure script now " +"inserts comments into the makefile to prevent the pgen and _freeze_importlib " +"executables from being cross- compiled." +msgstr "" +"`bpo-27641 `__: The configure script now " +"inserts comments into the makefile to prevent the pgen and _freeze_importlib " +"executables from being cross- compiled." + +#: ../../build/NEWS:3534 ../../build/NEWS:6059 +msgid "" +"`bpo-26662 `__: Set PYTHON_FOR_GEN in " +"configure as the Python program to be used for file generation during the " +"build." +msgstr "" +"`bpo-26662 `__: Set PYTHON_FOR_GEN in " +"configure as the Python program to be used for file generation during the " +"build." + +#: ../../build/NEWS:3537 ../../build/NEWS:6062 +msgid "" +"`bpo-10910 `__: Avoid C++ compilation " +"errors on FreeBSD and OS X. Also update FreedBSD version checks for the " +"original ctype UTF-8 workaround." +msgstr "" +"`bpo-10910 `__: Avoid C++ compilation " +"errors on FreeBSD and OS X. Also update FreedBSD version checks for the " +"original ctype UTF-8 workaround." + +#: ../../build/NEWS:3542 +msgid "Python 3.6.0 alpha 3" +msgstr "Python 3.6.0 alpha 3" + +#: ../../build/NEWS:3552 +msgid "" +"`bpo-23034 `__: The output of a special " +"Python build with defined COUNT_ALLOCS, SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT " +"macros is now off by default. It can be re-enabled using the \"-X " +"showalloccount\" option. It now outputs to stderr instead of stdout." +msgstr "" +"`bpo-23034 `__: The output of a special " +"Python build with defined COUNT_ALLOCS, SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT " +"macros is now off by default. It can be re-enabled using the \"-X " +"showalloccount\" option. It now outputs to stderr instead of stdout." + +#: ../../build/NEWS:3557 ../../build/NEWS:5507 +msgid "" +"`bpo-27443 `__: __length_hint__() of " +"bytearray iterators no longer return a negative integer for a resized " +"bytearray." +msgstr "" +"`bpo-27443 `__: __length_hint__() of " +"bytearray iterators no longer return a negative integer for a resized " +"bytearray." + +#: ../../build/NEWS:3560 +msgid "" +"`bpo-27007 `__: The fromhex() class " +"methods of bytes and bytearray subclasses now return an instance of " +"corresponding subclass." +msgstr "" +"`bpo-27007 `__: The fromhex() class " +"methods of bytes and bytearray subclasses now return an instance of " +"corresponding subclass." + +#: ../../build/NEWS:3566 ../../build/NEWS:5780 +msgid "" +"`bpo-26844 `__: Fix error message for " +"imp.find_module() to refer to 'path' instead of 'name'. Patch by Lev Maximov." +msgstr "" +"`bpo-26844 `__: Fix error message for " +"imp.find_module() to refer to 'path' instead of 'name'. Patch by Lev Maximov." + +#: ../../build/NEWS:3569 ../../build/NEWS:5783 +msgid "" +"`bpo-23804 `__: Fix SSL zero-length " +"recv() calls to not block and not raise an error about unclean EOF." +msgstr "" +"`bpo-23804 `__: Fix SSL zero-length " +"recv() calls to not block and not raise an error about unclean EOF." + +#: ../../build/NEWS:3572 ../../build/NEWS:5786 +msgid "" +"`bpo-27466 `__: Change time format " +"returned by http.cookie.time2netscape, confirming the netscape cookie format " +"and making it consistent with documentation." +msgstr "" +"`bpo-27466 `__: Change time format " +"returned by http.cookie.time2netscape, confirming the netscape cookie format " +"and making it consistent with documentation." + +#: ../../build/NEWS:3576 +msgid "" +"`bpo-21708 `__: Deprecated dbm.dumb " +"behavior that differs from common dbm behavior: creating a database in 'r' " +"and 'w' modes and modifying a database in 'r' mode." +msgstr "" +"`bpo-21708 `__: Deprecated dbm.dumb " +"behavior that differs from common dbm behavior: creating a database in 'r' " +"and 'w' modes and modifying a database in 'r' mode." + +#: ../../build/NEWS:3580 +msgid "" +"`bpo-26721 `__: Change the socketserver." +"StreamRequestHandler.wfile attribute to implement BufferedIOBase. In " +"particular, the write() method no longer does partial writes." +msgstr "" +"`bpo-26721 `__: Change the socketserver." +"StreamRequestHandler.wfile attribute to implement BufferedIOBase. In " +"particular, the write() method no longer does partial writes." + +#: ../../build/NEWS:3584 +msgid "" +"`bpo-22115 `__: Added methods trace_add, " +"trace_remove and trace_info in the tkinter.Variable class. They replace old " +"methods trace_variable, trace, trace_vdelete and trace_vinfo that use " +"obsolete Tcl commands and might not work in future versions of Tcl. Fixed " +"old tracing methods: trace_vdelete() with wrong mode no longer break " +"tracing, trace_vinfo() now always returns a list of pairs of strings, " +"tracing in the \"u\" mode now works." +msgstr "" +"`bpo-22115 `__: Added methods trace_add, " +"trace_remove and trace_info in the tkinter.Variable class. They replace old " +"methods trace_variable, trace, trace_vdelete and trace_vinfo that use " +"obsolete Tcl commands and might not work in future versions of Tcl. Fixed " +"old tracing methods: trace_vdelete() with wrong mode no longer break " +"tracing, trace_vinfo() now always returns a list of pairs of strings, " +"tracing in the \"u\" mode now works." + +#: ../../build/NEWS:3592 +msgid "" +"`bpo-26243 `__: Only the level argument " +"to zlib.compress() is keyword argument now. The first argument is " +"positional-only." +msgstr "" +"`bpo-26243 `__: Only the level argument " +"to zlib.compress() is keyword argument now. The first argument is " +"positional-only." + +#: ../../build/NEWS:3595 +msgid "" +"`bpo-27038 `__: Expose the DirEntry type " +"as os.DirEntry. Code patch by Jelle Zijlstra." +msgstr "" +"`bpo-27038 `__: Expose the DirEntry type " +"as os.DirEntry. Code patch by Jelle Zijlstra." + +#: ../../build/NEWS:3598 +msgid "" +"`bpo-27186 `__: Update os.fspath()/" +"PyOS_FSPath() to check the return value of __fspath__() to be either str or " +"bytes." +msgstr "" +"`bpo-27186 `__: Update os.fspath()/" +"PyOS_FSPath() to check the return value of __fspath__() to be either str or " +"bytes." + +#: ../../build/NEWS:3601 +msgid "" +"`bpo-18726 `__: All optional parameters " +"of the dump(), dumps(), load() and loads() functions and JSONEncoder and " +"JSONDecoder class constructors in the json module are now keyword-only." +msgstr "" +"`bpo-18726 `__: All optional parameters " +"of the dump(), dumps(), load() and loads() functions and JSONEncoder and " +"JSONDecoder class constructors in the json module are now keyword-only." + +#: ../../build/NEWS:3605 +msgid "" +"`bpo-27319 `__: Methods selection_set(), " +"selection_add(), selection_remove() and selection_toggle() of ttk.TreeView " +"now allow passing multiple items as multiple arguments instead of passing " +"them as a tuple. Deprecated undocumented ability of calling the selection() " +"method with arguments." +msgstr "" +"`bpo-27319 `__: Methods selection_set(), " +"selection_add(), selection_remove() and selection_toggle() of ttk.TreeView " +"now allow passing multiple items as multiple arguments instead of passing " +"them as a tuple. Deprecated undocumented ability of calling the selection() " +"method with arguments." + +#: ../../build/NEWS:3610 ../../build/NEWS:5800 +msgid "" +"`bpo-27079 `__: Fixed curses.ascii " +"functions isblank(), iscntrl() and ispunct()." +msgstr "" +"`bpo-27079 `__: Fixed curses.ascii " +"functions isblank(), iscntrl() and ispunct()." + +#: ../../build/NEWS:3613 +msgid "" +"`bpo-27294 `__: Numerical state in the " +"repr for Tkinter event objects is now represented as a combination of known " +"flags." +msgstr "" +"`bpo-27294 `__: Numerical state in the " +"repr for Tkinter event objects is now represented as a combination of known " +"flags." + +#: ../../build/NEWS:3616 +msgid "" +"`bpo-27177 `__: Match objects in the re " +"module now support index-like objects as group indices. Based on patches by " +"Jeroen Demeyer and Xiang Zhang." +msgstr "" +"`bpo-27177 `__: Match objects in the re " +"module now support index-like objects as group indices. Based on patches by " +"Jeroen Demeyer and Xiang Zhang." + +#: ../../build/NEWS:3619 ../../build/NEWS:5803 +msgid "" +"`bpo-26754 `__: Some functions " +"(compile() etc) accepted a filename argument encoded as an iterable of " +"integers. Now only strings and byte-like objects are accepted." +msgstr "" +"`bpo-26754 `__: Some functions " +"(compile() etc) accepted a filename argument encoded as an iterable of " +"integers. Now only strings and byte-like objects are accepted." + +#: ../../build/NEWS:3623 +msgid "" +"`bpo-26536 `__: socket.ioctl now " +"supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes." +msgstr "" +"`bpo-26536 `__: socket.ioctl now " +"supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes." + +#: ../../build/NEWS:3626 ../../build/NEWS:5807 +msgid "" +"`bpo-27048 `__: Prevents distutils " +"failing on Windows when environment variables contain non-ASCII characters" +msgstr "" +"`bpo-27048 `__: Prevents distutils " +"failing on Windows when environment variables contain non-ASCII characters" + +#: ../../build/NEWS:3629 ../../build/NEWS:5810 +msgid "" +"`bpo-27330 `__: Fixed possible leaks in " +"the ctypes module." +msgstr "" +"`bpo-27330 `__: Fixed possible leaks in " +"the ctypes module." + +#: ../../build/NEWS:3631 ../../build/NEWS:5812 +msgid "" +"`bpo-27238 `__: Got rid of bare excepts " +"in the turtle module. Original patch by Jelle Zijlstra." +msgstr "" +"`bpo-27238 `__: Got rid of bare excepts " +"in the turtle module. Original patch by Jelle Zijlstra." + +#: ../../build/NEWS:3634 ../../build/NEWS:5815 +msgid "" +"`bpo-27122 `__: When an exception is " +"raised within the context being managed by a contextlib.ExitStack() and one " +"of the exit stack generators catches and raises it in a chain, do not re-" +"raise the original exception when exiting, let the new chained one through. " +"This avoids the PEP 479 bug described in issue25782." +msgstr "" +"`bpo-27122 `__: When an exception is " +"raised within the context being managed by a contextlib.ExitStack() and one " +"of the exit stack generators catches and raises it in a chain, do not re-" +"raise the original exception when exiting, let the new chained one through. " +"This avoids the PEP 479 bug described in issue25782." + +#: ../../build/NEWS:3650 +msgid "" +"`bpo-16864 `__: sqlite3.Cursor.lastrowid " +"now supports REPLACE statement. Initial patch by Alex LordThorsen." +msgstr "" +"`bpo-16864 `__: sqlite3.Cursor.lastrowid " +"now supports REPLACE statement. Initial patch by Alex LordThorsen." + +#: ../../build/NEWS:3653 ../../build/NEWS:5831 +msgid "" +"`bpo-26386 `__: Fixed ttk.TreeView " +"selection operations with item id's containing spaces." +msgstr "" +"`bpo-26386 `__: Fixed ttk.TreeView " +"selection operations with item id's containing spaces." + +#: ../../build/NEWS:3656 +msgid "" +"`bpo-8637 `__: Honor a pager set by the " +"env var MANPAGER (in preference to one set by the env var PAGER)." +msgstr "" +"`bpo-8637 `__: Honor a pager set by the " +"env var MANPAGER (in preference to one set by the env var PAGER)." + +#: ../../build/NEWS:3667 ../../build/NEWS:5842 +msgid "" +"`bpo-16182 `__: Fix various functions in " +"the \"readline\" module to use the locale encoding, and fix get_begidx() and " +"get_endidx() to return code point indexes." +msgstr "" +"`bpo-16182 `__: Fix various functions in " +"the \"readline\" module to use the locale encoding, and fix get_begidx() and " +"get_endidx() to return code point indexes." + +#: ../../build/NEWS:3671 ../../build/NEWS:5846 +msgid "" +"`bpo-27392 `__: Add loop." +"connect_accepted_socket(). Patch by Jim Fulton." +msgstr "" +"`bpo-27392 `__: Add loop." +"connect_accepted_socket(). Patch by Jim Fulton." + +#: ../../build/NEWS:3676 +msgid "" +"`bpo-27477 `__: IDLE search dialogs now " +"use ttk widgets." +msgstr "" +"`bpo-27477 `__: IDLE search dialogs now " +"use ttk widgets." + +#: ../../build/NEWS:3682 +msgid "" +"`bpo-27452 `__: make command line \"idle-" +"test> python test_help.py\" work. __file__ is relative when python is " +"started in the file's directory." +msgstr "" +"`bpo-27452 `__: make command line \"idle-" +"test> python test_help.py\" work. __file__ is relative when python is " +"started in the file's directory." + +#: ../../build/NEWS:3687 +msgid "" +"`bpo-27380 `__: IDLE: add query.py with " +"base Query dialog and ttk widgets. Module had subclasses SectionName, " +"ModuleName, and HelpSource, which are used to get information from users by " +"configdialog and file =>Load Module. Each subclass has itw own validity " +"checks. Using ModuleName allows users to edit bad module names instead of " +"starting over. Add tests and delete the two files combined into the new one." +msgstr "" +"`bpo-27380 `__: IDLE: add query.py with " +"base Query dialog and ttk widgets. Module had subclasses SectionName, " +"ModuleName, and HelpSource, which are used to get information from users by " +"configdialog and file =>Load Module. Each subclass has itw own validity " +"checks. Using ModuleName allows users to edit bad module names instead of " +"starting over. Add tests and delete the two files combined into the new one." + +#: ../../build/NEWS:3694 +msgid "" +"`bpo-27372 `__: Test_idle no longer " +"changes the locale." +msgstr "" +"`bpo-27372 `__: Test_idle no longer " +"changes the locale." + +#: ../../build/NEWS:3696 ../../build/NEWS:5938 +msgid "" +"`bpo-27365 `__: Allow non-ascii chars in " +"IDLE NEWS.txt, for contributor names." +msgstr "" +"`bpo-27365 `__: Allow non-ascii chars in " +"IDLE NEWS.txt, for contributor names." + +#: ../../build/NEWS:3702 +msgid "" +"`bpo-24137 `__: Run IDLE, test_idle, and " +"htest with tkinter default root disabled. Fix code and tests that fail with " +"this restriction. Fix htests to not create a second and redundant root and " +"mainloop." +msgstr "" +"`bpo-24137 `__: Run IDLE, test_idle, and " +"htest with tkinter default root disabled. Fix code and tests that fail with " +"this restriction. Fix htests to not create a second and redundant root and " +"mainloop." + +#: ../../build/NEWS:3706 +msgid "" +"`bpo-27310 `__: Fix IDLE.app failure to " +"launch on OS X due to vestigial import." +msgstr "" +"`bpo-27310 `__: Fix IDLE.app failure to " +"launch on OS X due to vestigial import." + +#: ../../build/NEWS:3711 +msgid "" +"`bpo-26754 `__: PyUnicode_FSDecoder() " +"accepted a filename argument encoded as an iterable of integers. Now only " +"strings and byte-like objects are accepted." +msgstr "" +"`bpo-26754 `__: PyUnicode_FSDecoder() " +"accepted a filename argument encoded as an iterable of integers. Now only " +"strings and byte-like objects are accepted." + +#: ../../build/NEWS:3718 ../../build/NEWS:6025 +msgid "" +"`bpo-28066 `__: Fix the logic that " +"searches build directories for generated include files when building outside " +"the source tree." +msgstr "" +"`bpo-28066 `__: Fix the logic that " +"searches build directories for generated include files when building outside " +"the source tree." + +#: ../../build/NEWS:3721 +msgid "" +"`bpo-27442 `__: Expose the Android API " +"level that python was built against, in sysconfig.get_config_vars() as " +"'ANDROID_API_LEVEL'." +msgstr "" +"`bpo-27442 `__: Expose the Android API " +"level that python was built against, in sysconfig.get_config_vars() as " +"'ANDROID_API_LEVEL'." + +#: ../../build/NEWS:3724 +msgid "" +"`bpo-27434 `__: The interpreter that " +"runs the cross-build, found in PATH, must now be of the same feature version " +"(e.g. 3.6) as the source being built." +msgstr "" +"`bpo-27434 `__: The interpreter that " +"runs the cross-build, found in PATH, must now be of the same feature version " +"(e.g. 3.6) as the source being built." + +#: ../../build/NEWS:3727 ../../build/NEWS:6077 +msgid "" +"`bpo-26930 `__: Update Windows builds to " +"use OpenSSL 1.0.2h." +msgstr "" +"`bpo-26930 `__: Update Windows builds to " +"use OpenSSL 1.0.2h." + +#: ../../build/NEWS:3729 +msgid "" +"`bpo-23968 `__: Rename the platform " +"directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET). Rename the " +"config directory (LIBPL) from config-$(LDVERSION) to config-$(LDVERSION)-" +"$(PLATFORM_TRIPLET). Install the platform specifc _sysconfigdata module into " +"the platform directory and rename it to include the ABIFLAGS." +msgstr "" +"`bpo-23968 `__: Rename the platform " +"directory from plat-$(MACHDEP) to plat-$(PLATFORM_TRIPLET). Rename the " +"config directory (LIBPL) from config-$(LDVERSION) to config-$(LDVERSION)-" +"$(PLATFORM_TRIPLET). Install the platform specifc _sysconfigdata module into " +"the platform directory and rename it to include the ABIFLAGS." + +#: ../../build/NEWS:3735 +msgid "Don't use largefile support for GNU/Hurd." +msgstr "" + +#: ../../build/NEWS:3740 ../../build/NEWS:5984 +msgid "" +"`bpo-27332 `__: Fixed the type of the " +"first argument of module-level functions generated by Argument Clinic. " +"Patch by Petr Viktorin." +msgstr "" +"`bpo-27332 `__: Fixed the type of the " +"first argument of module-level functions generated by Argument Clinic. " +"Patch by Petr Viktorin." + +#: ../../build/NEWS:3743 ../../build/NEWS:5987 +msgid "" +"`bpo-27418 `__: Fixed Tools/importbench/" +"importbench.py." +msgstr "" +"`bpo-27418 `__: Fixed Tools/importbench/" +"importbench.py." + +#: ../../build/NEWS:3751 +msgid "" +"`bpo-27285 `__: Update documentation to " +"reflect the deprecation of ``pyvenv`` and normalize on the term \"virtual " +"environment\". Patch by Steve Piercy." +msgstr "" +"`bpo-27285 `__: Update documentation to " +"reflect the deprecation of ``pyvenv`` and normalize on the term \"virtual " +"environment\". Patch by Steve Piercy." + +#: ../../build/NEWS:3757 +msgid "" +"`bpo-27027 `__: Added test.support." +"is_android that is True when this is an Android build." +msgstr "" +"`bpo-27027 `__: Added test.support." +"is_android that is True when this is an Android build." + +#: ../../build/NEWS:3762 +msgid "Python 3.6.0 alpha 2" +msgstr "Python 3.6.0 alpha 2" + +#: ../../build/NEWS:3769 +msgid "" +"`bpo-27095 `__: Simplified MAKE_FUNCTION " +"and removed MAKE_CLOSURE opcodes. Patch by Demur Rumed." +msgstr "" +"`bpo-27095 `__: Simplified MAKE_FUNCTION " +"and removed MAKE_CLOSURE opcodes. Patch by Demur Rumed." + +#: ../../build/NEWS:3772 +msgid "" +"`bpo-27190 `__: Raise NotSupportedError " +"if sqlite3 is older than 3.3.1. Patch by Dave Sawyer." +msgstr "" +"`bpo-27190 `__: Raise NotSupportedError " +"if sqlite3 is older than 3.3.1. Patch by Dave Sawyer." + +#: ../../build/NEWS:3775 +msgid "" +"`bpo-27286 `__: Fixed compiling " +"BUILD_MAP_UNPACK_WITH_CALL opcode. Calling function with generalized " +"unpacking (PEP 448) and conflicting keyword names could cause undefined " +"behavior." +msgstr "" +"`bpo-27286 `__: Fixed compiling " +"BUILD_MAP_UNPACK_WITH_CALL opcode. Calling function with generalized " +"unpacking (PEP 448) and conflicting keyword names could cause undefined " +"behavior." + +#: ../../build/NEWS:3779 +msgid "" +"`bpo-27140 `__: Added " +"BUILD_CONST_KEY_MAP opcode." +msgstr "" +"`bpo-27140 `__: Added " +"BUILD_CONST_KEY_MAP opcode." + +#: ../../build/NEWS:3781 +msgid "" +"`bpo-27186 `__: Add support for os." +"PathLike objects to open() (part of PEP 519)." +msgstr "" +"`bpo-27186 `__: Add support for os." +"PathLike objects to open() (part of PEP 519)." + +#: ../../build/NEWS:3784 ../../build/NEWS:6098 +msgid "" +"`bpo-27066 `__: Fixed SystemError if a " +"custom opener (for open()) returns a negative number without setting an " +"exception." +msgstr "" +"`bpo-27066 `__: Fixed SystemError if a " +"custom opener (for open()) returns a negative number without setting an " +"exception." + +#: ../../build/NEWS:3787 +msgid "" +"`bpo-26983 `__: float() now always " +"return an instance of exact float. The deprecation warning is emitted if " +"__float__ returns an instance of a strict subclass of float. In a future " +"versions of Python this can be an error." +msgstr "" +"`bpo-26983 `__: float() now always " +"return an instance of exact float. The deprecation warning is emitted if " +"__float__ returns an instance of a strict subclass of float. In a future " +"versions of Python this can be an error." + +#: ../../build/NEWS:3792 +msgid "" +"`bpo-27097 `__: Python interpreter is " +"now about 7% faster due to optimized instruction decoding. Based on patch " +"by Demur Rumed." +msgstr "" +"`bpo-27097 `__: Python interpreter is " +"now about 7% faster due to optimized instruction decoding. Based on patch " +"by Demur Rumed." + +#: ../../build/NEWS:3795 +msgid "" +"`bpo-26647 `__: Python interpreter now " +"uses 16-bit wordcode instead of bytecode. Patch by Demur Rumed." +msgstr "" +"`bpo-26647 `__: Python interpreter now " +"uses 16-bit wordcode instead of bytecode. Patch by Demur Rumed." + +#: ../../build/NEWS:3798 +msgid "" +"`bpo-23275 `__: Allow assigning to an " +"empty target list in round brackets: () = iterable." +msgstr "" +"`bpo-23275 `__: Allow assigning to an " +"empty target list in round brackets: () = iterable." + +#: ../../build/NEWS:3801 ../../build/NEWS:6220 +msgid "" +"`bpo-27243 `__: Update the __aiter__ " +"protocol: instead of returning an awaitable that resolves to an asynchronous " +"iterator, the asynchronous iterator should be returned directly. Doing the " +"former will trigger a PendingDeprecationWarning." +msgstr "" +"`bpo-27243 `__: Update the __aiter__ " +"protocol: instead of returning an awaitable that resolves to an asynchronous " +"iterator, the asynchronous iterator should be returned directly. Doing the " +"former will trigger a PendingDeprecationWarning." + +#: ../../build/NEWS:3809 +msgid "" +"Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants " +"exposed on the API which are not implemented on GNU/Hurd. They would not " +"work at runtime anyway." +msgstr "" + +#: ../../build/NEWS:3813 +msgid "" +"`bpo-27025 `__: Generated names for " +"Tkinter widgets are now more meanful and recognizirable." +msgstr "" +"`bpo-27025 `__: Generated names for " +"Tkinter widgets are now more meanful and recognizirable." + +#: ../../build/NEWS:3816 +msgid "" +"`bpo-25455 `__: Fixed crashes in repr of " +"recursive ElementTree.Element and functools.partial objects." +msgstr "" +"`bpo-25455 `__: Fixed crashes in repr of " +"recursive ElementTree.Element and functools.partial objects." + +#: ../../build/NEWS:3819 +msgid "" +"`bpo-27294 `__: Improved repr for " +"Tkinter event objects." +msgstr "" +"`bpo-27294 `__: Improved repr for " +"Tkinter event objects." + +#: ../../build/NEWS:3821 +msgid "" +"`bpo-20508 `__: Improve exception " +"message of IPv{4,6}Network.__getitem__. Patch by Gareth Rees." +msgstr "" +"`bpo-20508 `__: Improve exception " +"message of IPv{4,6}Network.__getitem__. Patch by Gareth Rees." + +#: ../../build/NEWS:3829 +msgid "" +"Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team " +"Oststrom." +msgstr "" + +#: ../../build/NEWS:3835 ../../build/NEWS:6236 +msgid "" +"`bpo-21386 `__: Implement missing " +"IPv4Address.is_global property. It was documented since 07a5610bae9d. " +"Initial patch by Roger Luethi." +msgstr "" +"`bpo-21386 `__: Implement missing " +"IPv4Address.is_global property. It was documented since 07a5610bae9d. " +"Initial patch by Roger Luethi." + +#: ../../build/NEWS:3838 +msgid "" +"`bpo-27029 `__: Removed deprecated " +"support of universal newlines mode from ZipFile.open()." +msgstr "" +"`bpo-27029 `__: Removed deprecated " +"support of universal newlines mode from ZipFile.open()." + +#: ../../build/NEWS:3841 +msgid "" +"`bpo-27030 `__: Unknown escapes " +"consisting of ``'\\'`` and an ASCII letter in regular expressions now are " +"errors. The re.LOCALE flag now can be used only with bytes patterns." +msgstr "" +"`bpo-27030 `__: Unknown escapes " +"consisting of ``'\\'`` and an ASCII letter in regular expressions now are " +"errors. The re.LOCALE flag now can be used only with bytes patterns." + +#: ../../build/NEWS:3845 +msgid "" +"`bpo-27186 `__: Add os.PathLike support " +"to DirEntry (part of PEP 519). Initial patch by Jelle Zijlstra." +msgstr "" +"`bpo-27186 `__: Add os.PathLike support " +"to DirEntry (part of PEP 519). Initial patch by Jelle Zijlstra." + +#: ../../build/NEWS:3848 ../../build/NEWS:6239 +msgid "" +"`bpo-20900 `__: distutils register " +"command now decodes HTTP responses correctly. Initial patch by ingrid." +msgstr "" +"`bpo-20900 `__: distutils register " +"command now decodes HTTP responses correctly. Initial patch by ingrid." + +#: ../../build/NEWS:3851 +msgid "" +"`bpo-27186 `__: Add os.PathLike support " +"to pathlib, removing its provisional status (part of PEP 519). Initial patch " +"by Dusty Phillips." +msgstr "" +"`bpo-27186 `__: Add os.PathLike support " +"to pathlib, removing its provisional status (part of PEP 519). Initial patch " +"by Dusty Phillips." + +#: ../../build/NEWS:3854 +msgid "" +"`bpo-27186 `__: Add support for os." +"PathLike objects to os.fsencode() and os.fsdecode() (part of PEP 519)." +msgstr "" +"`bpo-27186 `__: Add support for os." +"PathLike objects to os.fsencode() and os.fsdecode() (part of PEP 519)." + +#: ../../build/NEWS:3857 +msgid "" +"`bpo-27186 `__: Introduce os.PathLike " +"and os.fspath() (part of PEP 519)." +msgstr "" +"`bpo-27186 `__: Introduce os.PathLike " +"and os.fspath() (part of PEP 519)." + +#: ../../build/NEWS:3859 ../../build/NEWS:6242 +msgid "" +"A new version of typing.py provides several new classes and features: " +"@overload outside stubs, Reversible, DefaultDict, Text, ContextManager, " +"Type[], NewType(), TYPE_CHECKING, and numerous bug fixes (note that some of " +"the new features are not yet implemented in mypy or other static analyzers). " +"Also classes for PEP 492 (Awaitable, AsyncIterable, AsyncIterator) have been " +"added (in fact they made it into 3.5.1 but were never mentioned)." +msgstr "" + +#: ../../build/NEWS:3867 ../../build/NEWS:6250 +msgid "" +"`bpo-25738 `__: Stop http.server." +"BaseHTTPRequestHandler.send_error() from sending a message body for 205 " +"Reset Content. Also, don't send Content header fields in responses that " +"don't have a body. Patch by Susumu Koshiba." +msgstr "" +"`bpo-25738 `__: Stop http.server." +"BaseHTTPRequestHandler.send_error() from sending a message body for 205 " +"Reset Content. Also, don't send Content header fields in responses that " +"don't have a body. Patch by Susumu Koshiba." + +#: ../../build/NEWS:3872 ../../build/NEWS:6255 +msgid "" +"`bpo-21313 `__: Fix the \"platform\" " +"module to tolerate when sys.version contains truncated build information." +msgstr "" +"`bpo-21313 `__: Fix the \"platform\" " +"module to tolerate when sys.version contains truncated build information." + +#: ../../build/NEWS:3885 +msgid "" +"`bpo-23883 `__: Added missing APIs to " +"__all__ to match the documented APIs for the following modules: cgi, " +"mailbox, mimetypes, plistlib and smtpd. Patches by Jacek Kołodziej." +msgstr "" +"`bpo-23883 `__: Added missing APIs to " +"__all__ to match the documented APIs for the following modules: cgi, " +"mailbox, mimetypes, plistlib and smtpd. Patches by Jacek Kołodziej." + +#: ../../build/NEWS:3889 ../../build/NEWS:6268 +msgid "" +"`bpo-27164 `__: In the zlib module, " +"allow decompressing raw Deflate streams with a predefined zdict. Based on " +"patch by Xiang Zhang." +msgstr "" +"`bpo-27164 `__: In the zlib module, " +"allow decompressing raw Deflate streams with a predefined zdict. Based on " +"patch by Xiang Zhang." + +#: ../../build/NEWS:3892 ../../build/NEWS:6271 +msgid "" +"`bpo-24291 `__: Fix wsgiref." +"simple_server.WSGIRequestHandler to completely write data to the client. " +"Previously it could do partial writes and truncate data. Also, wsgiref." +"handler.ServerHandler can now handle stdout doing partial writes, but this " +"is deprecated." +msgstr "" +"`bpo-24291 `__: Fix wsgiref." +"simple_server.WSGIRequestHandler to completely write data to the client. " +"Previously it could do partial writes and truncate data. Also, wsgiref." +"handler.ServerHandler can now handle stdout doing partial writes, but this " +"is deprecated." + +#: ../../build/NEWS:3897 +msgid "" +"`bpo-21272 `__: Use _sysconfigdata.py to " +"initialize distutils.sysconfig." +msgstr "" +"`bpo-21272 `__: Use _sysconfigdata.py to " +"initialize distutils.sysconfig." + +#: ../../build/NEWS:3899 +msgid "" +"`bpo-19611 `__: :mod:`inspect` now " +"reports the implicit ``.0`` parameters generated by the compiler for " +"comprehension and generator expression scopes as if they were positional-" +"only parameters called ``implicit0``. Patch by Jelle Zijlstra." +msgstr "" +"`bpo-19611 `__: :mod:`inspect` now " +"reports the implicit ``.0`` parameters generated by the compiler for " +"comprehension and generator expression scopes as if they were positional-" +"only parameters called ``implicit0``. Patch by Jelle Zijlstra." + +#: ../../build/NEWS:3904 ../../build/NEWS:6276 +msgid "" +"`bpo-26809 `__: Add ``__all__`` to :mod:" +"`string`. Patch by Emanuel Barry." +msgstr "" +"`bpo-26809 `__: Add ``__all__`` to :mod:" +"`string`. Patch by Emanuel Barry." + +#: ../../build/NEWS:3906 ../../build/NEWS:6278 +msgid "" +"`bpo-26373 `__: subprocess.Popen." +"communicate now correctly ignores BrokenPipeError when the child process " +"dies before .communicate() is called in more/all circumstances." +msgstr "" +"`bpo-26373 `__: subprocess.Popen." +"communicate now correctly ignores BrokenPipeError when the child process " +"dies before .communicate() is called in more/all circumstances." + +#: ../../build/NEWS:3910 +msgid "" +"signal, socket, and ssl module IntEnum constant name lookups now return a " +"consistent name for values having multiple names. Ex: signal.Signals(6) now " +"refers to itself as signal.SIGALRM rather than flipping between that and " +"signal.SIGIOT based on the interpreter's hash randomization seed." +msgstr "" + +#: ../../build/NEWS:3915 +msgid "" +"`bpo-27167 `__: Clarify the subprocess." +"CalledProcessError error message text when the child process died due to a " +"signal." +msgstr "" +"`bpo-27167 `__: Clarify the subprocess." +"CalledProcessError error message text when the child process died due to a " +"signal." + +#: ../../build/NEWS:3918 +msgid "" +"`bpo-25931 `__: Don't define " +"socketserver.Forking* names on platforms such as Windows that do not support " +"os.fork()." +msgstr "" +"`bpo-25931 `__: Don't define " +"socketserver.Forking* names on platforms such as Windows that do not support " +"os.fork()." + +#: ../../build/NEWS:3921 ../../build/NEWS:6282 +msgid "" +"`bpo-21776 `__: distutils.upload now " +"correctly handles HTTPError. Initial patch by Claudiu Popa." +msgstr "" +"`bpo-21776 `__: distutils.upload now " +"correctly handles HTTPError. Initial patch by Claudiu Popa." + +#: ../../build/NEWS:3924 +msgid "" +"`bpo-26526 `__: Replace custom parse " +"tree validation in the parser module with a simple DFA validator." +msgstr "" +"`bpo-26526 `__: Replace custom parse " +"tree validation in the parser module with a simple DFA validator." + +#: ../../build/NEWS:3927 ../../build/NEWS:6285 +msgid "" +"`bpo-27114 `__: Fix SSLContext." +"_load_windows_store_certs fails with PermissionError" +msgstr "" +"`bpo-27114 `__: Fix SSLContext." +"_load_windows_store_certs fails with PermissionError" + +#: ../../build/NEWS:3933 +msgid "" +"`bpo-23026 `__: winreg.QueryValueEx() " +"now return an integer for REG_QWORD type." +msgstr "" +"`bpo-23026 `__: winreg.QueryValueEx() " +"now return an integer for REG_QWORD type." + +#: ../../build/NEWS:3935 +msgid "" +"`bpo-26741 `__: subprocess.Popen " +"destructor now emits a ResourceWarning warning if the child process is still " +"running." +msgstr "" +"`bpo-26741 `__: subprocess.Popen " +"destructor now emits a ResourceWarning warning if the child process is still " +"running." + +#: ../../build/NEWS:3938 +msgid "" +"`bpo-27056 `__: Optimize pickle.load() " +"and pickle.loads(), up to 10% faster to deserialize a lot of small objects." +msgstr "" +"`bpo-27056 `__: Optimize pickle.load() " +"and pickle.loads(), up to 10% faster to deserialize a lot of small objects." + +#: ../../build/NEWS:3941 +msgid "" +"`bpo-21271 `__: New keyword only " +"parameters in reset_mock call." +msgstr "" +"`bpo-21271 `__: New keyword only " +"parameters in reset_mock call." + +#: ../../build/NEWS:3950 +msgid "" +"`bpo-24750 `__: Switch all scrollbars in " +"IDLE to ttk versions. Where needed, minimal tests are added to cover changes." +msgstr "" +"`bpo-24750 `__: Switch all scrollbars in " +"IDLE to ttk versions. Where needed, minimal tests are added to cover changes." + +#: ../../build/NEWS:3953 +msgid "" +"`bpo-24759 `__: IDLE requires tk 8.5 and " +"availability ttk widgets. Delete now unneeded tk version tests and code for " +"older versions. Add test for IDLE syntax colorizoer." +msgstr "" +"`bpo-24759 `__: IDLE requires tk 8.5 and " +"availability ttk widgets. Delete now unneeded tk version tests and code for " +"older versions. Add test for IDLE syntax colorizoer." + +#: ../../build/NEWS:3957 +msgid "" +"`bpo-27239 `__: idlelib.macosx.isXyzTk " +"functions initialize as needed." +msgstr "" +"`bpo-27239 `__: idlelib.macosx.isXyzTk " +"functions initialize as needed." + +#: ../../build/NEWS:3959 +msgid "" +"`bpo-27262 `__: move Aqua unbinding " +"code, which enable context menus, to maxosx." +msgstr "" +"`bpo-27262 `__: move Aqua unbinding " +"code, which enable context menus, to maxosx." + +#: ../../build/NEWS:3962 ../../build/NEWS:6658 +msgid "" +"`bpo-24759 `__: Make clear in idlelib." +"idle_test.__init__ that the directory is a private implementation of test." +"test_idle and tool for maintainers." +msgstr "" +"`bpo-24759 `__: Make clear in idlelib." +"idle_test.__init__ that the directory is a private implementation of test." +"test_idle and tool for maintainers." + +#: ../../build/NEWS:3965 ../../build/NEWS:6661 +msgid "" +"`bpo-27196 `__: Stop 'ThemeChanged' " +"warnings when running IDLE tests. These persisted after other warnings were " +"suppressed in #20567. Apply Serhiy Storchaka's update_idletasks solution to " +"four test files. Record this additional advice in idle_test/README.txt" +msgstr "" +"`bpo-27196 `__: Stop 'ThemeChanged' " +"warnings when running IDLE tests. These persisted after other warnings were " +"suppressed in #20567. Apply Serhiy Storchaka's update_idletasks solution to " +"four test files. Record this additional advice in idle_test/README.txt" + +#: ../../build/NEWS:3970 ../../build/NEWS:6666 +msgid "" +"`bpo-20567 `__: Revise idle_test/README." +"txt with advice about avoiding tk warning messages from tests. Apply advice " +"to several IDLE tests." +msgstr "" +"`bpo-20567 `__: Revise idle_test/README." +"txt with advice about avoiding tk warning messages from tests. Apply advice " +"to several IDLE tests." + +#: ../../build/NEWS:3973 +msgid "" +"`bpo-24225 `__: Update idlelib/README." +"txt with new file names and event handlers." +msgstr "" +"`bpo-24225 `__: Update idlelib/README." +"txt with new file names and event handlers." + +#: ../../build/NEWS:3978 ../../build/NEWS:6669 +msgid "" +"`bpo-27117 `__: Make colorizer htest and " +"turtledemo work with dark themes. Move code for configuring text widget " +"colors to a new function." +msgstr "" +"`bpo-27117 `__: Make colorizer htest and " +"turtledemo work with dark themes. Move code for configuring text widget " +"colors to a new function." + +#: ../../build/NEWS:3981 +msgid "" +"`bpo-24225 `__: Rename many `idlelib/*." +"py` and `idle_test/test_*.py` files. Edit files to replace old names with " +"new names when the old name referred to the module rather than the class it " +"contained. See the issue and IDLE section in What's New in 3.6 for more." +msgstr "" +"`bpo-24225 `__: Rename many `idlelib/*." +"py` and `idle_test/test_*.py` files. Edit files to replace old names with " +"new names when the old name referred to the module rather than the class it " +"contained. See the issue and IDLE section in What's New in 3.6 for more." + +#: ../../build/NEWS:3986 ../../build/NEWS:6672 +msgid "" +"`bpo-26673 `__: When tk reports font " +"size as 0, change to size 10. Such fonts on Linux prevented the " +"configuration dialog from opening." +msgstr "" +"`bpo-26673 `__: When tk reports font " +"size as 0, change to size 10. Such fonts on Linux prevented the " +"configuration dialog from opening." + +#: ../../build/NEWS:3989 ../../build/NEWS:6675 +msgid "" +"`bpo-21939 `__: Add test for IDLE's " +"percolator. Original patch by Saimadhav Heblikar." +msgstr "" +"`bpo-21939 `__: Add test for IDLE's " +"percolator. Original patch by Saimadhav Heblikar." + +#: ../../build/NEWS:3992 ../../build/NEWS:6678 +msgid "" +"`bpo-21676 `__: Add test for IDLE's " +"replace dialog. Original patch by Saimadhav Heblikar." +msgstr "" +"`bpo-21676 `__: Add test for IDLE's " +"replace dialog. Original patch by Saimadhav Heblikar." + +#: ../../build/NEWS:3995 ../../build/NEWS:6681 +msgid "" +"`bpo-18410 `__: Add test for IDLE's " +"search dialog. Original patch by Westley Martínez." +msgstr "" +"`bpo-18410 `__: Add test for IDLE's " +"search dialog. Original patch by Westley Martínez." + +#: ../../build/NEWS:3998 +msgid "" +"`bpo-21703 `__: Add test for undo " +"delegator. Patch mostly by Saimadhav Heblikar ." +msgstr "" +"`bpo-21703 `__: Add test for undo " +"delegator. Patch mostly by Saimadhav Heblikar ." + +#: ../../build/NEWS:4001 ../../build/NEWS:6687 +msgid "" +"`bpo-27044 `__: Add ConfigDialog." +"remove_var_callbacks to stop memory leaks." +msgstr "" +"`bpo-27044 `__: Add ConfigDialog." +"remove_var_callbacks to stop memory leaks." + +#: ../../build/NEWS:4003 ../../build/NEWS:6689 +msgid "" +"`bpo-23977 `__: Add more asserts to " +"test_delegator." +msgstr "" +"`bpo-23977 `__: Add more asserts to " +"test_delegator." + +#: ../../build/NEWS:4008 +msgid "" +"`bpo-16484 `__: Change the default " +"PYTHONDOCS URL to \"https:\", and fix the resulting links to use lowercase. " +"Patch by Sean Rodman, test by Kaushik Nadikuditi." +msgstr "" +"`bpo-16484 `__: Change the default " +"PYTHONDOCS URL to \"https:\", and fix the resulting links to use lowercase. " +"Patch by Sean Rodman, test by Kaushik Nadikuditi." + +#: ../../build/NEWS:4012 ../../build/NEWS:6710 +msgid "" +"`bpo-24136 `__: Document the new PEP 448 " +"unpacking syntax of 3.5." +msgstr "" +"`bpo-24136 `__: Document the new PEP 448 " +"unpacking syntax of 3.5." + +#: ../../build/NEWS:4014 ../../build/NEWS:7271 +msgid "" +"`bpo-22558 `__: Add remaining doc links " +"to source code for Python-coded modules. Patch by Yoni Lavi." +msgstr "" +"`bpo-22558 `__: Add remaining doc links " +"to source code for Python-coded modules. Patch by Yoni Lavi." + +#: ../../build/NEWS:4020 +msgid "" +"`bpo-25285 `__: regrtest now uses " +"subprocesses when the -j1 command line option is used: each test file runs " +"in a fresh child process. Before, the -j1 option was ignored." +msgstr "" +"`bpo-25285 `__: regrtest now uses " +"subprocesses when the -j1 command line option is used: each test file runs " +"in a fresh child process. Before, the -j1 option was ignored." + +#: ../../build/NEWS:4024 +msgid "" +"`bpo-25285 `__: Tools/buildbot/test.bat " +"script now uses -j1 by default to run each test file in fresh child process." +msgstr "" +"`bpo-25285 `__: Tools/buildbot/test.bat " +"script now uses -j1 by default to run each test file in fresh child process." + +#: ../../build/NEWS:4030 +msgid "" +"`bpo-27064 `__: The py.exe launcher now " +"defaults to Python 3. The Windows launcher ``py.exe`` no longer prefers an " +"installed Python 2 version over Python 3 by default when used interactively." +msgstr "" +"`bpo-27064 `__: The py.exe launcher now " +"defaults to Python 3. The Windows launcher ``py.exe`` no longer prefers an " +"installed Python 2 version over Python 3 by default when used interactively." + +#: ../../build/NEWS:4037 ../../build/NEWS:6761 +msgid "" +"`bpo-27229 `__: Fix the cross-compiling " +"pgen rule for in-tree builds. Patch by Xavier de Gaye." +msgstr "" +"`bpo-27229 `__: Fix the cross-compiling " +"pgen rule for in-tree builds. Patch by Xavier de Gaye." + +#: ../../build/NEWS:4040 ../../build/NEWS:6798 +msgid "" +"`bpo-26930 `__: Update OS X 10.5+ 32-bit-" +"only installer to build and link with OpenSSL 1.0.2h." +msgstr "" +"`bpo-26930 `__: Update OS X 10.5+ 32-bit-" +"only installer to build and link with OpenSSL 1.0.2h." + +#: ../../build/NEWS:4052 +msgid "" +"`bpo-27186 `__: Add the PyOS_FSPath() " +"function (part of PEP 519)." +msgstr "" +"`bpo-27186 `__: Add the PyOS_FSPath() " +"function (part of PEP 519)." + +#: ../../build/NEWS:4054 +msgid "" +"`bpo-26282 `__: " +"PyArg_ParseTupleAndKeywords() now supports positional-only parameters." +msgstr "" +"`bpo-26282 `__: " +"PyArg_ParseTupleAndKeywords() now supports positional-only parameters." + +#: ../../build/NEWS:4060 +msgid "" +"`bpo-26282 `__: Argument Clinic now " +"supports positional-only and keyword parameters in the same function." +msgstr "" +"`bpo-26282 `__: Argument Clinic now " +"supports positional-only and keyword parameters in the same function." + +#: ../../build/NEWS:4065 +msgid "Python 3.6.0 alpha 1" +msgstr "Python 3.6.0 alpha 1" + +#: ../../build/NEWS:4072 ../../build/NEWS:6101 +msgid "" +"`bpo-20041 `__: Fixed TypeError when " +"frame.f_trace is set to None. Patch by Xavier de Gaye." +msgstr "" +"`bpo-20041 `__: Fixed TypeError when " +"frame.f_trace is set to None. Patch by Xavier de Gaye." + +#: ../../build/NEWS:4075 ../../build/NEWS:6104 +msgid "" +"`bpo-26168 `__: Fixed possible refleaks " +"in failing Py_BuildValue() with the \"N\" format unit." +msgstr "" +"`bpo-26168 `__: Fixed possible refleaks " +"in failing Py_BuildValue() with the \"N\" format unit." + +#: ../../build/NEWS:4078 ../../build/NEWS:6107 +msgid "" +"`bpo-26991 `__: Fix possible refleak " +"when creating a function with annotations." +msgstr "" +"`bpo-26991 `__: Fix possible refleak " +"when creating a function with annotations." + +#: ../../build/NEWS:4080 +msgid "" +"`bpo-27039 `__: Fixed bytearray.remove() " +"for values greater than 127. Based on patch by Joe Jevnik." +msgstr "" +"`bpo-27039 `__: Fixed bytearray.remove() " +"for values greater than 127. Based on patch by Joe Jevnik." + +#: ../../build/NEWS:4083 ../../build/NEWS:6112 +msgid "" +"`bpo-23640 `__: int.from_bytes() no " +"longer bypasses constructors for subclasses." +msgstr "" +"`bpo-23640 `__: int.from_bytes() no " +"longer bypasses constructors for subclasses." + +#: ../../build/NEWS:4086 +msgid "" +"`bpo-27005 `__: Optimized the float." +"fromhex() class method for exact float. It is now 2 times faster." +msgstr "" +"`bpo-27005 `__: Optimized the float." +"fromhex() class method for exact float. It is now 2 times faster." + +#: ../../build/NEWS:4089 +msgid "" +"`bpo-18531 `__: Single var-keyword " +"argument of dict subtype was passed unscathed to the C-defined function. " +"Now it is converted to exact dict." +msgstr "" +"`bpo-18531 `__: Single var-keyword " +"argument of dict subtype was passed unscathed to the C-defined function. " +"Now it is converted to exact dict." + +#: ../../build/NEWS:4092 ../../build/NEWS:6115 +msgid "" +"`bpo-26811 `__: gc.get_objects() no " +"longer contains a broken tuple with NULL pointer." +msgstr "" +"`bpo-26811 `__: gc.get_objects() no " +"longer contains a broken tuple with NULL pointer." + +#: ../../build/NEWS:4095 ../../build/NEWS:6118 +msgid "" +"`bpo-20120 `__: Use RawConfigParser for ." +"pypirc parsing, removing support for interpolation unintentionally added " +"with move to Python 3. Behavior no longer does any interpolation in .pypirc " +"files, matching behavior in Python 2.7 and Setuptools 19.0." +msgstr "" +"`bpo-20120 `__: Use RawConfigParser for ." +"pypirc parsing, removing support for interpolation unintentionally added " +"with move to Python 3. Behavior no longer does any interpolation in .pypirc " +"files, matching behavior in Python 2.7 and Setuptools 19.0." + +#: ../../build/NEWS:4100 +msgid "" +"`bpo-26249 `__: Memory functions of the :" +"c:func:`PyMem_Malloc` domain (:c:data:`PYMEM_DOMAIN_MEM`) now use the :ref:" +"`pymalloc allocator ` rather than system :c:func:`malloc`. " +"Applications calling :c:func:`PyMem_Malloc` without holding the GIL can now " +"crash: use ``PYTHONMALLOC=debug`` environment variable to validate the usage " +"of memory allocators in your application." +msgstr "" +"`bpo-26249 `__: Memory functions of the :" +"c:func:`PyMem_Malloc` domain (:c:data:`PYMEM_DOMAIN_MEM`) now use the :ref:" +"`pymalloc allocator ` rather than system :c:func:`malloc`. " +"Applications calling :c:func:`PyMem_Malloc` without holding the GIL can now " +"crash: use ``PYTHONMALLOC=debug`` environment variable to validate the usage " +"of memory allocators in your application." + +#: ../../build/NEWS:4107 +msgid "" +"`bpo-26802 `__: Optimize function calls " +"only using unpacking like ``func(*tuple)`` (no other positional argument, no " +"keyword): avoid copying the tuple. Patch written by Joe Jevnik." +msgstr "" +"`bpo-26802 `__: Optimize function calls " +"only using unpacking like ``func(*tuple)`` (no other positional argument, no " +"keyword): avoid copying the tuple. Patch written by Joe Jevnik." + +#: ../../build/NEWS:4111 ../../build/NEWS:6123 +msgid "" +"`bpo-26659 `__: Make the builtin slice " +"type support cycle collection." +msgstr "" +"`bpo-26659 `__: Make the builtin slice " +"type support cycle collection." + +#: ../../build/NEWS:4113 ../../build/NEWS:6125 +msgid "" +"`bpo-26718 `__: super.__init__ no longer " +"leaks memory if called multiple times. NOTE: A direct call of super.__init__ " +"is not endorsed!" +msgstr "" +"`bpo-26718 `__: super.__init__ no longer " +"leaks memory if called multiple times. NOTE: A direct call of super.__init__ " +"is not endorsed!" + +#: ../../build/NEWS:4116 ../../build/NEWS:6155 +msgid "" +"`bpo-27138 `__: Fix the doc comment for " +"FileFinder.find_spec()." +msgstr "" +"`bpo-27138 `__: Fix the doc comment for " +"FileFinder.find_spec()." + +#: ../../build/NEWS:4118 ../../build/NEWS:6199 +msgid "" +"`bpo-27147 `__: Mention PEP 420 in the " +"importlib docs." +msgstr "" +"`bpo-27147 `__: Mention PEP 420 in the " +"importlib docs." + +#: ../../build/NEWS:4120 ../../build/NEWS:6128 +msgid "" +"`bpo-25339 `__: PYTHONIOENCODING now has " +"priority over locale in setting the error handler for stdin and stdout." +msgstr "" +"`bpo-25339 `__: PYTHONIOENCODING now has " +"priority over locale in setting the error handler for stdin and stdout." + +#: ../../build/NEWS:4123 ../../build/NEWS:6131 +msgid "" +"`bpo-26494 `__: Fixed crash on iterating " +"exhausting iterators. Affected classes are generic sequence iterators, " +"iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, " +"OrderedDict, corresponding views and os.scandir() iterator." +msgstr "" +"`bpo-26494 `__: Fixed crash on iterating " +"exhausting iterators. Affected classes are generic sequence iterators, " +"iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, " +"OrderedDict, corresponding views and os.scandir() iterator." + +#: ../../build/NEWS:4128 +msgid "" +"`bpo-26574 `__: Optimize ``bytes." +"replace(b'', b'.')`` and ``bytearray.replace(b'', b'.')``. Patch written by " +"Josh Snider." +msgstr "" +"`bpo-26574 `__: Optimize ``bytes." +"replace(b'', b'.')`` and ``bytearray.replace(b'', b'.')``. Patch written by " +"Josh Snider." + +#: ../../build/NEWS:4131 ../../build/NEWS:6136 +msgid "" +"`bpo-26581 `__: If coding cookie is " +"specified multiple times on a line in Python source code file, only the " +"first one is taken to account." +msgstr "" +"`bpo-26581 `__: If coding cookie is " +"specified multiple times on a line in Python source code file, only the " +"first one is taken to account." + +#: ../../build/NEWS:4134 +msgid "" +"`bpo-19711 `__: Add tests for reloading " +"namespace packages." +msgstr "" +"`bpo-19711 `__: Add tests for reloading " +"namespace packages." + +#: ../../build/NEWS:4136 +msgid "" +"`bpo-21099 `__: Switch applicable " +"importlib tests to use PEP 451 API." +msgstr "" +"`bpo-21099 `__: Switch applicable " +"importlib tests to use PEP 451 API." + +#: ../../build/NEWS:4138 +msgid "" +"`bpo-26563 `__: Debug hooks on Python " +"memory allocators now raise a fatal error if functions of the :c:func:" +"`PyMem_Malloc` family are called without holding the GIL." +msgstr "" +"`bpo-26563 `__: Debug hooks on Python " +"memory allocators now raise a fatal error if functions of the :c:func:" +"`PyMem_Malloc` family are called without holding the GIL." + +#: ../../build/NEWS:4142 +msgid "" +"`bpo-26564 `__: On error, the debug " +"hooks on Python memory allocators now use the :mod:`tracemalloc` module to " +"get the traceback where a memory block was allocated." +msgstr "" +"`bpo-26564 `__: On error, the debug " +"hooks on Python memory allocators now use the :mod:`tracemalloc` module to " +"get the traceback where a memory block was allocated." + +#: ../../build/NEWS:4146 +msgid "" +"`bpo-26558 `__: The debug hooks on " +"Python memory allocator :c:func:`PyObject_Malloc` now detect when functions " +"are called without holding the GIL." +msgstr "" +"`bpo-26558 `__: The debug hooks on " +"Python memory allocator :c:func:`PyObject_Malloc` now detect when functions " +"are called without holding the GIL." + +#: ../../build/NEWS:4150 +msgid "" +"`bpo-26516 `__: Add :envvar:" +"`PYTHONMALLOC` environment variable to set the Python memory allocators and/" +"or install debug hooks." +msgstr "" +"`bpo-26516 `__: Add :envvar:" +"`PYTHONMALLOC` environment variable to set the Python memory allocators and/" +"or install debug hooks." + +#: ../../build/NEWS:4153 +msgid "" +"`bpo-26516 `__: The :c:func:" +"`PyMem_SetupDebugHooks` function can now also be used on Python compiled in " +"release mode." +msgstr "" +"`bpo-26516 `__: The :c:func:" +"`PyMem_SetupDebugHooks` function can now also be used on Python compiled in " +"release mode." + +#: ../../build/NEWS:4156 +msgid "" +"`bpo-26516 `__: The :envvar:" +"`PYTHONMALLOCSTATS` environment variable can now also be used on Python " +"compiled in release mode. It now has no effect if set to an empty string." +msgstr "" +"`bpo-26516 `__: The :envvar:" +"`PYTHONMALLOCSTATS` environment variable can now also be used on Python " +"compiled in release mode. It now has no effect if set to an empty string." + +#: ../../build/NEWS:4160 +msgid "" +"`bpo-26516 `__: In debug mode, debug " +"hooks are now also installed on Python memory allocators when Python is " +"configured without pymalloc." +msgstr "" +"`bpo-26516 `__: In debug mode, debug " +"hooks are now also installed on Python memory allocators when Python is " +"configured without pymalloc." + +#: ../../build/NEWS:4163 ../../build/NEWS:6139 +msgid "" +"`bpo-26464 `__: Fix str.translate() when " +"string is ASCII and first replacements removes character, but next " +"replacement uses a non-ASCII character or a string longer than 1 character. " +"Regression introduced in Python 3.5.0." +msgstr "" +"`bpo-26464 `__: Fix str.translate() when " +"string is ASCII and first replacements removes character, but next " +"replacement uses a non-ASCII character or a string longer than 1 character. " +"Regression introduced in Python 3.5.0." + +#: ../../build/NEWS:4167 ../../build/NEWS:6143 +msgid "" +"`bpo-22836 `__: Ensure exception reports " +"from PyErr_Display() and PyErr_WriteUnraisable() are sensible even when " +"formatting them produces secondary errors. This affects the reports " +"produced by sys.__excepthook__() and when __del__() raises an exception." +msgstr "" +"`bpo-22836 `__: Ensure exception reports " +"from PyErr_Display() and PyErr_WriteUnraisable() are sensible even when " +"formatting them produces secondary errors. This affects the reports " +"produced by sys.__excepthook__() and when __del__() raises an exception." + +#: ../../build/NEWS:4172 ../../build/NEWS:6148 +msgid "" +"`bpo-26302 `__: Correct behavior to " +"reject comma as a legal character for cookie names." +msgstr "" +"`bpo-26302 `__: Correct behavior to " +"reject comma as a legal character for cookie names." + +#: ../../build/NEWS:4175 +msgid "" +"`bpo-26136 `__: Upgrade the warning when " +"a generator raises StopIteration from PendingDeprecationWarning to " +"DeprecationWarning. Patch by Anish Shah." +msgstr "" +"`bpo-26136 `__: Upgrade the warning when " +"a generator raises StopIteration from PendingDeprecationWarning to " +"DeprecationWarning. Patch by Anish Shah." + +#: ../../build/NEWS:4178 +msgid "" +"`bpo-26204 `__: The compiler now ignores " +"all constant statements: bytes, str, int, float, complex, name constants " +"(None, False, True), Ellipsis and ast.Constant; not only str and int. For " +"example, ``1.0`` is now ignored in ``def f(): 1.0``." +msgstr "" +"`bpo-26204 `__: The compiler now ignores " +"all constant statements: bytes, str, int, float, complex, name constants " +"(None, False, True), Ellipsis and ast.Constant; not only str and int. For " +"example, ``1.0`` is now ignored in ``def f(): 1.0``." + +#: ../../build/NEWS:4183 ../../build/NEWS:6151 +msgid "" +"`bpo-4806 `__: Avoid masking the original " +"TypeError exception when using star (``*``) unpacking in function calls. " +"Based on patch by Hagen Fürstenau and Daniel Urban." +msgstr "" +"`bpo-4806 `__: Avoid masking the original " +"TypeError exception when using star (``*``) unpacking in function calls. " +"Based on patch by Hagen Fürstenau and Daniel Urban." + +#: ../../build/NEWS:4187 +msgid "" +"`bpo-26146 `__: Add a new kind of AST " +"node: ``ast.Constant``. It can be used by external AST optimizers, but the " +"compiler does not emit directly such node." +msgstr "" +"`bpo-26146 `__: Add a new kind of AST " +"node: ``ast.Constant``. It can be used by external AST optimizers, but the " +"compiler does not emit directly such node." + +#: ../../build/NEWS:4194 +msgid "" +"`bpo-18018 `__: Import raises " +"ImportError instead of SystemError if a relative import is attempted without " +"a known parent package." +msgstr "" +"`bpo-18018 `__: Import raises " +"ImportError instead of SystemError if a relative import is attempted without " +"a known parent package." + +#: ../../build/NEWS:4197 +msgid "" +"`bpo-25843 `__: When compiling code, " +"don't merge constants if they are equal but have a different types. For " +"example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " +"two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " +"returns ``1.0`` (``float``), even if ``1`` and ``1.0`` are equal." +msgstr "" +"`bpo-25843 `__: When compiling code, " +"don't merge constants if they are equal but have a different types. For " +"example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " +"two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " +"returns ``1.0`` (``float``), even if ``1`` and ``1.0`` are equal." + +#: ../../build/NEWS:4203 +msgid "" +"`bpo-26107 `__: The format of the " +"``co_lnotab`` attribute of code objects changes to support negative line " +"number delta." +msgstr "" +"`bpo-26107 `__: The format of the " +"``co_lnotab`` attribute of code objects changes to support negative line " +"number delta." + +#: ../../build/NEWS:4206 ../../build/NEWS:6157 +msgid "" +"`bpo-26154 `__: Add a new private " +"_PyThreadState_UncheckedGet() function to get the current Python thread " +"state, but don't issue a fatal error if it is NULL. This new function must " +"be used instead of accessing directly the _PyThreadState_Current variable. " +"The variable is no more exposed since Python 3.5.1 to hide the exact " +"implementation of atomic C types, to avoid compiler issues." +msgstr "" +"`bpo-26154 `__: Add a new private " +"_PyThreadState_UncheckedGet() function to get the current Python thread " +"state, but don't issue a fatal error if it is NULL. This new function must " +"be used instead of accessing directly the _PyThreadState_Current variable. " +"The variable is no more exposed since Python 3.5.1 to hide the exact " +"implementation of atomic C types, to avoid compiler issues." + +#: ../../build/NEWS:4213 +msgid "" +"`bpo-25791 `__: If __package__ != " +"__spec__.parent or if neither __package__ or __spec__ are defined then " +"ImportWarning is raised." +msgstr "" +"`bpo-25791 `__: If __package__ != " +"__spec__.parent or if neither __package__ or __spec__ are defined then " +"ImportWarning is raised." + +#: ../../build/NEWS:4216 ../../build/NEWS:6174 +msgid "" +"`bpo-22995 `__: [UPDATE] Comment out the " +"one of the pickleability tests in _PyObject_GetState() due to regressions " +"observed in Cython-based projects." +msgstr "" +"`bpo-22995 `__: [UPDATE] Comment out the " +"one of the pickleability tests in _PyObject_GetState() due to regressions " +"observed in Cython-based projects." + +#: ../../build/NEWS:4219 ../../build/NEWS:6177 +msgid "" +"`bpo-25961 `__: Disallowed null " +"characters in the type name." +msgstr "" +"`bpo-25961 `__: Disallowed null " +"characters in the type name." + +#: ../../build/NEWS:4221 ../../build/NEWS:6179 +msgid "" +"`bpo-25973 `__: Fix segfault when an " +"invalid nonlocal statement binds a name starting with two underscores." +msgstr "" +"`bpo-25973 `__: Fix segfault when an " +"invalid nonlocal statement binds a name starting with two underscores." + +#: ../../build/NEWS:4224 ../../build/NEWS:6182 +msgid "" +"`bpo-22995 `__: Instances of extension " +"types with a state that aren't subclasses of list or dict and haven't " +"implemented any pickle-related methods (__reduce__, __reduce_ex__, " +"__getnewargs__, __getnewargs_ex__, or __getstate__), can no longer be " +"pickled. Including memoryview." +msgstr "" +"`bpo-22995 `__: Instances of extension " +"types with a state that aren't subclasses of list or dict and haven't " +"implemented any pickle-related methods (__reduce__, __reduce_ex__, " +"__getnewargs__, __getnewargs_ex__, or __getstate__), can no longer be " +"pickled. Including memoryview." + +#: ../../build/NEWS:4229 ../../build/NEWS:6187 +msgid "" +"`bpo-20440 `__: Massive replacing unsafe " +"attribute setting code with special macro Py_SETREF." +msgstr "" +"`bpo-20440 `__: Massive replacing unsafe " +"attribute setting code with special macro Py_SETREF." + +#: ../../build/NEWS:4232 ../../build/NEWS:6190 +msgid "" +"`bpo-25766 `__: Special method " +"__bytes__() now works in str subclasses." +msgstr "" +"`bpo-25766 `__: Special method " +"__bytes__() now works in str subclasses." + +#: ../../build/NEWS:4234 ../../build/NEWS:6192 +msgid "" +"`bpo-25421 `__: __sizeof__ methods of " +"builtin types now use dynamic basic size. This allows sys.getsize() to work " +"correctly with their subclasses with __slots__ defined." +msgstr "" +"`bpo-25421 `__: __sizeof__ methods of " +"builtin types now use dynamic basic size. This allows sys.getsize() to work " +"correctly with their subclasses with __slots__ defined." + +#: ../../build/NEWS:4238 ../../build/NEWS:6196 ../../build/NEWS:6856 +msgid "" +"`bpo-25709 `__: Fixed problem with in-" +"place string concatenation and utf-8 cache." +msgstr "" +"`bpo-25709 `__: Fixed problem with in-" +"place string concatenation and utf-8 cache." + +#: ../../build/NEWS:4241 +msgid "" +"`bpo-5319 `__: New Py_FinalizeEx() API " +"allowing Python to set an exit status of 120 on failure to flush buffered " +"streams." +msgstr "" +"`bpo-5319 `__: New Py_FinalizeEx() API " +"allowing Python to set an exit status of 120 on failure to flush buffered " +"streams." + +#: ../../build/NEWS:4244 +msgid "" +"`bpo-25485 `__: telnetlib.Telnet is now " +"a context manager." +msgstr "" +"`bpo-25485 `__: telnetlib.Telnet is now " +"a context manager." + +#: ../../build/NEWS:4246 ../../build/NEWS:6201 +msgid "" +"`bpo-24097 `__: Fixed crash in object." +"__reduce__() if slot name is freed inside __getattr__." +msgstr "" +"`bpo-24097 `__: Fixed crash in object." +"__reduce__() if slot name is freed inside __getattr__." + +#: ../../build/NEWS:4249 ../../build/NEWS:6204 +msgid "" +"`bpo-24731 `__: Fixed crash on " +"converting objects with special methods __bytes__, __trunc__, and __float__ " +"returning instances of subclasses of bytes, int, and float to subclasses of " +"bytes, int, and float correspondingly." +msgstr "" +"`bpo-24731 `__: Fixed crash on " +"converting objects with special methods __bytes__, __trunc__, and __float__ " +"returning instances of subclasses of bytes, int, and float to subclasses of " +"bytes, int, and float correspondingly." + +#: ../../build/NEWS:4254 ../../build/NEWS:6874 +msgid "" +"`bpo-25630 `__: Fix a possible segfault " +"during argument parsing in functions that accept filesystem paths." +msgstr "" +"`bpo-25630 `__: Fix a possible segfault " +"during argument parsing in functions that accept filesystem paths." + +#: ../../build/NEWS:4257 ../../build/NEWS:6877 +msgid "" +"`bpo-23564 `__: Fixed a partially broken " +"sanity check in the _posixsubprocess internals regarding how fds_to_pass " +"were passed to the child. The bug had no actual impact as subprocess.py " +"already avoided it." +msgstr "" +"`bpo-23564 `__: Fixed a partially broken " +"sanity check in the _posixsubprocess internals regarding how fds_to_pass " +"were passed to the child. The bug had no actual impact as subprocess.py " +"already avoided it." + +#: ../../build/NEWS:4261 ../../build/NEWS:6881 +msgid "" +"`bpo-25388 `__: Fixed tokenizer crash " +"when processing undecodable source code with a null byte." +msgstr "" +"`bpo-25388 `__: Fixed tokenizer crash " +"when processing undecodable source code with a null byte." + +#: ../../build/NEWS:4264 ../../build/NEWS:6884 +msgid "" +"`bpo-25462 `__: The hash of the key now " +"is calculated only once in most operations in C implementation of " +"OrderedDict." +msgstr "" +"`bpo-25462 `__: The hash of the key now " +"is calculated only once in most operations in C implementation of " +"OrderedDict." + +#: ../../build/NEWS:4267 ../../build/NEWS:6887 +msgid "" +"`bpo-22995 `__: Default implementation " +"of __reduce__ and __reduce_ex__ now rejects builtin types with not defined " +"__new__." +msgstr "" +"`bpo-22995 `__: Default implementation " +"of __reduce__ and __reduce_ex__ now rejects builtin types with not defined " +"__new__." + +#: ../../build/NEWS:4270 ../../build/NEWS:6893 +msgid "" +"`bpo-24802 `__: Avoid buffer overreads " +"when int(), float(), compile(), exec() and eval() are passed bytes-like " +"objects. These objects are not necessarily terminated by a null byte, but " +"the functions assumed they were." +msgstr "" +"`bpo-24802 `__: Avoid buffer overreads " +"when int(), float(), compile(), exec() and eval() are passed bytes-like " +"objects. These objects are not necessarily terminated by a null byte, but " +"the functions assumed they were." + +#: ../../build/NEWS:4275 ../../build/NEWS:6890 +msgid "" +"`bpo-25555 `__: Fix parser and AST: fill " +"lineno and col_offset of \"arg\" node when compiling AST from Python objects." +msgstr "" +"`bpo-25555 `__: Fix parser and AST: fill " +"lineno and col_offset of \"arg\" node when compiling AST from Python objects." + +#: ../../build/NEWS:4278 ../../build/NEWS:6898 +msgid "" +"`bpo-24726 `__: Fixed a crash and " +"leaking NULL in repr() of OrderedDict that was mutated by direct calls of " +"dict methods." +msgstr "" +"`bpo-24726 `__: Fixed a crash and " +"leaking NULL in repr() of OrderedDict that was mutated by direct calls of " +"dict methods." + +#: ../../build/NEWS:4281 ../../build/NEWS:6901 +msgid "" +"`bpo-25449 `__: Iterating OrderedDict " +"with keys with unstable hash now raises KeyError in C implementations as " +"well as in Python implementation." +msgstr "" +"`bpo-25449 `__: Iterating OrderedDict " +"with keys with unstable hash now raises KeyError in C implementations as " +"well as in Python implementation." + +#: ../../build/NEWS:4284 ../../build/NEWS:6904 +msgid "" +"`bpo-25395 `__: Fixed crash when highly " +"nested OrderedDict structures were garbage collected." +msgstr "" +"`bpo-25395 `__: Fixed crash when highly " +"nested OrderedDict structures were garbage collected." + +#: ../../build/NEWS:4287 +msgid "" +"`bpo-25401 `__: Optimize bytes.fromhex() " +"and bytearray.fromhex(): they are now between 2x and 3.5x faster." +msgstr "" +"`bpo-25401 `__: Optimize bytes.fromhex() " +"and bytearray.fromhex(): they are now between 2x and 3.5x faster." + +#: ../../build/NEWS:4290 +msgid "" +"`bpo-25399 `__: Optimize bytearray % " +"args using the new private _PyBytesWriter API. Formatting is now between 2.5 " +"and 5 times faster." +msgstr "" +"`bpo-25399 `__: Optimize bytearray % " +"args using the new private _PyBytesWriter API. Formatting is now between 2.5 " +"and 5 times faster." + +#: ../../build/NEWS:4293 ../../build/NEWS:6907 +msgid "" +"`bpo-25274 `__: sys.setrecursionlimit() " +"now raises a RecursionError if the new recursion limit is too low depending " +"at the current recursion depth. Modify also the \"lower-water mark\" formula " +"to make it monotonic. This mark is used to decide when the overflowed flag " +"of the thread state is reset." +msgstr "" +"`bpo-25274 `__: sys.setrecursionlimit() " +"now raises a RecursionError if the new recursion limit is too low depending " +"at the current recursion depth. Modify also the \"lower-water mark\" formula " +"to make it monotonic. This mark is used to decide when the overflowed flag " +"of the thread state is reset." + +#: ../../build/NEWS:4298 ../../build/NEWS:6912 +msgid "" +"`bpo-24402 `__: Fix input() to prompt to " +"the redirected stdout when sys.stdout.fileno() fails." +msgstr "" +"`bpo-24402 `__: Fix input() to prompt to " +"the redirected stdout when sys.stdout.fileno() fails." + +#: ../../build/NEWS:4301 +msgid "" +"`bpo-25349 `__: Optimize bytes % args " +"using the new private _PyBytesWriter API. Formatting is now up to 2 times " +"faster." +msgstr "" +"`bpo-25349 `__: Optimize bytes % args " +"using the new private _PyBytesWriter API. Formatting is now up to 2 times " +"faster." + +#: ../../build/NEWS:4304 ../../build/NEWS:6915 +msgid "" +"`bpo-24806 `__: Prevent builtin types " +"that are not allowed to be subclassed from being subclassed through multiple " +"inheritance." +msgstr "" +"`bpo-24806 `__: Prevent builtin types " +"that are not allowed to be subclassed from being subclassed through multiple " +"inheritance." + +#: ../../build/NEWS:4307 +msgid "" +"`bpo-25301 `__: The UTF-8 decoder is now " +"up to 15 times as fast for error handlers: ``ignore``, ``replace`` and " +"``surrogateescape``." +msgstr "" +"`bpo-25301 `__: The UTF-8 decoder is now " +"up to 15 times as fast for error handlers: ``ignore``, ``replace`` and " +"``surrogateescape``." + +#: ../../build/NEWS:4310 ../../build/NEWS:6918 +msgid "" +"`bpo-24848 `__: Fixed a number of bugs " +"in UTF-7 decoding of misformed data." +msgstr "" +"`bpo-24848 `__: Fixed a number of bugs " +"in UTF-7 decoding of misformed data." + +#: ../../build/NEWS:4316 ../../build/NEWS:6920 +msgid "" +"`bpo-25280 `__: Import trace messages " +"emitted in verbose (-v) mode are no longer formatted twice." +msgstr "" +"`bpo-25280 `__: Import trace messages " +"emitted in verbose (-v) mode are no longer formatted twice." + +#: ../../build/NEWS:4319 +msgid "" +"`bpo-25227 `__: Optimize ASCII and " +"latin1 encoders with the ``surrogateescape`` error handler: the encoders are " +"now up to 3 times as fast. Initial patch written by Serhiy Storchaka." +msgstr "" +"`bpo-25227 `__: Optimize ASCII and " +"latin1 encoders with the ``surrogateescape`` error handler: the encoders are " +"now up to 3 times as fast. Initial patch written by Serhiy Storchaka." + +#: ../../build/NEWS:4328 +msgid "" +"`bpo-9232 `__: Modify Python's grammar to " +"allow trailing commas in the argument list of a function declaration. For " +"example, \"def f(\\*, a = 3,): pass\" is now legal. Patch from Mark " +"Dickinson." +msgstr "" +"`bpo-9232 `__: Modify Python's grammar to " +"allow trailing commas in the argument list of a function declaration. For " +"example, \"def f(\\*, a = 3,): pass\" is now legal. Patch from Mark " +"Dickinson." + +#: ../../build/NEWS:4332 +msgid "" +"`bpo-24965 `__: Implement PEP 498 " +"\"Literal String Interpolation\". This allows you to embed expressions " +"inside f-strings, which are converted to normal strings at run time. Given " +"x=3, then f'value={x}' == 'value=3'. Patch by Eric V. Smith." +msgstr "" +"`bpo-24965 `__: Implement PEP 498 " +"\"Literal String Interpolation\". This allows you to embed expressions " +"inside f-strings, which are converted to normal strings at run time. Given " +"x=3, then f'value={x}' == 'value=3'. Patch by Eric V. Smith." + +#: ../../build/NEWS:4337 ../../build/NEWS:6209 +msgid "" +"`bpo-26478 `__: Fix semantic bugs when " +"using binary operators with dictionary views and tuples." +msgstr "" +"`bpo-26478 `__: Fix semantic bugs when " +"using binary operators with dictionary views and tuples." + +#: ../../build/NEWS:4340 ../../build/NEWS:6212 +msgid "" +"`bpo-26171 `__: Fix possible integer " +"overflow and heap corruption in zipimporter.get_data()." +msgstr "" +"`bpo-26171 `__: Fix possible integer " +"overflow and heap corruption in zipimporter.get_data()." + +#: ../../build/NEWS:4343 ../../build/NEWS:6215 +msgid "" +"`bpo-25660 `__: Fix TAB key behaviour in " +"REPL with readline." +msgstr "" +"`bpo-25660 `__: Fix TAB key behaviour in " +"REPL with readline." + +#: ../../build/NEWS:4345 +msgid "" +"`bpo-26288 `__: Optimize PyLong_AsDouble." +msgstr "" +"`bpo-26288 `__: Optimize PyLong_AsDouble." + +#: ../../build/NEWS:4347 +msgid "" +"`bpo-26289 `__: Optimize floor and " +"modulo division for single-digit longs. Microbenchmarks show 2-2.5x " +"improvement. Built-in 'divmod' function is now also ~10% faster. (See also: " +"`bpo-26315 `__)" +msgstr "" + +#: ../../build/NEWS:4351 ../../build/NEWS:6217 +msgid "" +"`bpo-25887 `__: Raise a RuntimeError " +"when a coroutine object is awaited more than once." +msgstr "" +"`bpo-25887 `__: Raise a RuntimeError " +"when a coroutine object is awaited more than once." + +#: ../../build/NEWS:4357 ../../build/NEWS:6291 +msgid "" +"`bpo-27057 `__: Fix os.set_inheritable() " +"on Android, ioctl() is blocked by SELinux and fails with EACCESS. The " +"function now falls back to fcntl(). Patch written by Michał Bednarski." +msgstr "" +"`bpo-27057 `__: Fix os.set_inheritable() " +"on Android, ioctl() is blocked by SELinux and fails with EACCESS. The " +"function now falls back to fcntl(). Patch written by Michał Bednarski." + +#: ../../build/NEWS:4361 ../../build/NEWS:6295 +msgid "" +"`bpo-27014 `__: Fix infinite recursion " +"using typing.py. Thanks to Kalle Tuure!" +msgstr "" +"`bpo-27014 `__: Fix infinite recursion " +"using typing.py. Thanks to Kalle Tuure!" + +#: ../../build/NEWS:4363 +msgid "" +"`bpo-27031 `__: Removed dummy methods in " +"Tkinter widget classes: tk_menuBar() and tk_bindForTraversal()." +msgstr "" +"`bpo-27031 `__: Removed dummy methods in " +"Tkinter widget classes: tk_menuBar() and tk_bindForTraversal()." + +#: ../../build/NEWS:4366 ../../build/NEWS:6297 +msgid "" +"`bpo-14132 `__: Fix urllib.request " +"redirect handling when the target only has a query string. Original fix by " +"Ján Janech." +msgstr "" +"`bpo-14132 `__: Fix urllib.request " +"redirect handling when the target only has a query string. Original fix by " +"Ján Janech." + +#: ../../build/NEWS:4375 +msgid "" +"`bpo-27033 `__: The default value of the " +"decode_data parameter for smtpd.SMTPChannel and smtpd.SMTPServer " +"constructors is changed to False." +msgstr "" +"`bpo-27033 `__: The default value of the " +"decode_data parameter for smtpd.SMTPChannel and smtpd.SMTPServer " +"constructors is changed to False." + +#: ../../build/NEWS:4378 +msgid "" +"`bpo-27034 `__: Removed deprecated class " +"asynchat.fifo." +msgstr "" +"`bpo-27034 `__: Removed deprecated class " +"asynchat.fifo." + +#: ../../build/NEWS:4380 +msgid "" +"`bpo-26870 `__: Added readline." +"set_auto_history(), which can stop entries being automatically added to the " +"history list. Based on patch by Tyler Crompton." +msgstr "" +"`bpo-26870 `__: Added readline." +"set_auto_history(), which can stop entries being automatically added to the " +"history list. Based on patch by Tyler Crompton." + +#: ../../build/NEWS:4384 +msgid "" +"`bpo-26039 `__: zipfile.ZipFile.open() " +"can now be used to write data into a ZIP file, as well as for extracting " +"data. Patch by Thomas Kluyver." +msgstr "" +"`bpo-26039 `__: zipfile.ZipFile.open() " +"can now be used to write data into a ZIP file, as well as for extracting " +"data. Patch by Thomas Kluyver." + +#: ../../build/NEWS:4387 ../../build/NEWS:6306 +msgid "" +"`bpo-26892 `__: Honor debuglevel flag in " +"urllib.request.HTTPHandler. Patch contributed by Chi Hsuan Yen." +msgstr "" +"`bpo-26892 `__: Honor debuglevel flag in " +"urllib.request.HTTPHandler. Patch contributed by Chi Hsuan Yen." + +#: ../../build/NEWS:4390 ../../build/NEWS:6309 +msgid "" +"`bpo-22274 `__: In the subprocess " +"module, allow stderr to be redirected to stdout even when stdout is not " +"redirected. Patch by Akira Li." +msgstr "" +"`bpo-22274 `__: In the subprocess " +"module, allow stderr to be redirected to stdout even when stdout is not " +"redirected. Patch by Akira Li." + +#: ../../build/NEWS:4393 ../../build/NEWS:6312 +msgid "" +"`bpo-26807 `__: mock_open 'files' no " +"longer error on readline at end of file. Patch from Yolanda Robla." +msgstr "" +"`bpo-26807 `__: mock_open 'files' no " +"longer error on readline at end of file. Patch from Yolanda Robla." + +#: ../../build/NEWS:4396 ../../build/NEWS:6315 +msgid "" +"`bpo-25745 `__: Fixed leaking a userptr " +"in curses panel destructor." +msgstr "" +"`bpo-25745 `__: Fixed leaking a userptr " +"in curses panel destructor." + +#: ../../build/NEWS:4398 ../../build/NEWS:6317 +msgid "" +"`bpo-26977 `__: Removed unnecessary, and " +"ignored, call to sum of squares helper in statistics.pvariance." +msgstr "" +"`bpo-26977 `__: Removed unnecessary, and " +"ignored, call to sum of squares helper in statistics.pvariance." + +#: ../../build/NEWS:4401 +msgid "" +"`bpo-26002 `__: Use bisect in statistics." +"median instead of a linear search. Patch by Upendra Kuma." +msgstr "" +"`bpo-26002 `__: Use bisect in statistics." +"median instead of a linear search. Patch by Upendra Kuma." + +#: ../../build/NEWS:4404 +msgid "" +"`bpo-25974 `__: Make use of new Decimal." +"as_integer_ratio() method in statistics module. Patch by Stefan Krah." +msgstr "" +"`bpo-25974 `__: Make use of new Decimal." +"as_integer_ratio() method in statistics module. Patch by Stefan Krah." + +#: ../../build/NEWS:4407 +msgid "" +"`bpo-26996 `__: Add secrets module as " +"described in PEP 506." +msgstr "" +"`bpo-26996 `__: Add secrets module as " +"described in PEP 506." + +#: ../../build/NEWS:4409 ../../build/NEWS:6320 +msgid "" +"`bpo-26881 `__: The modulefinder module " +"now supports extended opcode arguments." +msgstr "" +"`bpo-26881 `__: The modulefinder module " +"now supports extended opcode arguments." + +#: ../../build/NEWS:4411 ../../build/NEWS:6322 +msgid "" +"`bpo-23815 `__: Fixed crashes related to " +"directly created instances of types in _tkinter and curses.panel modules." +msgstr "" +"`bpo-23815 `__: Fixed crashes related to " +"directly created instances of types in _tkinter and curses.panel modules." + +#: ../../build/NEWS:4414 ../../build/NEWS:6325 +msgid "" +"`bpo-17765 `__: weakref.ref() no longer " +"silently ignores keyword arguments. Patch by Georg Brandl." +msgstr "" +"`bpo-17765 `__: weakref.ref() no longer " +"silently ignores keyword arguments. Patch by Georg Brandl." + +#: ../../build/NEWS:4417 ../../build/NEWS:6328 +msgid "" +"`bpo-26873 `__: xmlrpc now raises " +"ResponseError on unsupported type tags instead of silently return incorrect " +"result." +msgstr "" +"`bpo-26873 `__: xmlrpc now raises " +"ResponseError on unsupported type tags instead of silently return incorrect " +"result." + +#: ../../build/NEWS:4425 ../../build/NEWS:6331 +msgid "" +"`bpo-26711 `__: Fixed the comparison of " +"plistlib.Data with other types." +msgstr "" +"`bpo-26711 `__: Fixed the comparison of " +"plistlib.Data with other types." + +#: ../../build/NEWS:4427 ../../build/NEWS:6333 +msgid "" +"`bpo-24114 `__: Fix an uninitialized " +"variable in `ctypes.util`." +msgstr "" +"`bpo-24114 `__: Fix an uninitialized " +"variable in `ctypes.util`." + +#: ../../build/NEWS:4429 ../../build/NEWS:6335 +msgid "" +"The bug only occurs on SunOS when the ctypes implementation searches for the " +"`crle` program. Patch by Xiang Zhang. Tested on SunOS by Kees Bos." +msgstr "" + +#: ../../build/NEWS:4432 ../../build/NEWS:6338 +msgid "" +"`bpo-26864 `__: In urllib.request, " +"change the proxy bypass host checking against no_proxy to be case-" +"insensitive, and to not match unrelated host names that happen to have a " +"bypassed hostname as a suffix. Patch by Xiang Zhang." +msgstr "" +"`bpo-26864 `__: In urllib.request, " +"change the proxy bypass host checking against no_proxy to be case-" +"insensitive, and to not match unrelated host names that happen to have a " +"bypassed hostname as a suffix. Patch by Xiang Zhang." + +#: ../../build/NEWS:4437 +msgid "" +"`bpo-24902 `__: Print server URL on http." +"server startup. Initial patch by Felix Kaiser." +msgstr "" +"`bpo-24902 `__: Print server URL on http." +"server startup. Initial patch by Felix Kaiser." + +#: ../../build/NEWS:4440 +msgid "" +"`bpo-25788 `__: fileinput.hook_encoded() " +"now supports an \"errors\" argument for passing to open. Original patch by " +"Joseph Hackman." +msgstr "" +"`bpo-25788 `__: fileinput.hook_encoded() " +"now supports an \"errors\" argument for passing to open. Original patch by " +"Joseph Hackman." + +#: ../../build/NEWS:4443 ../../build/NEWS:6343 +msgid "" +"`bpo-26634 `__: recursive_repr() now " +"sets __qualname__ of wrapper. Patch by Xiang Zhang." +msgstr "" +"`bpo-26634 `__: recursive_repr() now " +"sets __qualname__ of wrapper. Patch by Xiang Zhang." + +#: ../../build/NEWS:4450 ../../build/NEWS:6350 +msgid "" +"`bpo-26837 `__: assertSequenceEqual() " +"now correctly outputs non-stringified differing items (like bytes in the -b " +"mode). This affects assertListEqual() and assertTupleEqual()." +msgstr "" +"`bpo-26837 `__: assertSequenceEqual() " +"now correctly outputs non-stringified differing items (like bytes in the -b " +"mode). This affects assertListEqual() and assertTupleEqual()." + +#: ../../build/NEWS:4454 ../../build/NEWS:6354 +msgid "" +"`bpo-26041 `__: Remove \"will be removed " +"in Python 3.7\" from deprecation messages of platform.dist() and platform." +"linux_distribution(). Patch by Kumaripaba Miyurusara Athukorala." +msgstr "" +"`bpo-26041 `__: Remove \"will be removed " +"in Python 3.7\" from deprecation messages of platform.dist() and platform." +"linux_distribution(). Patch by Kumaripaba Miyurusara Athukorala." + +#: ../../build/NEWS:4458 ../../build/NEWS:6358 +msgid "" +"`bpo-26822 `__: itemgetter, attrgetter " +"and methodcaller objects no longer silently ignore keyword arguments." +msgstr "" +"`bpo-26822 `__: itemgetter, attrgetter " +"and methodcaller objects no longer silently ignore keyword arguments." + +#: ../../build/NEWS:4461 ../../build/NEWS:6361 +msgid "" +"`bpo-26733 `__: Disassembling a class " +"now disassembles class and static methods. Patch by Xiang Zhang." +msgstr "" +"`bpo-26733 `__: Disassembling a class " +"now disassembles class and static methods. Patch by Xiang Zhang." + +#: ../../build/NEWS:4464 ../../build/NEWS:6364 +msgid "" +"`bpo-26801 `__: Fix error handling in :" +"func:`shutil.get_terminal_size`, catch :exc:`AttributeError` instead of :exc:" +"`NameError`. Patch written by Emanuel Barry." +msgstr "" +"`bpo-26801 `__: Fix error handling in :" +"func:`shutil.get_terminal_size`, catch :exc:`AttributeError` instead of :exc:" +"`NameError`. Patch written by Emanuel Barry." + +#: ../../build/NEWS:4468 ../../build/NEWS:6368 +msgid "" +"`bpo-24838 `__: tarfile's ustar and gnu " +"formats now correctly calculate name and link field limits for multibyte " +"character encodings like utf-8." +msgstr "" +"`bpo-24838 `__: tarfile's ustar and gnu " +"formats now correctly calculate name and link field limits for multibyte " +"character encodings like utf-8." + +#: ../../build/NEWS:4481 ../../build/NEWS:6381 +msgid "" +"`bpo-26717 `__: Stop encoding Latin-1-" +"ized WSGI paths with UTF-8. Patch by Anthony Sottile." +msgstr "" +"`bpo-26717 `__: Stop encoding Latin-1-" +"ized WSGI paths with UTF-8. Patch by Anthony Sottile." + +#: ../../build/NEWS:4484 +msgid "" +"`bpo-26782 `__: Add STARTUPINFO to " +"subprocess.__all__ on Windows." +msgstr "" +"`bpo-26782 `__: Add STARTUPINFO to " +"subprocess.__all__ on Windows." + +#: ../../build/NEWS:4486 +msgid "" +"`bpo-26404 `__: Add context manager to " +"socketserver. Patch by Aviv Palivoda." +msgstr "" +"`bpo-26404 `__: Add context manager to " +"socketserver. Patch by Aviv Palivoda." + +#: ../../build/NEWS:4488 ../../build/NEWS:6384 +msgid "" +"`bpo-26735 `__: Fix :func:`os.urandom` " +"on Solaris 11.3 and newer when reading more than 1,024 bytes: call " +"``getrandom()`` multiple times with a limit of 1024 bytes per call." +msgstr "" +"`bpo-26735 `__: Fix :func:`os.urandom` " +"on Solaris 11.3 and newer when reading more than 1,024 bytes: call " +"``getrandom()`` multiple times with a limit of 1024 bytes per call." + +#: ../../build/NEWS:4492 +msgid "" +"`bpo-26585 `__: Eliminate http.server." +"_quote_html() and use html.escape(quote=False). Patch by Xiang Zhang." +msgstr "" +"`bpo-26585 `__: Eliminate http.server." +"_quote_html() and use html.escape(quote=False). Patch by Xiang Zhang." + +#: ../../build/NEWS:4495 +msgid "" +"`bpo-26685 `__: Raise OSError if closing " +"a socket fails." +msgstr "" +"`bpo-26685 `__: Raise OSError if closing " +"a socket fails." + +#: ../../build/NEWS:4497 ../../build/NEWS:6388 +msgid "" +"`bpo-16329 `__: Add .webm to mimetypes." +"types_map. Patch by Giampaolo Rodola'." +msgstr "" +"`bpo-16329 `__: Add .webm to mimetypes." +"types_map. Patch by Giampaolo Rodola'." + +#: ../../build/NEWS:4499 ../../build/NEWS:6390 +msgid "" +"`bpo-13952 `__: Add .csv to mimetypes." +"types_map. Patch by Geoff Wilson." +msgstr "" +"`bpo-13952 `__: Add .csv to mimetypes." +"types_map. Patch by Geoff Wilson." + +#: ../../build/NEWS:4501 +msgid "" +"`bpo-26587 `__: the site module now " +"allows .pth files to specify files to be added to sys.path (e.g. zip files)." +msgstr "" +"`bpo-26587 `__: the site module now " +"allows .pth files to specify files to be added to sys.path (e.g. zip files)." + +#: ../../build/NEWS:4504 +msgid "" +"`bpo-25609 `__: Introduce contextlib." +"AbstractContextManager and typing.ContextManager." +msgstr "" +"`bpo-25609 `__: Introduce contextlib." +"AbstractContextManager and typing.ContextManager." + +#: ../../build/NEWS:4507 ../../build/NEWS:6392 +msgid "" +"`bpo-26709 `__: Fixed Y2038 problem in " +"loading binary PLists." +msgstr "" +"`bpo-26709 `__: Fixed Y2038 problem in " +"loading binary PLists." + +#: ../../build/NEWS:4509 ../../build/NEWS:6394 +msgid "" +"`bpo-23735 `__: Handle terminal resizing " +"with Readline 6.3+ by installing our own SIGWINCH handler. Patch by Eric " +"Price." +msgstr "" +"`bpo-23735 `__: Handle terminal resizing " +"with Readline 6.3+ by installing our own SIGWINCH handler. Patch by Eric " +"Price." + +#: ../../build/NEWS:4512 +msgid "" +"`bpo-25951 `__: Change SSLSocket." +"sendall() to return None, as explicitly documented for plain socket " +"objects. Patch by Aviv Palivoda." +msgstr "" +"`bpo-25951 `__: Change SSLSocket." +"sendall() to return None, as explicitly documented for plain socket " +"objects. Patch by Aviv Palivoda." + +#: ../../build/NEWS:4515 ../../build/NEWS:6397 +msgid "" +"`bpo-26586 `__: In http.server, respond " +"with \"413 Request header fields too large\" if there are too many header " +"fields to parse, rather than killing the connection and raising an unhandled " +"exception. Patch by Xiang Zhang." +msgstr "" +"`bpo-26586 `__: In http.server, respond " +"with \"413 Request header fields too large\" if there are too many header " +"fields to parse, rather than killing the connection and raising an unhandled " +"exception. Patch by Xiang Zhang." + +#: ../../build/NEWS:4519 +msgid "" +"`bpo-26676 `__: Added missing " +"XMLPullParser to ElementTree.__all__." +msgstr "" +"`bpo-26676 `__: Added missing " +"XMLPullParser to ElementTree.__all__." + +#: ../../build/NEWS:4521 ../../build/NEWS:6401 +msgid "" +"`bpo-22854 `__: Change BufferedReader." +"writable() and BufferedWriter.readable() to always return False." +msgstr "" +"`bpo-22854 `__: Change BufferedReader." +"writable() and BufferedWriter.readable() to always return False." + +#: ../../build/NEWS:4524 +msgid "" +"`bpo-26492 `__: Exhausted iterator of " +"array.array now conforms with the behavior of iterators of other mutable " +"sequences: it lefts exhausted even if iterated array is extended." +msgstr "" +"`bpo-26492 `__: Exhausted iterator of " +"array.array now conforms with the behavior of iterators of other mutable " +"sequences: it lefts exhausted even if iterated array is extended." + +#: ../../build/NEWS:4528 +msgid "" +"`bpo-26641 `__: doctest.DocFileTest and " +"doctest.testfile() now support packages (module splitted into multiple " +"directories) for the package parameter." +msgstr "" +"`bpo-26641 `__: doctest.DocFileTest and " +"doctest.testfile() now support packages (module splitted into multiple " +"directories) for the package parameter." + +#: ../../build/NEWS:4531 ../../build/NEWS:6404 +msgid "" +"`bpo-25195 `__: Fix a regression in mock." +"MagicMock. _Call is a subclass of tuple (changeset 3603bae63c13 only works " +"for classes) so we need to implement __ne__ ourselves. Patch by Andrew " +"Plummer." +msgstr "" +"`bpo-25195 `__: Fix a regression in mock." +"MagicMock. _Call is a subclass of tuple (changeset 3603bae63c13 only works " +"for classes) so we need to implement __ne__ ourselves. Patch by Andrew " +"Plummer." + +#: ../../build/NEWS:4535 ../../build/NEWS:6408 +msgid "" +"`bpo-26644 `__: Raise ValueError rather " +"than SystemError when a negative length is passed to SSLSocket.recv() or " +"read()." +msgstr "" +"`bpo-26644 `__: Raise ValueError rather " +"than SystemError when a negative length is passed to SSLSocket.recv() or " +"read()." + +#: ../../build/NEWS:4538 ../../build/NEWS:6411 +msgid "" +"`bpo-23804 `__: Fix SSL recv(0) and " +"read(0) methods to return zero bytes instead of up to 1024." +msgstr "" +"`bpo-23804 `__: Fix SSL recv(0) and " +"read(0) methods to return zero bytes instead of up to 1024." + +#: ../../build/NEWS:4541 ../../build/NEWS:6414 +msgid "" +"`bpo-26616 `__: Fixed a bug in datetime." +"astimezone() method." +msgstr "" +"`bpo-26616 `__: Fixed a bug in datetime." +"astimezone() method." + +#: ../../build/NEWS:4543 +msgid "" +"`bpo-26637 `__: The :mod:`importlib` " +"module now emits an :exc:`ImportError` rather than a :exc:`TypeError` if :" +"func:`__import__` is tried during the Python shutdown process but :data:`sys." +"path` is already cleared (set to ``None``)." +msgstr "" +"`bpo-26637 `__: The :mod:`importlib` " +"module now emits an :exc:`ImportError` rather than a :exc:`TypeError` if :" +"func:`__import__` is tried during the Python shutdown process but :data:`sys." +"path` is already cleared (set to ``None``)." + +#: ../../build/NEWS:4548 +msgid "" +"`bpo-21925 `__: :func:`warnings." +"formatwarning` now catches exceptions when calling :func:`linecache.getline` " +"and :func:`tracemalloc.get_object_traceback` to be able to log :exc:" +"`ResourceWarning` emitted late during the Python shutdown process." +msgstr "" +"`bpo-21925 `__: :func:`warnings." +"formatwarning` now catches exceptions when calling :func:`linecache.getline` " +"and :func:`tracemalloc.get_object_traceback` to be able to log :exc:" +"`ResourceWarning` emitted late during the Python shutdown process." + +#: ../../build/NEWS:4553 +msgid "" +"`bpo-23848 `__: On Windows, faulthandler." +"enable() now also installs an exception handler to dump the traceback of all " +"Python threads on any Windows exception, not only on UNIX signals (SIGSEGV, " +"SIGFPE, SIGABRT)." +msgstr "" +"`bpo-23848 `__: On Windows, faulthandler." +"enable() now also installs an exception handler to dump the traceback of all " +"Python threads on any Windows exception, not only on UNIX signals (SIGSEGV, " +"SIGFPE, SIGABRT)." + +#: ../../build/NEWS:4557 +msgid "" +"`bpo-26530 `__: Add C functions :c:func:" +"`_PyTraceMalloc_Track` and :c:func:`_PyTraceMalloc_Untrack` to track memory " +"blocks using the :mod:`tracemalloc` module. Add :c:func:" +"`_PyTraceMalloc_GetTraceback` to get the traceback of an object." +msgstr "" +"`bpo-26530 `__: Add C functions :c:func:" +"`_PyTraceMalloc_Track` and :c:func:`_PyTraceMalloc_Untrack` to track memory " +"blocks using the :mod:`tracemalloc` module. Add :c:func:" +"`_PyTraceMalloc_GetTraceback` to get the traceback of an object." + +#: ../../build/NEWS:4562 +msgid "" +"`bpo-26588 `__: The _tracemalloc now " +"supports tracing memory allocations of multiple address spaces (domains)." +msgstr "" +"`bpo-26588 `__: The _tracemalloc now " +"supports tracing memory allocations of multiple address spaces (domains)." + +#: ../../build/NEWS:4565 ../../build/NEWS:6420 +msgid "" +"`bpo-24266 `__: Ctrl+C during Readline " +"history search now cancels the search mode when compiled with Readline 7." +msgstr "" +"`bpo-24266 `__: Ctrl+C during Readline " +"history search now cancels the search mode when compiled with Readline 7." + +#: ../../build/NEWS:4568 +msgid "" +"`bpo-26590 `__: Implement a safe " +"finalizer for the _socket.socket type. It now releases the GIL to close the " +"socket." +msgstr "" +"`bpo-26590 `__: Implement a safe " +"finalizer for the _socket.socket type. It now releases the GIL to close the " +"socket." + +#: ../../build/NEWS:4571 +msgid "" +"`bpo-18787 `__: spwd.getspnam() now " +"raises a PermissionError if the user doesn't have privileges." +msgstr "" +"`bpo-18787 `__: spwd.getspnam() now " +"raises a PermissionError if the user doesn't have privileges." + +#: ../../build/NEWS:4574 ../../build/NEWS:6423 +msgid "" +"`bpo-26560 `__: Avoid potential " +"ValueError in BaseHandler.start_response. Initial patch by Peter Inglesby." +msgstr "" +"`bpo-26560 `__: Avoid potential " +"ValueError in BaseHandler.start_response. Initial patch by Peter Inglesby." + +#: ../../build/NEWS:4577 +msgid "" +"`bpo-26567 `__: Add a new function :c:" +"func:`PyErr_ResourceWarning` function to pass the destroyed object. Add a " +"*source* attribute to :class:`warnings.WarningMessage`. Add warnings." +"_showwarnmsg() which uses tracemalloc to get the traceback where source " +"object was allocated." +msgstr "" +"`bpo-26567 `__: Add a new function :c:" +"func:`PyErr_ResourceWarning` function to pass the destroyed object. Add a " +"*source* attribute to :class:`warnings.WarningMessage`. Add warnings." +"_showwarnmsg() which uses tracemalloc to get the traceback where source " +"object was allocated." + +#: ../../build/NEWS:4591 ../../build/NEWS:6435 +msgid "" +"`bpo-26569 `__: Fix :func:`pyclbr." +"readmodule` and :func:`pyclbr.readmodule_ex` to support importing packages." +msgstr "" +"`bpo-26569 `__: Fix :func:`pyclbr." +"readmodule` and :func:`pyclbr.readmodule_ex` to support importing packages." + +#: ../../build/NEWS:4598 ../../build/NEWS:6442 +msgid "" +"`bpo-25320 `__: Handle sockets in " +"directories unittest discovery is scanning. Patch from Victor van den Elzen." +msgstr "" +"`bpo-25320 `__: Handle sockets in " +"directories unittest discovery is scanning. Patch from Victor van den Elzen." + +#: ../../build/NEWS:4601 ../../build/NEWS:6445 +msgid "" +"`bpo-16181 `__: cookiejar.http2time() " +"now returns None if year is higher than datetime.MAXYEAR." +msgstr "" +"`bpo-16181 `__: cookiejar.http2time() " +"now returns None if year is higher than datetime.MAXYEAR." + +#: ../../build/NEWS:4604 ../../build/NEWS:6448 +msgid "" +"`bpo-26513 `__: Fixes platform module " +"detection of Windows Server" +msgstr "" +"`bpo-26513 `__: Fixes platform module " +"detection of Windows Server" + +#: ../../build/NEWS:4606 ../../build/NEWS:6450 +msgid "" +"`bpo-23718 `__: Fixed parsing time in " +"week 0 before Jan 1. Original patch by Tamás Bence Gedai." +msgstr "" +"`bpo-23718 `__: Fixed parsing time in " +"week 0 before Jan 1. Original patch by Tamás Bence Gedai." + +#: ../../build/NEWS:4609 +msgid "" +"`bpo-26323 `__: Add Mock.assert_called() " +"and Mock.assert_called_once() methods to unittest.mock. Patch written by " +"Amit Saha." +msgstr "" +"`bpo-26323 `__: Add Mock.assert_called() " +"and Mock.assert_called_once() methods to unittest.mock. Patch written by " +"Amit Saha." + +#: ../../build/NEWS:4612 ../../build/NEWS:6453 +msgid "" +"`bpo-20589 `__: Invoking Path.owner() " +"and Path.group() on Windows now raise NotImplementedError instead of " +"ImportError." +msgstr "" +"`bpo-20589 `__: Invoking Path.owner() " +"and Path.group() on Windows now raise NotImplementedError instead of " +"ImportError." + +#: ../../build/NEWS:4615 ../../build/NEWS:6456 +msgid "" +"`bpo-26177 `__: Fixed the keys() method " +"for Canvas and Scrollbar widgets." +msgstr "" +"`bpo-26177 `__: Fixed the keys() method " +"for Canvas and Scrollbar widgets." + +#: ../../build/NEWS:4617 +msgid "" +"`bpo-15068 `__: Got rid of excessive " +"buffering in fileinput. The bufsize parameter is now deprecated and ignored." +msgstr "" +"`bpo-15068 `__: Got rid of excessive " +"buffering in fileinput. The bufsize parameter is now deprecated and ignored." + +#: ../../build/NEWS:4620 +msgid "" +"`bpo-19475 `__: Added an optional " +"argument timespec to the datetime isoformat() method to choose the precision " +"of the time component." +msgstr "" +"`bpo-19475 `__: Added an optional " +"argument timespec to the datetime isoformat() method to choose the precision " +"of the time component." + +#: ../../build/NEWS:4627 +msgid "" +"`bpo-26167 `__: Minimized overhead in " +"copy.copy() and copy.deepcopy(). Optimized copying and deepcopying " +"bytearrays, NotImplemented, slices, short lists, tuples, dicts, sets." +msgstr "" +"`bpo-26167 `__: Minimized overhead in " +"copy.copy() and copy.deepcopy(). Optimized copying and deepcopying " +"bytearrays, NotImplemented, slices, short lists, tuples, dicts, sets." + +#: ../../build/NEWS:4631 ../../build/NEWS:6465 +msgid "" +"`bpo-25718 `__: Fixed pickling and " +"copying the accumulate() iterator with total is None." +msgstr "" +"`bpo-25718 `__: Fixed pickling and " +"copying the accumulate() iterator with total is None." + +#: ../../build/NEWS:4634 ../../build/NEWS:6468 +msgid "" +"`bpo-26475 `__: Fixed debugging output " +"for regular expressions with the (?x) flag." +msgstr "" +"`bpo-26475 `__: Fixed debugging output " +"for regular expressions with the (?x) flag." + +#: ../../build/NEWS:4637 +msgid "" +"`bpo-26482 `__: Allowed pickling " +"recursive dequeues." +msgstr "" +"`bpo-26482 `__: Allowed pickling " +"recursive dequeues." + +#: ../../build/NEWS:4639 +msgid "" +"`bpo-26335 `__: Make mmap.write() return " +"the number of bytes written like other write methods. Patch by Jakub " +"Stasiak." +msgstr "" +"`bpo-26335 `__: Make mmap.write() return " +"the number of bytes written like other write methods. Patch by Jakub " +"Stasiak." + +#: ../../build/NEWS:4642 ../../build/NEWS:6471 +msgid "" +"`bpo-26457 `__: Fixed the subnets() " +"methods in IP network classes for the case when resulting prefix length is " +"equal to maximal prefix length. Based on patch by Xiang Zhang." +msgstr "" +"`bpo-26457 `__: Fixed the subnets() " +"methods in IP network classes for the case when resulting prefix length is " +"equal to maximal prefix length. Based on patch by Xiang Zhang." + +#: ../../build/NEWS:4649 ../../build/NEWS:6478 +msgid "" +"`bpo-26402 `__: Fix XML-RPC client to " +"retry when the server shuts down a persistent connection. This was a " +"regression related to the new http.client.RemoteDisconnected exception in " +"3.5.0a4." +msgstr "" +"`bpo-26402 `__: Fix XML-RPC client to " +"retry when the server shuts down a persistent connection. This was a " +"regression related to the new http.client.RemoteDisconnected exception in " +"3.5.0a4." + +#: ../../build/NEWS:4653 ../../build/NEWS:6482 +msgid "" +"`bpo-25913 `__: Leading ``<~`` is " +"optional now in base64.a85decode() with adobe=True. Patch by Swati Jaiswal." +msgstr "" +"`bpo-25913 `__: Leading ``<~`` is " +"optional now in base64.a85decode() with adobe=True. Patch by Swati Jaiswal." + +#: ../../build/NEWS:4656 ../../build/NEWS:6485 +msgid "" +"`bpo-26186 `__: Remove an invalid type " +"check in importlib.util.LazyLoader." +msgstr "" +"`bpo-26186 `__: Remove an invalid type " +"check in importlib.util.LazyLoader." + +#: ../../build/NEWS:4658 +msgid "" +"`bpo-26367 `__: importlib.__import__() " +"raises ImportError like builtins.__import__() when ``level`` is specified " +"but without an accompanying package specified." +msgstr "" +"`bpo-26367 `__: importlib.__import__() " +"raises ImportError like builtins.__import__() when ``level`` is specified " +"but without an accompanying package specified." + +#: ../../build/NEWS:4662 ../../build/NEWS:6491 +msgid "" +"`bpo-26309 `__: In the \"socketserver\" " +"module, shut down the request (closing the connected socket) when " +"verify_request() returns false. Patch by Aviv Palivoda." +msgstr "" +"`bpo-26309 `__: In the \"socketserver\" " +"module, shut down the request (closing the connected socket) when " +"verify_request() returns false. Patch by Aviv Palivoda." + +#: ../../build/NEWS:4681 ../../build/NEWS:6504 +msgid "" +"`bpo-25995 `__: os.walk() no longer uses " +"FDs proportional to the tree depth." +msgstr "" +"`bpo-25995 `__: os.walk() no longer uses " +"FDs proportional to the tree depth." + +#: ../../build/NEWS:4683 +msgid "" +"`bpo-25994 `__: Added the close() method " +"and the support of the context manager protocol for the os.scandir() " +"iterator." +msgstr "" +"`bpo-25994 `__: Added the close() method " +"and the support of the context manager protocol for the os.scandir() " +"iterator." + +#: ../../build/NEWS:4686 +msgid "" +"`bpo-23992 `__: multiprocessing: make " +"MapResult not fail-fast upon exception." +msgstr "" +"`bpo-23992 `__: multiprocessing: make " +"MapResult not fail-fast upon exception." + +#: ../../build/NEWS:4688 +msgid "" +"`bpo-26243 `__: Support keyword " +"arguments to zlib.compress(). Patch by Aviv Palivoda." +msgstr "" +"`bpo-26243 `__: Support keyword " +"arguments to zlib.compress(). Patch by Aviv Palivoda." + +#: ../../build/NEWS:4691 ../../build/NEWS:6506 +msgid "" +"`bpo-26117 `__: The os.scandir() " +"iterator now closes file descriptor not only when the iteration is finished, " +"but when it was failed with error." +msgstr "" +"`bpo-26117 `__: The os.scandir() " +"iterator now closes file descriptor not only when the iteration is finished, " +"but when it was failed with error." + +#: ../../build/NEWS:4694 +msgid "" +"`bpo-25949 `__: __dict__ for an " +"OrderedDict instance is now created only when needed." +msgstr "" +"`bpo-25949 `__: __dict__ for an " +"OrderedDict instance is now created only when needed." + +#: ../../build/NEWS:4697 ../../build/NEWS:6509 +msgid "" +"`bpo-25911 `__: Restored support of " +"bytes paths in os.walk() on Windows." +msgstr "" +"`bpo-25911 `__: Restored support of " +"bytes paths in os.walk() on Windows." + +#: ../../build/NEWS:4702 +msgid "" +"`bpo-26039 `__: Added zipfile.ZipInfo." +"from_file() and zipinfo.ZipInfo.is_dir(). Patch by Thomas Kluyver." +msgstr "" +"`bpo-26039 `__: Added zipfile.ZipInfo." +"from_file() and zipinfo.ZipInfo.is_dir(). Patch by Thomas Kluyver." + +#: ../../build/NEWS:4719 ../../build/NEWS:6528 +msgid "" +"`bpo-19883 `__: Fixed possible integer " +"overflows in zipimport." +msgstr "" +"`bpo-19883 `__: Fixed possible integer " +"overflows in zipimport." + +#: ../../build/NEWS:4721 ../../build/NEWS:6530 +msgid "" +"`bpo-26227 `__: On Windows, " +"getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the " +"socket module now decode the hostname from the ANSI code page rather than " +"UTF-8." +msgstr "" +"`bpo-26227 `__: On Windows, " +"getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the " +"socket module now decode the hostname from the ANSI code page rather than " +"UTF-8." + +#: ../../build/NEWS:4725 +msgid "" +"`bpo-26099 `__: The site module now " +"writes an error into stderr if sitecustomize module can be imported but " +"executing the module raise an ImportError. Same change for usercustomize." +msgstr "" +"`bpo-26099 `__: The site module now " +"writes an error into stderr if sitecustomize module can be imported but " +"executing the module raise an ImportError. Same change for usercustomize." + +#: ../../build/NEWS:4729 ../../build/NEWS:6534 +msgid "" +"`bpo-26147 `__: xmlrpc now works with " +"strings not encodable with used non-UTF-8 encoding." +msgstr "" +"`bpo-26147 `__: xmlrpc now works with " +"strings not encodable with used non-UTF-8 encoding." + +#: ../../build/NEWS:4732 ../../build/NEWS:6537 +msgid "" +"`bpo-25935 `__: Garbage collector now " +"breaks reference loops with OrderedDict." +msgstr "" +"`bpo-25935 `__: Garbage collector now " +"breaks reference loops with OrderedDict." + +#: ../../build/NEWS:4734 ../../build/NEWS:6539 +msgid "" +"`bpo-16620 `__: Fixed AttributeError in " +"msilib.Directory.glob()." +msgstr "" +"`bpo-16620 `__: Fixed AttributeError in " +"msilib.Directory.glob()." + +#: ../../build/NEWS:4736 ../../build/NEWS:6541 +msgid "" +"`bpo-26013 `__: Added compatibility with " +"broken protocol 2 pickles created in old Python 3 versions (3.4.3 and lower)." +msgstr "" +"`bpo-26013 `__: Added compatibility with " +"broken protocol 2 pickles created in old Python 3 versions (3.4.3 and lower)." + +#: ../../build/NEWS:4739 +msgid "" +"`bpo-26129 `__: Deprecated accepting non-" +"integers in grp.getgrgid()." +msgstr "" +"`bpo-26129 `__: Deprecated accepting non-" +"integers in grp.getgrgid()." + +#: ../../build/NEWS:4741 ../../build/NEWS:6544 +msgid "" +"`bpo-25850 `__: Use cross-compilation by " +"default for 64-bit Windows." +msgstr "" +"`bpo-25850 `__: Use cross-compilation by " +"default for 64-bit Windows." + +#: ../../build/NEWS:4743 +msgid "" +"`bpo-25822 `__: Add docstrings to the " +"fields of urllib.parse results. Patch contributed by Swati Jaiswal." +msgstr "" +"`bpo-25822 `__: Add docstrings to the " +"fields of urllib.parse results. Patch contributed by Swati Jaiswal." + +#: ../../build/NEWS:4746 +msgid "" +"`bpo-22642 `__: Convert trace module " +"option parsing mechanism to argparse. Patch contributed by SilentGhost." +msgstr "" +"`bpo-22642 `__: Convert trace module " +"option parsing mechanism to argparse. Patch contributed by SilentGhost." + +#: ../../build/NEWS:4749 ../../build/NEWS:6548 +msgid "" +"`bpo-24705 `__: Fix sysconfig." +"_parse_makefile not expanding ${} vars appearing before $() vars." +msgstr "" +"`bpo-24705 `__: Fix sysconfig." +"_parse_makefile not expanding ${} vars appearing before $() vars." + +#: ../../build/NEWS:4752 +msgid "" +"`bpo-26069 `__: Remove the deprecated " +"apis in the trace module." +msgstr "" +"`bpo-26069 `__: Remove the deprecated " +"apis in the trace module." + +#: ../../build/NEWS:4754 ../../build/NEWS:6551 +msgid "" +"`bpo-22138 `__: Fix mock.patch behavior " +"when patching descriptors. Restore original values after patching. Patch " +"contributed by Sean McCully." +msgstr "" +"`bpo-22138 `__: Fix mock.patch behavior " +"when patching descriptors. Restore original values after patching. Patch " +"contributed by Sean McCully." + +#: ../../build/NEWS:4757 ../../build/NEWS:6554 +msgid "" +"`bpo-25672 `__: In the ssl module, " +"enable the SSL_MODE_RELEASE_BUFFERS mode option if it is safe to do so." +msgstr "" +"`bpo-25672 `__: In the ssl module, " +"enable the SSL_MODE_RELEASE_BUFFERS mode option if it is safe to do so." + +#: ../../build/NEWS:4760 ../../build/NEWS:6557 +msgid "" +"`bpo-26012 `__: Don't traverse into " +"symlinks for ``**`` pattern in pathlib.Path.[r]glob()." +msgstr "" +"`bpo-26012 `__: Don't traverse into " +"symlinks for ``**`` pattern in pathlib.Path.[r]glob()." + +#: ../../build/NEWS:4766 +msgid "" +"`bpo-21815 `__: Accept ] characters in " +"the data portion of imap responses, in order to handle the flags with square " +"brackets accepted and produced by servers such as gmail." +msgstr "" +"`bpo-21815 `__: Accept ] characters in " +"the data portion of imap responses, in order to handle the flags with square " +"brackets accepted and produced by servers such as gmail." + +#: ../../build/NEWS:4770 ../../build/NEWS:6563 +msgid "" +"`bpo-25447 `__: fileinput now uses sys." +"stdin as-is if it does not have a buffer attribute (restores backward " +"compatibility)." +msgstr "" +"`bpo-25447 `__: fileinput now uses sys." +"stdin as-is if it does not have a buffer attribute (restores backward " +"compatibility)." + +#: ../../build/NEWS:4773 +msgid "" +"`bpo-25971 `__: Optimized creating " +"Fractions from floats by 2 times and from Decimals by 3 times." +msgstr "" +"`bpo-25971 `__: Optimized creating " +"Fractions from floats by 2 times and from Decimals by 3 times." + +#: ../../build/NEWS:4776 +msgid "" +"`bpo-25802 `__: Document as deprecated " +"the remaining implementations of importlib.abc.Loader.load_module()." +msgstr "" +"`bpo-25802 `__: Document as deprecated " +"the remaining implementations of importlib.abc.Loader.load_module()." + +#: ../../build/NEWS:4779 +msgid "" +"`bpo-25928 `__: Add Decimal." +"as_integer_ratio()." +msgstr "" +"`bpo-25928 `__: Add Decimal." +"as_integer_ratio()." + +#: ../../build/NEWS:4781 +msgid "" +"`bpo-25447 `__: Copying the lru_cache() " +"wrapper object now always works, independently from the type of the wrapped " +"object (by returning the original object unchanged)." +msgstr "" +"`bpo-25447 `__: Copying the lru_cache() " +"wrapper object now always works, independently from the type of the wrapped " +"object (by returning the original object unchanged)." + +#: ../../build/NEWS:4785 +msgid "" +"`bpo-25768 `__: Have the functions in " +"compileall return booleans instead of ints and add proper documentation and " +"tests for the return values." +msgstr "" +"`bpo-25768 `__: Have the functions in " +"compileall return booleans instead of ints and add proper documentation and " +"tests for the return values." + +#: ../../build/NEWS:4788 ../../build/NEWS:6570 +msgid "" +"`bpo-24103 `__: Fixed possible use after " +"free in ElementTree.XMLPullParser." +msgstr "" +"`bpo-24103 `__: Fixed possible use after " +"free in ElementTree.XMLPullParser." + +#: ../../build/NEWS:4793 ../../build/NEWS:6575 +msgid "" +"`bpo-25914 `__: Fixed and simplified " +"OrderedDict.__sizeof__." +msgstr "" +"`bpo-25914 `__: Fixed and simplified " +"OrderedDict.__sizeof__." + +#: ../../build/NEWS:4795 +msgid "" +"`bpo-25869 `__: Optimized deepcopying " +"ElementTree; it is now 20 times faster." +msgstr "" +"`bpo-25869 `__: Optimized deepcopying " +"ElementTree; it is now 20 times faster." + +#: ../../build/NEWS:4797 +msgid "" +"`bpo-25873 `__: Optimized iterating " +"ElementTree. Iterating elements Element.iter() is now 40% faster, iterating " +"text Element.itertext() is now up to 2.5 times faster." +msgstr "" +"`bpo-25873 `__: Optimized iterating " +"ElementTree. Iterating elements Element.iter() is now 40% faster, iterating " +"text Element.itertext() is now up to 2.5 times faster." + +#: ../../build/NEWS:4801 ../../build/NEWS:6577 +msgid "" +"`bpo-25902 `__: Fixed various refcount " +"issues in ElementTree iteration." +msgstr "" +"`bpo-25902 `__: Fixed various refcount " +"issues in ElementTree iteration." + +#: ../../build/NEWS:4803 +msgid "" +"`bpo-22227 `__: The TarFile iterator is " +"reimplemented using generator. This implementation is simpler that using " +"class." +msgstr "" +"`bpo-22227 `__: The TarFile iterator is " +"reimplemented using generator. This implementation is simpler that using " +"class." + +#: ../../build/NEWS:4806 +msgid "" +"`bpo-25638 `__: Optimized ElementTree." +"iterparse(); it is now 2x faster. Optimized ElementTree parsing; it is now " +"10% faster." +msgstr "" +"`bpo-25638 `__: Optimized ElementTree." +"iterparse(); it is now 2x faster. Optimized ElementTree parsing; it is now " +"10% faster." + +#: ../../build/NEWS:4809 +msgid "" +"`bpo-25761 `__: Improved detecting " +"errors in broken pickle data." +msgstr "" +"`bpo-25761 `__: Improved detecting " +"errors in broken pickle data." + +#: ../../build/NEWS:4811 ../../build/NEWS:6579 +msgid "" +"`bpo-25717 `__: Restore the previous " +"behaviour of tolerating most fstat() errors when opening files. This was a " +"regression in 3.5a1, and stopped anonymous temporary files from working in " +"special cases." +msgstr "" +"`bpo-25717 `__: Restore the previous " +"behaviour of tolerating most fstat() errors when opening files. This was a " +"regression in 3.5a1, and stopped anonymous temporary files from working in " +"special cases." + +#: ../../build/NEWS:4815 ../../build/NEWS:6583 +msgid "" +"`bpo-24903 `__: Fix regression in number " +"of arguments compileall accepts when '-d' is specified. The check on the " +"number of arguments has been dropped completely as it never worked correctly " +"anyway." +msgstr "" +"`bpo-24903 `__: Fix regression in number " +"of arguments compileall accepts when '-d' is specified. The check on the " +"number of arguments has been dropped completely as it never worked correctly " +"anyway." + +#: ../../build/NEWS:4819 ../../build/NEWS:6587 +msgid "" +"`bpo-25764 `__: In the subprocess " +"module, preserve any exception caused by fork() failure when preexec_fn is " +"used." +msgstr "" +"`bpo-25764 `__: In the subprocess " +"module, preserve any exception caused by fork() failure when preexec_fn is " +"used." + +#: ../../build/NEWS:4822 +msgid "" +"`bpo-25771 `__: Tweak the exception " +"message for importlib.util.resolve_name() when 'package' isn't specified but " +"necessary." +msgstr "" +"`bpo-25771 `__: Tweak the exception " +"message for importlib.util.resolve_name() when 'package' isn't specified but " +"necessary." + +#: ../../build/NEWS:4825 ../../build/NEWS:6590 +msgid "" +"`bpo-6478 `__: _strptime's regexp cache " +"now is reset after changing timezone with time.tzset()." +msgstr "" +"`bpo-6478 `__: _strptime's regexp cache " +"now is reset after changing timezone with time.tzset()." + +#: ../../build/NEWS:4828 ../../build/NEWS:6593 +msgid "" +"`bpo-14285 `__: When executing a package " +"with the \"python -m package\" option, and package initialization fails, a " +"proper traceback is now reported. The \"runpy\" module now lets exceptions " +"from package initialization pass back to the caller, rather than raising " +"ImportError." +msgstr "" +"`bpo-14285 `__: When executing a package " +"with the \"python -m package\" option, and package initialization fails, a " +"proper traceback is now reported. The \"runpy\" module now lets exceptions " +"from package initialization pass back to the caller, rather than raising " +"ImportError." + +#: ../../build/NEWS:4833 ../../build/NEWS:6598 +msgid "" +"`bpo-19771 `__: Also in runpy and the \"-" +"m\" option, omit the irrelevant message \". . . is a package and cannot be " +"directly executed\" if the package could not even be initialized (e.g. due " +"to a bad ``*.pyc`` file)." +msgstr "" +"`bpo-19771 `__: Also in runpy and the \"-" +"m\" option, omit the irrelevant message \". . . is a package and cannot be " +"directly executed\" if the package could not even be initialized (e.g. due " +"to a bad ``*.pyc`` file)." + +#: ../../build/NEWS:4837 ../../build/NEWS:6602 +msgid "" +"`bpo-25177 `__: Fixed problem with the " +"mean of very small and very large numbers. As a side effect, statistics.mean " +"and statistics.variance should be significantly faster." +msgstr "" +"`bpo-25177 `__: Fixed problem with the " +"mean of very small and very large numbers. As a side effect, statistics.mean " +"and statistics.variance should be significantly faster." + +#: ../../build/NEWS:4841 ../../build/NEWS:6606 +msgid "" +"`bpo-25718 `__: Fixed copying object " +"with state with boolean value is false." +msgstr "" +"`bpo-25718 `__: Fixed copying object " +"with state with boolean value is false." + +#: ../../build/NEWS:4843 ../../build/NEWS:6608 +msgid "" +"`bpo-10131 `__: Fixed deep copying of " +"minidom documents. Based on patch by Marian Ganisin." +msgstr "" +"`bpo-10131 `__: Fixed deep copying of " +"minidom documents. Based on patch by Marian Ganisin." + +#: ../../build/NEWS:4846 +msgid "" +"`bpo-7990 `__: dir() on ElementTree." +"Element now lists properties: \"tag\", \"text\", \"tail\" and \"attrib\". " +"Original patch by Santoso Wijaya." +msgstr "" +"`bpo-7990 `__: dir() on ElementTree." +"Element now lists properties: \"tag\", \"text\", \"tail\" and \"attrib\". " +"Original patch by Santoso Wijaya." + +#: ../../build/NEWS:4849 ../../build/NEWS:6611 +msgid "" +"`bpo-25725 `__: Fixed a reference leak " +"in pickle.loads() when unpickling invalid data including tuple instructions." +msgstr "" +"`bpo-25725 `__: Fixed a reference leak " +"in pickle.loads() when unpickling invalid data including tuple instructions." + +#: ../../build/NEWS:4852 ../../build/NEWS:6614 +msgid "" +"`bpo-25663 `__: In the Readline " +"completer, avoid listing duplicate global names, and search the global " +"namespace before searching builtins." +msgstr "" +"`bpo-25663 `__: In the Readline " +"completer, avoid listing duplicate global names, and search the global " +"namespace before searching builtins." + +#: ../../build/NEWS:4855 ../../build/NEWS:6617 +msgid "" +"`bpo-25688 `__: Fixed file leak in " +"ElementTree.iterparse() raising an error." +msgstr "" +"`bpo-25688 `__: Fixed file leak in " +"ElementTree.iterparse() raising an error." + +#: ../../build/NEWS:4857 ../../build/NEWS:6619 +msgid "" +"`bpo-23914 `__: Fixed SystemError raised " +"by unpickler on broken pickle data." +msgstr "" +"`bpo-23914 `__: Fixed SystemError raised " +"by unpickler on broken pickle data." + +#: ../../build/NEWS:4859 ../../build/NEWS:6621 +msgid "" +"`bpo-25691 `__: Fixed crash on deleting " +"ElementTree.Element attributes." +msgstr "" +"`bpo-25691 `__: Fixed crash on deleting " +"ElementTree.Element attributes." + +#: ../../build/NEWS:4861 ../../build/NEWS:6623 +msgid "" +"`bpo-25624 `__: ZipFile now always " +"writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang." +msgstr "" +"`bpo-25624 `__: ZipFile now always " +"writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang." + +#: ../../build/NEWS:4864 ../../build/NEWS:6942 +msgid "" +"`bpo-25626 `__: Change three zlib " +"functions to accept sizes that fit in Py_ssize_t, but internally cap those " +"sizes to UINT_MAX. This resolves a regression in 3.5 where GzipFile.read() " +"failed to read chunks larger than 2 or 4 GiB. The change affects the zlib." +"Decompress.decompress() max_length parameter, the zlib.decompress() bufsize " +"parameter, and the zlib.Decompress.flush() length parameter." +msgstr "" +"`bpo-25626 `__: Change three zlib " +"functions to accept sizes that fit in Py_ssize_t, but internally cap those " +"sizes to UINT_MAX. This resolves a regression in 3.5 where GzipFile.read() " +"failed to read chunks larger than 2 or 4 GiB. The change affects the zlib." +"Decompress.decompress() max_length parameter, the zlib.decompress() bufsize " +"parameter, and the zlib.Decompress.flush() length parameter." + +#: ../../build/NEWS:4871 ../../build/NEWS:6949 +msgid "" +"`bpo-25583 `__: Avoid incorrect errors " +"raised by os.makedirs(exist_ok=True) when the OS gives priority to errors " +"such as EACCES over EEXIST." +msgstr "" +"`bpo-25583 `__: Avoid incorrect errors " +"raised by os.makedirs(exist_ok=True) when the OS gives priority to errors " +"such as EACCES over EEXIST." + +#: ../../build/NEWS:4874 ../../build/NEWS:6952 +msgid "" +"`bpo-25593 `__: Change semantics of " +"EventLoop.stop() in asyncio." +msgstr "" +"`bpo-25593 `__: Change semantics of " +"EventLoop.stop() in asyncio." + +#: ../../build/NEWS:4876 ../../build/NEWS:6954 +msgid "" +"`bpo-6973 `__: When we know a subprocess." +"Popen process has died, do not allow the send_signal(), terminate(), or " +"kill() methods to do anything as they could potentially signal a different " +"process." +msgstr "" +"`bpo-6973 `__: When we know a subprocess." +"Popen process has died, do not allow the send_signal(), terminate(), or " +"kill() methods to do anything as they could potentially signal a different " +"process." + +#: ../../build/NEWS:4886 +msgid "" +"`bpo-25590 `__: In the Readline " +"completer, only call getattr() once per attribute. Also complete names of " +"attributes such as properties and slots which are listed by dir() but not " +"yet created on an instance." +msgstr "" +"`bpo-25590 `__: In the Readline " +"completer, only call getattr() once per attribute. Also complete names of " +"attributes such as properties and slots which are listed by dir() but not " +"yet created on an instance." + +#: ../../build/NEWS:4890 ../../build/NEWS:6961 +msgid "" +"`bpo-25498 `__: Fix a crash when garbage-" +"collecting ctypes objects created by wrapping a memoryview. This was a " +"regression made in 3.5a1. Based on patch by Eryksun." +msgstr "" +"`bpo-25498 `__: Fix a crash when garbage-" +"collecting ctypes objects created by wrapping a memoryview. This was a " +"regression made in 3.5a1. Based on patch by Eryksun." + +#: ../../build/NEWS:4894 ../../build/NEWS:6965 +msgid "" +"`bpo-25584 `__: Added \"escape\" to the " +"__all__ list in the glob module." +msgstr "" +"`bpo-25584 `__: Added \"escape\" to the " +"__all__ list in the glob module." + +#: ../../build/NEWS:4896 ../../build/NEWS:6967 +msgid "" +"`bpo-25584 `__: Fixed recursive glob() " +"with patterns starting with ``**``." +msgstr "" +"`bpo-25584 `__: Fixed recursive glob() " +"with patterns starting with ``**``." + +#: ../../build/NEWS:4898 ../../build/NEWS:6969 +msgid "" +"`bpo-25446 `__: Fix regression in " +"smtplib's AUTH LOGIN support." +msgstr "" +"`bpo-25446 `__: Fix regression in " +"smtplib's AUTH LOGIN support." + +#: ../../build/NEWS:4900 ../../build/NEWS:6971 +msgid "" +"`bpo-18010 `__: Fix the pydoc web " +"server's module search function to handle exceptions from importing packages." +msgstr "" +"`bpo-18010 `__: Fix the pydoc web " +"server's module search function to handle exceptions from importing packages." + +#: ../../build/NEWS:4903 ../../build/NEWS:6974 +msgid "" +"`bpo-25554 `__: Got rid of circular " +"references in regular expression parsing." +msgstr "" +"`bpo-25554 `__: Got rid of circular " +"references in regular expression parsing." + +#: ../../build/NEWS:4905 +msgid "" +"`bpo-18973 `__: Command-line interface " +"of the calendar module now uses argparse instead of optparse." +msgstr "" +"`bpo-18973 `__: Command-line interface " +"of the calendar module now uses argparse instead of optparse." + +#: ../../build/NEWS:4908 ../../build/NEWS:6976 +msgid "" +"`bpo-25510 `__: fileinput.FileInput." +"readline() now returns b'' instead of '' at the end if the FileInput was " +"opened with binary mode. Patch by Ryosuke Ito." +msgstr "" +"`bpo-25510 `__: fileinput.FileInput." +"readline() now returns b'' instead of '' at the end if the FileInput was " +"opened with binary mode. Patch by Ryosuke Ito." + +#: ../../build/NEWS:4912 ../../build/NEWS:6980 +msgid "" +"`bpo-25503 `__: Fixed inspect.getdoc() " +"for inherited docstrings of properties. Original patch by John Mark " +"Vandenberg." +msgstr "" +"`bpo-25503 `__: Fixed inspect.getdoc() " +"for inherited docstrings of properties. Original patch by John Mark " +"Vandenberg." + +#: ../../build/NEWS:4915 ../../build/NEWS:6983 +msgid "" +"`bpo-25515 `__: Always use os.urandom as " +"a source of randomness in uuid.uuid4." +msgstr "" +"`bpo-25515 `__: Always use os.urandom as " +"a source of randomness in uuid.uuid4." + +#: ../../build/NEWS:4917 ../../build/NEWS:6985 +msgid "" +"`bpo-21827 `__: Fixed textwrap.dedent() " +"for the case when largest common whitespace is a substring of smallest " +"leading whitespace. Based on patch by Robert Li." +msgstr "" +"`bpo-21827 `__: Fixed textwrap.dedent() " +"for the case when largest common whitespace is a substring of smallest " +"leading whitespace. Based on patch by Robert Li." + +#: ../../build/NEWS:4921 ../../build/NEWS:6989 +msgid "" +"`bpo-25447 `__: The lru_cache() wrapper " +"objects now can be copied and pickled (by returning the original object " +"unchanged)." +msgstr "" +"`bpo-25447 `__: The lru_cache() wrapper " +"objects now can be copied and pickled (by returning the original object " +"unchanged)." + +#: ../../build/NEWS:4924 ../../build/NEWS:6992 +msgid "" +"`bpo-25390 `__: typing: Don't crash on " +"Union[str, Pattern]." +msgstr "" +"`bpo-25390 `__: typing: Don't crash on " +"Union[str, Pattern]." + +#: ../../build/NEWS:4926 ../../build/NEWS:6994 +msgid "" +"`bpo-25441 `__: asyncio: Raise error " +"from drain() when socket is closed." +msgstr "" +"`bpo-25441 `__: asyncio: Raise error " +"from drain() when socket is closed." + +#: ../../build/NEWS:4928 ../../build/NEWS:6996 +msgid "" +"`bpo-25410 `__: Cleaned up and fixed " +"minor bugs in C implementation of OrderedDict." +msgstr "" +"`bpo-25410 `__: Cleaned up and fixed " +"minor bugs in C implementation of OrderedDict." + +#: ../../build/NEWS:4931 ../../build/NEWS:6999 +msgid "" +"`bpo-25411 `__: Improved Unicode support " +"in SMTPHandler through better use of the email package. Thanks to user " +"simon04 for the patch." +msgstr "" +"`bpo-25411 `__: Improved Unicode support " +"in SMTPHandler through better use of the email package. Thanks to user " +"simon04 for the patch." + +#: ../../build/NEWS:4934 +msgid "" +"Move the imp module from a PendingDeprecationWarning to DeprecationWarning." +msgstr "" + +#: ../../build/NEWS:4937 ../../build/NEWS:7002 +msgid "" +"`bpo-25407 `__: Remove mentions of the " +"formatter module being removed in Python 3.6." +msgstr "" +"`bpo-25407 `__: Remove mentions of the " +"formatter module being removed in Python 3.6." + +#: ../../build/NEWS:4940 ../../build/NEWS:7005 +msgid "" +"`bpo-25406 `__: Fixed a bug in C " +"implementation of OrderedDict.move_to_end() that caused segmentation fault " +"or hang in iterating after moving several items to the start of ordered dict." +msgstr "" +"`bpo-25406 `__: Fixed a bug in C " +"implementation of OrderedDict.move_to_end() that caused segmentation fault " +"or hang in iterating after moving several items to the start of ordered dict." + +#: ../../build/NEWS:4944 +msgid "" +"`bpo-25382 `__: pickletools.dis() now " +"outputs implicit memo index for the MEMOIZE opcode." +msgstr "" +"`bpo-25382 `__: pickletools.dis() now " +"outputs implicit memo index for the MEMOIZE opcode." + +#: ../../build/NEWS:4947 +msgid "" +"`bpo-25357 `__: Add an optional newline " +"paramer to binascii.b2a_base64(). base64.b64encode() uses it to avoid a " +"memory copy." +msgstr "" +"`bpo-25357 `__: Add an optional newline " +"paramer to binascii.b2a_base64(). base64.b64encode() uses it to avoid a " +"memory copy." + +#: ../../build/NEWS:4950 +msgid "" +"`bpo-24164 `__: Objects that need " +"calling ``__new__`` with keyword arguments, can now be pickled using pickle " +"protocols older than protocol version 4." +msgstr "" +"`bpo-24164 `__: Objects that need " +"calling ``__new__`` with keyword arguments, can now be pickled using pickle " +"protocols older than protocol version 4." + +#: ../../build/NEWS:4953 ../../build/NEWS:7009 +msgid "" +"`bpo-25364 `__: zipfile now works in " +"threads disabled builds." +msgstr "" +"`bpo-25364 `__: zipfile now works in " +"threads disabled builds." + +#: ../../build/NEWS:4955 ../../build/NEWS:7011 +msgid "" +"`bpo-25328 `__: smtpd's SMTPChannel now " +"correctly raises a ValueError if both decode_data and enable_SMTPUTF8 are " +"set to true." +msgstr "" +"`bpo-25328 `__: smtpd's SMTPChannel now " +"correctly raises a ValueError if both decode_data and enable_SMTPUTF8 are " +"set to true." + +#: ../../build/NEWS:4958 +msgid "" +"`bpo-16099 `__: RobotFileParser now " +"supports Crawl-delay and Request-rate extensions. Patch by Nikolay " +"Bogoychev." +msgstr "" +"`bpo-16099 `__: RobotFileParser now " +"supports Crawl-delay and Request-rate extensions. Patch by Nikolay " +"Bogoychev." + +#: ../../build/NEWS:4961 ../../build/NEWS:7014 +msgid "" +"`bpo-25316 `__: distutils raises OSError " +"instead of DistutilsPlatformError when MSVC is not installed." +msgstr "" +"`bpo-25316 `__: distutils raises OSError " +"instead of DistutilsPlatformError when MSVC is not installed." + +#: ../../build/NEWS:4964 ../../build/NEWS:7017 +msgid "" +"`bpo-25380 `__: Fixed protocol for the " +"STACK_GLOBAL opcode in pickletools.opcodes." +msgstr "" +"`bpo-25380 `__: Fixed protocol for the " +"STACK_GLOBAL opcode in pickletools.opcodes." + +#: ../../build/NEWS:4967 ../../build/NEWS:7020 +msgid "" +"`bpo-23972 `__: Updates asyncio datagram " +"create method allowing reuseport and reuseaddr socket options to be set " +"prior to binding the socket. Mirroring the existing asyncio create_server " +"method the reuseaddr option for datagram sockets defaults to True if the O/S " +"is 'posix' (except if the platform is Cygwin). Patch by Chris Laws." +msgstr "" +"`bpo-23972 `__: Updates asyncio datagram " +"create method allowing reuseport and reuseaddr socket options to be set " +"prior to binding the socket. Mirroring the existing asyncio create_server " +"method the reuseaddr option for datagram sockets defaults to True if the O/S " +"is 'posix' (except if the platform is Cygwin). Patch by Chris Laws." + +#: ../../build/NEWS:4973 ../../build/NEWS:7026 +msgid "" +"`bpo-25304 `__: Add asyncio." +"run_coroutine_threadsafe(). This lets you submit a coroutine to a loop from " +"another thread, returning a concurrent.futures.Future. By Vincent Michel." +msgstr "" +"`bpo-25304 `__: Add asyncio." +"run_coroutine_threadsafe(). This lets you submit a coroutine to a loop from " +"another thread, returning a concurrent.futures.Future. By Vincent Michel." + +#: ../../build/NEWS:4977 ../../build/NEWS:7030 +msgid "" +"`bpo-25232 `__: Fix CGIRequestHandler to " +"split the query from the URL at the first question mark (?) rather than the " +"last. Patch from Xiang Zhang." +msgstr "" +"`bpo-25232 `__: Fix CGIRequestHandler to " +"split the query from the URL at the first question mark (?) rather than the " +"last. Patch from Xiang Zhang." + +#: ../../build/NEWS:4980 ../../build/NEWS:7033 +msgid "" +"`bpo-24657 `__: Prevent " +"CGIRequestHandler from collapsing slashes in the query part of the URL as if " +"it were a path. Patch from Xiang Zhang." +msgstr "" +"`bpo-24657 `__: Prevent " +"CGIRequestHandler from collapsing slashes in the query part of the URL as if " +"it were a path. Patch from Xiang Zhang." + +#: ../../build/NEWS:4983 +msgid "" +"`bpo-25287 `__: Don't add crypt." +"METHOD_CRYPT to crypt.methods if it's not supported. Check if it is " +"supported, it may not be supported on OpenBSD for example." +msgstr "" +"`bpo-25287 `__: Don't add crypt." +"METHOD_CRYPT to crypt.methods if it's not supported. Check if it is " +"supported, it may not be supported on OpenBSD for example." + +#: ../../build/NEWS:4987 ../../build/NEWS:7061 +msgid "" +"`bpo-23600 `__: Default implementation " +"of tzinfo.fromutc() was returning wrong results in some cases." +msgstr "" +"`bpo-23600 `__: Default implementation " +"of tzinfo.fromutc() was returning wrong results in some cases." + +#: ../../build/NEWS:4990 ../../build/NEWS:7058 +msgid "" +"`bpo-25203 `__: Failed readline." +"set_completer_delims() no longer left the module in inconsistent state." +msgstr "" +"`bpo-25203 `__: Failed readline." +"set_completer_delims() no longer left the module in inconsistent state." + +#: ../../build/NEWS:4993 +msgid "" +"`bpo-25011 `__: rlcompleter now omits " +"private and special attribute names unless the prefix starts with " +"underscores." +msgstr "" +"`bpo-25011 `__: rlcompleter now omits " +"private and special attribute names unless the prefix starts with " +"underscores." + +#: ../../build/NEWS:4996 +msgid "" +"`bpo-25209 `__: rlcompleter now can add " +"a space or a colon after completed keyword." +msgstr "" +"`bpo-25209 `__: rlcompleter now can add " +"a space or a colon after completed keyword." + +#: ../../build/NEWS:4999 +msgid "" +"`bpo-22241 `__: timezone.utc name is now " +"plain 'UTC', not 'UTC-00:00'." +msgstr "" +"`bpo-22241 `__: timezone.utc name is now " +"plain 'UTC', not 'UTC-00:00'." + +#: ../../build/NEWS:5001 +msgid "" +"`bpo-23517 `__: fromtimestamp() and " +"utcfromtimestamp() methods of datetime.datetime now round microseconds to " +"nearest with ties going to nearest even integer (ROUND_HALF_EVEN), as " +"round(float), instead of rounding towards -Infinity (ROUND_FLOOR)." +msgstr "" +"`bpo-23517 `__: fromtimestamp() and " +"utcfromtimestamp() methods of datetime.datetime now round microseconds to " +"nearest with ties going to nearest even integer (ROUND_HALF_EVEN), as " +"round(float), instead of rounding towards -Infinity (ROUND_FLOOR)." + +#: ../../build/NEWS:5006 +msgid "" +"`bpo-23552 `__: Timeit now warns when " +"there is substantial (4x) variance between best and worst times. Patch from " +"Serhiy Storchaka." +msgstr "" +"`bpo-23552 `__: Timeit now warns when " +"there is substantial (4x) variance between best and worst times. Patch from " +"Serhiy Storchaka." + +#: ../../build/NEWS:5009 +msgid "" +"`bpo-24633 `__: site-packages/README -> " +"README.txt." +msgstr "" +"`bpo-24633 `__: site-packages/README -> " +"README.txt." + +#: ../../build/NEWS:5011 +msgid "" +"`bpo-24879 `__: help() and pydoc can now " +"list named tuple fields in the order they were defined rather than " +"alphabetically. The ordering is determined by the _fields attribute if " +"present." +msgstr "" +"`bpo-24879 `__: help() and pydoc can now " +"list named tuple fields in the order they were defined rather than " +"alphabetically. The ordering is determined by the _fields attribute if " +"present." + +#: ../../build/NEWS:5015 +msgid "" +"`bpo-24874 `__: Improve speed of " +"itertools.cycle() and make its pickle more compact." +msgstr "" +"`bpo-24874 `__: Improve speed of " +"itertools.cycle() and make its pickle more compact." + +#: ../../build/NEWS:5018 +msgid "" +"Fix crash in itertools.cycle.__setstate__() when the first argument wasn't a " +"list." +msgstr "" + +#: ../../build/NEWS:5021 +msgid "" +"`bpo-20059 `__: urllib.parse raises " +"ValueError on all invalid ports. Patch by Martin Panter." +msgstr "" +"`bpo-20059 `__: urllib.parse raises " +"ValueError on all invalid ports. Patch by Martin Panter." + +#: ../../build/NEWS:5024 +msgid "" +"`bpo-24360 `__: Improve __repr__ of " +"argparse.Namespace() for invalid identifiers. Patch by Matthias Bussonnier." +msgstr "" +"`bpo-24360 `__: Improve __repr__ of " +"argparse.Namespace() for invalid identifiers. Patch by Matthias Bussonnier." + +#: ../../build/NEWS:5027 +msgid "" +"`bpo-23426 `__: run_setup was broken in " +"distutils. Patch from Alexander Belopolsky." +msgstr "" +"`bpo-23426 `__: run_setup was broken in " +"distutils. Patch from Alexander Belopolsky." + +#: ../../build/NEWS:5030 +msgid "" +"`bpo-13938 `__: 2to3 converts " +"StringTypes to a tuple. Patch from Mark Hammond." +msgstr "" +"`bpo-13938 `__: 2to3 converts " +"StringTypes to a tuple. Patch from Mark Hammond." + +#: ../../build/NEWS:5032 +msgid "" +"`bpo-2091 `__: open() accepted a 'U' mode " +"string containing '+', but 'U' can only be used with 'r'. Patch from Jeff " +"Balogh and John O'Connor." +msgstr "" +"`bpo-2091 `__: open() accepted a 'U' mode " +"string containing '+', but 'U' can only be used with 'r'. Patch from Jeff " +"Balogh and John O'Connor." + +#: ../../build/NEWS:5035 +msgid "" +"`bpo-8585 `__: improved tests for " +"zipimporter2. Patch from Mark Lawrence." +msgstr "" +"`bpo-8585 `__: improved tests for " +"zipimporter2. Patch from Mark Lawrence." + +#: ../../build/NEWS:5037 ../../build/NEWS:7602 +msgid "" +"`bpo-18622 `__: unittest.mock." +"mock_open().reset_mock would recurse infinitely. Patch from Nicola Palumbo " +"and Laurent De Buyst." +msgstr "" +"`bpo-18622 `__: unittest.mock." +"mock_open().reset_mock would recurse infinitely. Patch from Nicola Palumbo " +"and Laurent De Buyst." + +#: ../../build/NEWS:5040 +msgid "" +"`bpo-24426 `__: Fast searching " +"optimization in regular expressions now works for patterns that starts with " +"capturing groups. Fast searching optimization now can't be disabled at " +"compile time." +msgstr "" +"`bpo-24426 `__: Fast searching " +"optimization in regular expressions now works for patterns that starts with " +"capturing groups. Fast searching optimization now can't be disabled at " +"compile time." + +#: ../../build/NEWS:5044 ../../build/NEWS:7605 +msgid "" +"`bpo-23661 `__: unittest.mock " +"side_effects can now be exceptions again. This was a regression vs Python " +"3.4. Patch from Ignacio Rossi" +msgstr "" +"`bpo-23661 `__: unittest.mock " +"side_effects can now be exceptions again. This was a regression vs Python " +"3.4. Patch from Ignacio Rossi" + +#: ../../build/NEWS:5047 +msgid "" +"`bpo-13248 `__: Remove deprecated " +"inspect.getmoduleinfo function." +msgstr "" +"`bpo-13248 `__: Remove deprecated " +"inspect.getmoduleinfo function." + +#: ../../build/NEWS:5049 ../../build/NEWS:7135 +msgid "" +"`bpo-25578 `__: Fix (another) memory " +"leak in SSLSocket.getpeercer()." +msgstr "" +"`bpo-25578 `__: Fix (another) memory " +"leak in SSLSocket.getpeercer()." + +#: ../../build/NEWS:5051 ../../build/NEWS:7137 +msgid "" +"`bpo-25530 `__: Disable the vulnerable " +"SSLv3 protocol by default when creating ssl.SSLContext." +msgstr "" +"`bpo-25530 `__: Disable the vulnerable " +"SSLv3 protocol by default when creating ssl.SSLContext." + +#: ../../build/NEWS:5054 ../../build/NEWS:7140 +msgid "" +"`bpo-25569 `__: Fix memory leak in " +"SSLSocket.getpeercert()." +msgstr "" +"`bpo-25569 `__: Fix memory leak in " +"SSLSocket.getpeercert()." + +#: ../../build/NEWS:5056 ../../build/NEWS:7142 +msgid "" +"`bpo-25471 `__: Sockets returned from " +"accept() shouldn't appear to be nonblocking." +msgstr "" +"`bpo-25471 `__: Sockets returned from " +"accept() shouldn't appear to be nonblocking." + +#: ../../build/NEWS:5059 ../../build/NEWS:7145 +msgid "" +"`bpo-25319 `__: When threading.Event is " +"reinitialized, the underlying condition should use a regular lock rather " +"than a recursive lock." +msgstr "" +"`bpo-25319 `__: When threading.Event is " +"reinitialized, the underlying condition should use a regular lock rather " +"than a recursive lock." + +#: ../../build/NEWS:5062 ../../build/NEWS:6626 +msgid "" +"Skip getaddrinfo if host is already resolved. Patch by A. Jesse Jiryu Davis." +msgstr "" + +#: ../../build/NEWS:5065 ../../build/NEWS:6629 +msgid "" +"`bpo-26050 `__: Add asyncio.StreamReader." +"readuntil() method. Patch by Марк Коренберг." +msgstr "" +"`bpo-26050 `__: Add asyncio.StreamReader." +"readuntil() method. Patch by Марк Коренберг." + +#: ../../build/NEWS:5068 ../../build/NEWS:6632 +msgid "" +"`bpo-25924 `__: Avoid unnecessary " +"serialization of getaddrinfo(3) calls on OS X versions 10.5 or higher. " +"Original patch by A. Jesse Jiryu Davis." +msgstr "" +"`bpo-25924 `__: Avoid unnecessary " +"serialization of getaddrinfo(3) calls on OS X versions 10.5 or higher. " +"Original patch by A. Jesse Jiryu Davis." + +#: ../../build/NEWS:5071 ../../build/NEWS:6635 +msgid "" +"`bpo-26406 `__: Avoid unnecessary " +"serialization of getaddrinfo(3) calls on current versions of OpenBSD and " +"NetBSD. Patch by A. Jesse Jiryu Davis." +msgstr "" +"`bpo-26406 `__: Avoid unnecessary " +"serialization of getaddrinfo(3) calls on current versions of OpenBSD and " +"NetBSD. Patch by A. Jesse Jiryu Davis." + +#: ../../build/NEWS:5074 ../../build/NEWS:6638 +msgid "" +"`bpo-26848 `__: Fix asyncio/subprocess." +"communicate() to handle empty input. Patch by Jack O'Connor." +msgstr "" +"`bpo-26848 `__: Fix asyncio/subprocess." +"communicate() to handle empty input. Patch by Jack O'Connor." + +#: ../../build/NEWS:5077 ../../build/NEWS:6641 +msgid "" +"`bpo-27040 `__: Add loop." +"get_exception_handler method" +msgstr "" +"`bpo-27040 `__: Add loop." +"get_exception_handler method" + +#: ../../build/NEWS:5079 ../../build/NEWS:6643 +msgid "" +"`bpo-27041 `__: asyncio: Add loop." +"create_future method" +msgstr "" +"`bpo-27041 `__: asyncio: Add loop." +"create_future method" + +#: ../../build/NEWS:5084 ../../build/NEWS:6691 +msgid "" +"`bpo-20640 `__: Add tests for idlelib." +"configHelpSourceEdit. Patch by Saimadhav Heblikar." +msgstr "" +"`bpo-20640 `__: Add tests for idlelib." +"configHelpSourceEdit. Patch by Saimadhav Heblikar." + +#: ../../build/NEWS:5087 ../../build/NEWS:6694 +msgid "" +"In the 'IDLE-console differences' section of the IDLE doc, clarify how " +"running with IDLE affects sys.modules and the standard streams." +msgstr "" + +#: ../../build/NEWS:5090 ../../build/NEWS:6697 +msgid "" +"`bpo-25507 `__: fix incorrect change in " +"IOBinding that prevented printing. Augment IOBinding htest to include all " +"major IOBinding functions." +msgstr "" +"`bpo-25507 `__: fix incorrect change in " +"IOBinding that prevented printing. Augment IOBinding htest to include all " +"major IOBinding functions." + +#: ../../build/NEWS:5093 ../../build/NEWS:6700 +msgid "" +"`bpo-25905 `__: Revert unwanted " +"conversion of ' to ’ RIGHT SINGLE QUOTATION MARK in README.txt and open this " +"and NEWS.txt with 'ascii'. Re-encode CREDITS.txt to utf-8 and open it with " +"'utf-8'." +msgstr "" +"`bpo-25905 `__: Revert unwanted " +"conversion of ' to ’ RIGHT SINGLE QUOTATION MARK in README.txt and open this " +"and NEWS.txt with 'ascii'. Re-encode CREDITS.txt to utf-8 and open it with " +"'utf-8'." + +#: ../../build/NEWS:5097 ../../build/NEWS:7174 +msgid "" +"`bpo-15348 `__: Stop the debugger engine " +"(normally in a user process) before closing the debugger window (running in " +"the IDLE process). This prevents the RuntimeErrors that were being caught " +"and ignored." +msgstr "" +"`bpo-15348 `__: Stop the debugger engine " +"(normally in a user process) before closing the debugger window (running in " +"the IDLE process). This prevents the RuntimeErrors that were being caught " +"and ignored." + +#: ../../build/NEWS:5101 ../../build/NEWS:7178 +msgid "" +"`bpo-24455 `__: Prevent IDLE from " +"hanging when a) closing the shell while the debugger is active (15347); b) " +"closing the debugger with the [X] button (15348); and c) activating the " +"debugger when already active (24455). The patch by Mark Roseman does this by " +"making two changes. 1. Suspend and resume the gui.interaction method with " +"the tcl vwait mechanism intended for this purpose (instead of root.mainloop " +"& .quit). 2. In gui.run, allow any existing interaction to terminate first." +msgstr "" +"`bpo-24455 `__: Prevent IDLE from " +"hanging when a) closing the shell while the debugger is active (15347); b) " +"closing the debugger with the [X] button (15348); and c) activating the " +"debugger when already active (24455). The patch by Mark Roseman does this by " +"making two changes. 1. Suspend and resume the gui.interaction method with " +"the tcl vwait mechanism intended for this purpose (instead of root.mainloop " +"& .quit). 2. In gui.run, allow any existing interaction to terminate first." + +#: ../../build/NEWS:5109 ../../build/NEWS:7186 +msgid "" +"Change 'The program' to 'Your program' in an IDLE 'kill program?' message to " +"make it clearer that the program referred to is the currently running user " +"program, not IDLE itself." +msgstr "" + +#: ../../build/NEWS:5113 ../../build/NEWS:7190 +msgid "" +"`bpo-24750 `__: Improve the appearance " +"of the IDLE editor window status bar. Patch by Mark Roseman." +msgstr "" +"`bpo-24750 `__: Improve the appearance " +"of the IDLE editor window status bar. Patch by Mark Roseman." + +#: ../../build/NEWS:5116 ../../build/NEWS:7193 +msgid "" +"`bpo-25313 `__: Change the handling of " +"new built-in text color themes to better address the compatibility problem " +"introduced by the addition of IDLE Dark. Consistently use the revised " +"idleConf.CurrentTheme everywhere in idlelib." +msgstr "" +"`bpo-25313 `__: Change the handling of " +"new built-in text color themes to better address the compatibility problem " +"introduced by the addition of IDLE Dark. Consistently use the revised " +"idleConf.CurrentTheme everywhere in idlelib." + +#: ../../build/NEWS:5120 ../../build/NEWS:7197 +msgid "" +"`bpo-24782 `__: Extension configuration " +"is now a tab in the IDLE Preferences dialog rather than a separate dialog. " +"The former tabs are now a sorted list. Patch by Mark Roseman." +msgstr "" +"`bpo-24782 `__: Extension configuration " +"is now a tab in the IDLE Preferences dialog rather than a separate dialog. " +"The former tabs are now a sorted list. Patch by Mark Roseman." + +#: ../../build/NEWS:5124 ../../build/NEWS:7201 +msgid "" +"`bpo-22726 `__: Re-activate the config " +"dialog help button with some content about the other buttons and the new " +"IDLE Dark theme." +msgstr "" +"`bpo-22726 `__: Re-activate the config " +"dialog help button with some content about the other buttons and the new " +"IDLE Dark theme." + +#: ../../build/NEWS:5127 ../../build/NEWS:7204 +msgid "" +"`bpo-24820 `__: IDLE now has an 'IDLE " +"Dark' built-in text color theme. It is more or less IDLE Classic inverted, " +"with a cobalt blue background. Strings, comments, keywords, ... are still " +"green, red, orange, ... . To use it with IDLEs released before November " +"2015, hit the 'Save as New Custom Theme' button and enter a new name, such " +"as 'Custom Dark'. The custom theme will work with any IDLE release, and can " +"be modified." +msgstr "" +"`bpo-24820 `__: IDLE now has an 'IDLE " +"Dark' built-in text color theme. It is more or less IDLE Classic inverted, " +"with a cobalt blue background. Strings, comments, keywords, ... are still " +"green, red, orange, ... . To use it with IDLEs released before November " +"2015, hit the 'Save as New Custom Theme' button and enter a new name, such " +"as 'Custom Dark'. The custom theme will work with any IDLE release, and can " +"be modified." + +#: ../../build/NEWS:5141 ../../build/NEWS:7218 +msgid "" +"`bpo-24972 `__: Inactive selection " +"background now matches active selection background, as configured by users, " +"on all systems. Found items are now always highlighted on Windows. Initial " +"patch by Mark Roseman." +msgstr "" +"`bpo-24972 `__: Inactive selection " +"background now matches active selection background, as configured by users, " +"on all systems. Found items are now always highlighted on Windows. Initial " +"patch by Mark Roseman." + +#: ../../build/NEWS:5145 ../../build/NEWS:7222 +msgid "" +"`bpo-24570 `__: Idle: make calltip and " +"completion boxes appear on Macs affected by a tk regression. Initial patch " +"by Mark Roseman." +msgstr "" +"`bpo-24570 `__: Idle: make calltip and " +"completion boxes appear on Macs affected by a tk regression. Initial patch " +"by Mark Roseman." + +#: ../../build/NEWS:5151 ../../build/NEWS:7228 +msgid "" +"`bpo-24801 `__: Make right-click for " +"context menu work on Mac Aqua. Patch by Mark Roseman." +msgstr "" +"`bpo-24801 `__: Make right-click for " +"context menu work on Mac Aqua. Patch by Mark Roseman." + +#: ../../build/NEWS:5154 ../../build/NEWS:7231 +msgid "" +"`bpo-25173 `__: Associate tkinter " +"messageboxes with a specific widget. For Mac OSX, make them a 'sheet'. " +"Patch by Mark Roseman." +msgstr "" +"`bpo-25173 `__: Associate tkinter " +"messageboxes with a specific widget. For Mac OSX, make them a 'sheet'. " +"Patch by Mark Roseman." + +#: ../../build/NEWS:5164 ../../build/NEWS:7241 +msgid "" +"`bpo-25225 `__: Condense and rewrite " +"Idle doc section on text colors." +msgstr "" +"`bpo-25225 `__: Condense and rewrite " +"Idle doc section on text colors." + +#: ../../build/NEWS:5166 ../../build/NEWS:7243 +msgid "" +"`bpo-21995 `__: Explain some differences " +"between IDLE and console Python." +msgstr "" +"`bpo-21995 `__: Explain some differences " +"between IDLE and console Python." + +#: ../../build/NEWS:5168 ../../build/NEWS:7245 +msgid "" +"`bpo-22820 `__: Explain need for *print* " +"when running file from Idle editor." +msgstr "" +"`bpo-22820 `__: Explain need for *print* " +"when running file from Idle editor." + +#: ../../build/NEWS:5170 ../../build/NEWS:7247 +msgid "" +"`bpo-25224 `__: Doc: augment Idle " +"feature list and no-subprocess section." +msgstr "" +"`bpo-25224 `__: Doc: augment Idle " +"feature list and no-subprocess section." + +#: ../../build/NEWS:5172 ../../build/NEWS:7249 +msgid "" +"`bpo-25219 `__: Update doc for Idle " +"command line options. Some were missing and notes were not correct." +msgstr "" +"`bpo-25219 `__: Update doc for Idle " +"command line options. Some were missing and notes were not correct." + +#: ../../build/NEWS:5175 ../../build/NEWS:7252 +msgid "" +"`bpo-24861 `__: Most of idlelib is " +"private and subject to change. Use idleib.idle.* to start Idle. See idlelib." +"__init__.__doc__." +msgstr "" +"`bpo-24861 `__: Most of idlelib is " +"private and subject to change. Use idleib.idle.* to start Idle. See idlelib." +"__init__.__doc__." + +#: ../../build/NEWS:5178 ../../build/NEWS:7255 +msgid "" +"`bpo-25199 `__: Idle: add " +"synchronization comments for future maintainers." +msgstr "" +"`bpo-25199 `__: Idle: add " +"synchronization comments for future maintainers." + +#: ../../build/NEWS:5180 +msgid "" +"`bpo-16893 `__: Replace help.txt with " +"help.html for Idle doc display. The new idlelib/help.html is rstripped Doc/" +"build/html/library/idle.html. It looks better than help.txt and will better " +"document Idle as released. The tkinter html viewer that works for this file " +"was written by Rose Roseman. The now unused EditorWindow.HelpDialog class " +"and helt.txt file are deprecated." +msgstr "" +"`bpo-16893 `__: Replace help.txt with " +"help.html for Idle doc display. The new idlelib/help.html is rstripped Doc/" +"build/html/library/idle.html. It looks better than help.txt and will better " +"document Idle as released. The tkinter html viewer that works for this file " +"was written by Rose Roseman. The now unused EditorWindow.HelpDialog class " +"and helt.txt file are deprecated." + +#: ../../build/NEWS:5187 ../../build/NEWS:7264 +msgid "" +"`bpo-24199 `__: Deprecate unused idlelib." +"idlever with possible removal in 3.6." +msgstr "" +"`bpo-24199 `__: Deprecate unused idlelib." +"idlever with possible removal in 3.6." + +#: ../../build/NEWS:5189 ../../build/NEWS:7266 +msgid "" +"`bpo-24790 `__: Remove extraneous code " +"(which also create 2 & 3 conflicts)." +msgstr "" +"`bpo-24790 `__: Remove extraneous code " +"(which also create 2 & 3 conflicts)." + +#: ../../build/NEWS:5194 ../../build/NEWS:6712 +msgid "" +"`bpo-26736 `__: Used HTTPS for external " +"links in the documentation if possible." +msgstr "" +"`bpo-26736 `__: Used HTTPS for external " +"links in the documentation if possible." + +#: ../../build/NEWS:5196 ../../build/NEWS:6714 +msgid "" +"`bpo-6953 `__: Rework the Readline module " +"documentation to group related functions together, and add more details such " +"as what underlying Readline functions and variables are accessed." +msgstr "" +"`bpo-6953 `__: Rework the Readline module " +"documentation to group related functions together, and add more details such " +"as what underlying Readline functions and variables are accessed." + +#: ../../build/NEWS:5200 ../../build/NEWS:6718 +msgid "" +"`bpo-23606 `__: Adds note to ctypes " +"documentation regarding cdll.msvcrt." +msgstr "" +"`bpo-23606 `__: Adds note to ctypes " +"documentation regarding cdll.msvcrt." + +#: ../../build/NEWS:5202 ../../build/NEWS:7281 +msgid "" +"`bpo-24952 `__: Clarify the default size " +"argument of stack_size() in the \"threading\" and \"_thread\" modules. Patch " +"from Mattip." +msgstr "" +"`bpo-24952 `__: Clarify the default size " +"argument of stack_size() in the \"threading\" and \"_thread\" modules. Patch " +"from Mattip." + +#: ../../build/NEWS:5205 ../../build/NEWS:6723 +msgid "" +"`bpo-26014 `__: Update 3.x packaging " +"documentation: * \"See also\" links to the new docs are now provided in the " +"legacy pages * links to setuptools documentation have been updated" +msgstr "" +"`bpo-26014 `__: Update 3.x packaging " +"documentation: * \"See also\" links to the new docs are now provided in the " +"legacy pages * links to setuptools documentation have been updated" + +#: ../../build/NEWS:5212 ../../build/NEWS:6730 +msgid "" +"`bpo-21916 `__: Added tests for the " +"turtle module. Patch by ingrid, Gregory Loyse and Jelle Zijlstra." +msgstr "" +"`bpo-21916 `__: Added tests for the " +"turtle module. Patch by ingrid, Gregory Loyse and Jelle Zijlstra." + +#: ../../build/NEWS:5215 +msgid "" +"`bpo-26295 `__: When using \"python3 -m " +"test --testdir=TESTDIR\", regrtest doesn't add \"test.\" prefix to test " +"module names." +msgstr "" +"`bpo-26295 `__: When using \"python3 -m " +"test --testdir=TESTDIR\", regrtest doesn't add \"test.\" prefix to test " +"module names." + +#: ../../build/NEWS:5218 ../../build/NEWS:6733 +msgid "" +"`bpo-26523 `__: The multiprocessing " +"thread pool (multiprocessing.dummy.Pool) was untested." +msgstr "" +"`bpo-26523 `__: The multiprocessing " +"thread pool (multiprocessing.dummy.Pool) was untested." + +#: ../../build/NEWS:5221 ../../build/NEWS:6736 +msgid "" +"`bpo-26015 `__: Added new tests for " +"pickling iterators of mutable sequences." +msgstr "" +"`bpo-26015 `__: Added new tests for " +"pickling iterators of mutable sequences." + +#: ../../build/NEWS:5223 ../../build/NEWS:6738 +msgid "" +"`bpo-26325 `__: Added test.support." +"check_no_resource_warning() to check that no ResourceWarning is emitted." +msgstr "" +"`bpo-26325 `__: Added test.support." +"check_no_resource_warning() to check that no ResourceWarning is emitted." + +#: ../../build/NEWS:5226 +msgid "" +"`bpo-25940 `__: Changed test_ssl to use " +"its internal local server more. This avoids relying on svn.python.org, " +"which recently changed root certificate." +msgstr "" +"`bpo-25940 `__: Changed test_ssl to use " +"its internal local server more. This avoids relying on svn.python.org, " +"which recently changed root certificate." + +#: ../../build/NEWS:5229 ../../build/NEWS:6744 +msgid "" +"`bpo-25616 `__: Tests for OrderedDict " +"are extracted from test_collections into separate file test_ordered_dict." +msgstr "" +"`bpo-25616 `__: Tests for OrderedDict " +"are extracted from test_collections into separate file test_ordered_dict." + +#: ../../build/NEWS:5232 ../../build/NEWS:7295 +msgid "" +"`bpo-25449 `__: Added tests for " +"OrderedDict subclasses." +msgstr "" +"`bpo-25449 `__: Added tests for " +"OrderedDict subclasses." + +#: ../../build/NEWS:5234 +msgid "" +"`bpo-25188 `__: Add -P/--pgo to test." +"regrtest to suppress error output when running the test suite for the " +"purposes of a PGO build. Initial patch by Alecsandru Patrascu." +msgstr "" +"`bpo-25188 `__: Add -P/--pgo to test." +"regrtest to suppress error output when running the test suite for the " +"purposes of a PGO build. Initial patch by Alecsandru Patrascu." + +#: ../../build/NEWS:5238 +msgid "" +"`bpo-22806 `__: Add ``python -m test --" +"list-tests`` command to list tests." +msgstr "" +"`bpo-22806 `__: Add ``python -m test --" +"list-tests`` command to list tests." + +#: ../../build/NEWS:5240 +msgid "" +"`bpo-18174 `__: ``python -m test --" +"huntrleaks ...`` now also checks for leak of file descriptors. Patch written " +"by Richard Oudkerk." +msgstr "" +"`bpo-18174 `__: ``python -m test --" +"huntrleaks ...`` now also checks for leak of file descriptors. Patch written " +"by Richard Oudkerk." + +#: ../../build/NEWS:5243 +msgid "" +"`bpo-25260 `__: Fix ``python -m test --" +"coverage`` on Windows. Remove the list of ignored directories." +msgstr "" +"`bpo-25260 `__: Fix ``python -m test --" +"coverage`` on Windows. Remove the list of ignored directories." + +#: ../../build/NEWS:5246 ../../build/NEWS:7302 +msgid "" +"``PCbuild\\rt.bat`` now accepts an unlimited number of arguments to pass " +"along to regrtest.py. Previously there was a limit of 9." +msgstr "" + +#: ../../build/NEWS:5249 ../../build/NEWS:6747 +msgid "" +"`bpo-26583 `__: Skip " +"test_timestamp_overflow in test_import if bytecode files cannot be written." +msgstr "" +"`bpo-26583 `__: Skip " +"test_timestamp_overflow in test_import if bytecode files cannot be written." + +#: ../../build/NEWS:5255 +msgid "" +"`bpo-21277 `__: Don't try to link " +"_ctypes with a ffi_convenience library." +msgstr "" +"`bpo-21277 `__: Don't try to link " +"_ctypes with a ffi_convenience library." + +#: ../../build/NEWS:5257 ../../build/NEWS:6753 +msgid "" +"`bpo-26884 `__: Fix linking extension " +"modules for cross builds. Patch by Xavier de Gaye." +msgstr "" +"`bpo-26884 `__: Fix linking extension " +"modules for cross builds. Patch by Xavier de Gaye." + +#: ../../build/NEWS:5260 +msgid "" +"`bpo-26932 `__: Fixed support of RTLD_* " +"constants defined as enum values, not via macros (in particular on " +"Android). Patch by Chi Hsuan Yen." +msgstr "" +"`bpo-26932 `__: Fixed support of RTLD_* " +"constants defined as enum values, not via macros (in particular on " +"Android). Patch by Chi Hsuan Yen." + +#: ../../build/NEWS:5268 +msgid "" +"`bpo-21668 `__: Link audioop, _datetime, " +"_ctypes_test modules to libm, except on Mac OS X. Patch written by Chi Hsuan " +"Yen." +msgstr "" +"`bpo-21668 `__: Link audioop, _datetime, " +"_ctypes_test modules to libm, except on Mac OS X. Patch written by Chi Hsuan " +"Yen." + +#: ../../build/NEWS:5271 ../../build/NEWS:6767 +msgid "" +"`bpo-25702 `__: A --with-lto configure " +"option has been added that will enable link time optimizations at build time " +"during a make profile-opt. Some compilers and toolchains are known to not " +"produce stable code when using LTO, be sure to test things thoroughly before " +"relying on it. It can provide a few % speed up over profile-opt alone." +msgstr "" +"`bpo-25702 `__: A --with-lto configure " +"option has been added that will enable link time optimizations at build time " +"during a make profile-opt. Some compilers and toolchains are known to not " +"produce stable code when using LTO, be sure to test things thoroughly before " +"relying on it. It can provide a few % speed up over profile-opt alone." + +#: ../../build/NEWS:5277 ../../build/NEWS:6773 +msgid "" +"`bpo-26624 `__: Adds validation of " +"ucrtbase[d].dll version with warning for old versions." +msgstr "" +"`bpo-26624 `__: Adds validation of " +"ucrtbase[d].dll version with warning for old versions." + +#: ../../build/NEWS:5280 ../../build/NEWS:6776 +msgid "" +"`bpo-17603 `__: Avoid error about " +"nonexistant fileblocks.o file by using a lower-level check for st_blocks in " +"struct stat." +msgstr "" +"`bpo-17603 `__: Avoid error about " +"nonexistant fileblocks.o file by using a lower-level check for st_blocks in " +"struct stat." + +#: ../../build/NEWS:5283 ../../build/NEWS:6779 +msgid "" +"`bpo-26079 `__: Fixing the build output " +"folder for tix-8.4.3.6. Patch by Bjoern Thiel." +msgstr "" +"`bpo-26079 `__: Fixing the build output " +"folder for tix-8.4.3.6. Patch by Bjoern Thiel." + +#: ../../build/NEWS:5286 ../../build/NEWS:6782 +msgid "" +"`bpo-26465 `__: Update Windows builds to " +"use OpenSSL 1.0.2g." +msgstr "" +"`bpo-26465 `__: Update Windows builds to " +"use OpenSSL 1.0.2g." + +#: ../../build/NEWS:5288 +msgid "" +"`bpo-25348 `__: Added ``--pgo`` and ``--" +"pgo-job`` arguments to ``PCbuild\\build.bat`` for building with Profile-" +"Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script is removed." +msgstr "" +"`bpo-25348 `__: Added ``--pgo`` and ``--" +"pgo-job`` arguments to ``PCbuild\\build.bat`` for building with Profile-" +"Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script is removed." + +#: ../../build/NEWS:5292 ../../build/NEWS:6793 +msgid "" +"`bpo-25827 `__: Add support for building " +"with ICC to ``configure``, including a new ``--with-icc`` flag." +msgstr "" +"`bpo-25827 `__: Add support for building " +"with ICC to ``configure``, including a new ``--with-icc`` flag." + +#: ../../build/NEWS:5295 ../../build/NEWS:6796 +msgid "" +"`bpo-25696 `__: Fix installation of " +"Python on UNIX with make -j9." +msgstr "" +"`bpo-25696 `__: Fix installation of " +"Python on UNIX with make -j9." + +#: ../../build/NEWS:5297 ../../build/NEWS:7313 +msgid "" +"`bpo-24986 `__: It is now possible to " +"build Python on Windows without errors when external libraries are not " +"available." +msgstr "" +"`bpo-24986 `__: It is now possible to " +"build Python on Windows without errors when external libraries are not " +"available." + +#: ../../build/NEWS:5300 ../../build/NEWS:6784 +msgid "" +"`bpo-24421 `__: Compile Modules/_math.c " +"once, before building extensions. Previously it could fail to compile " +"properly if the math and cmath builds were concurrent." +msgstr "" +"`bpo-24421 `__: Compile Modules/_math.c " +"once, before building extensions. Previously it could fail to compile " +"properly if the math and cmath builds were concurrent." + +#: ../../build/NEWS:5304 +msgid "" +"`bpo-26465 `__: Update OS X 10.5+ 32-bit-" +"only installer to build and link with OpenSSL 1.0.2g." +msgstr "" +"`bpo-26465 `__: Update OS X 10.5+ 32-bit-" +"only installer to build and link with OpenSSL 1.0.2g." + +#: ../../build/NEWS:5307 ../../build/NEWS:6801 +msgid "" +"`bpo-26268 `__: Update Windows builds to " +"use OpenSSL 1.0.2f." +msgstr "" +"`bpo-26268 `__: Update Windows builds to " +"use OpenSSL 1.0.2f." + +#: ../../build/NEWS:5309 ../../build/NEWS:6803 +msgid "" +"`bpo-25136 `__: Support Apple Xcode 7's " +"new textual SDK stub libraries." +msgstr "" +"`bpo-25136 `__: Support Apple Xcode 7's " +"new textual SDK stub libraries." + +#: ../../build/NEWS:5311 ../../build/NEWS:6805 +msgid "" +"`bpo-24324 `__: Do not enable " +"unreachable code warnings when using gcc as the option does not work " +"correctly in older versions of gcc and has been silently removed as of " +"gcc-4.5." +msgstr "" +"`bpo-24324 `__: Do not enable " +"unreachable code warnings when using gcc as the option does not work " +"correctly in older versions of gcc and has been silently removed as of " +"gcc-4.5." + +#: ../../build/NEWS:5318 ../../build/NEWS:6812 +msgid "" +"`bpo-27053 `__: Updates make_zip.py to " +"correctly generate library ZIP file." +msgstr "" +"`bpo-27053 `__: Updates make_zip.py to " +"correctly generate library ZIP file." + +#: ../../build/NEWS:5320 ../../build/NEWS:6814 +msgid "" +"`bpo-26268 `__: Update the prepare_ssl." +"py script to handle OpenSSL releases that don't include the contents of the " +"include directory (that is, 1.0.2e and later)." +msgstr "" +"`bpo-26268 `__: Update the prepare_ssl." +"py script to handle OpenSSL releases that don't include the contents of the " +"include directory (that is, 1.0.2e and later)." + +#: ../../build/NEWS:5324 ../../build/NEWS:6818 +msgid "" +"`bpo-26071 `__: bdist_wininst created " +"binaries fail to start and find 32bit Python" +msgstr "" +"`bpo-26071 `__: bdist_wininst created " +"binaries fail to start and find 32bit Python" + +#: ../../build/NEWS:5327 ../../build/NEWS:6821 +msgid "" +"`bpo-26073 `__: Update the list of magic " +"numbers in launcher" +msgstr "" +"`bpo-26073 `__: Update the list of magic " +"numbers in launcher" + +#: ../../build/NEWS:5329 ../../build/NEWS:6823 +msgid "" +"`bpo-26065 `__: Excludes venv from " +"library when generating embeddable distro." +msgstr "" +"`bpo-26065 `__: Excludes venv from " +"library when generating embeddable distro." + +#: ../../build/NEWS:5331 ../../build/NEWS:7352 +msgid "" +"`bpo-25022 `__: Removed very outdated PC/" +"example_nt/ directory." +msgstr "" +"`bpo-25022 `__: Removed very outdated PC/" +"example_nt/ directory." + +#: ../../build/NEWS:5341 ../../build/NEWS:6833 +msgid "" +"`bpo-26271 `__: Fix the Freeze tool to " +"properly use flags passed through configure. Patch by Daniel Shaulov." +msgstr "" +"`bpo-26271 `__: Fix the Freeze tool to " +"properly use flags passed through configure. Patch by Daniel Shaulov." + +#: ../../build/NEWS:5344 ../../build/NEWS:6836 +msgid "" +"`bpo-26489 `__: Add dictionary unpacking " +"support to Tools/parser/unparse.py. Patch by Guo Ci Teo." +msgstr "" +"`bpo-26489 `__: Add dictionary unpacking " +"support to Tools/parser/unparse.py. Patch by Guo Ci Teo." + +#: ../../build/NEWS:5347 ../../build/NEWS:6839 +msgid "" +"`bpo-26316 `__: Fix variable name typo " +"in Argument Clinic." +msgstr "" +"`bpo-26316 `__: Fix variable name typo " +"in Argument Clinic." + +#: ../../build/NEWS:5349 ../../build/NEWS:7357 +msgid "" +"`bpo-25440 `__: Fix output of python-" +"config --extension-suffix." +msgstr "" +"`bpo-25440 `__: Fix output of python-" +"config --extension-suffix." + +#: ../../build/NEWS:5351 +msgid "" +"`bpo-25154 `__: The pyvenv script has " +"been deprecated in favour of `python3 -m venv`." +msgstr "" +"`bpo-25154 `__: The pyvenv script has " +"been deprecated in favour of `python3 -m venv`." + +#: ../../build/NEWS:5357 +msgid "" +"`bpo-26312 `__: SystemError is now " +"raised in all programming bugs with using PyArg_ParseTupleAndKeywords(). " +"RuntimeError did raised before in some programming bugs." +msgstr "" +"`bpo-26312 `__: SystemError is now " +"raised in all programming bugs with using PyArg_ParseTupleAndKeywords(). " +"RuntimeError did raised before in some programming bugs." + +#: ../../build/NEWS:5361 +msgid "" +"`bpo-26198 `__: ValueError is now raised " +"instead of TypeError on buffer overflow in parsing \"es#\" and \"et#\" " +"format units. SystemError is now raised instead of TypeError on " +"programmical error in parsing format string." +msgstr "" +"`bpo-26198 `__: ValueError is now raised " +"instead of TypeError on buffer overflow in parsing \"es#\" and \"et#\" " +"format units. SystemError is now raised instead of TypeError on " +"programmical error in parsing format string." + +#: ../../build/NEWS:5372 +msgid "There were no code changes between 3.5.3rc1 and 3.5.3 final." +msgstr "" + +#: ../../build/NEWS:5377 +msgid "Python 3.5.3 release candidate 1" +msgstr "Python 3.5.3 release candidate 1" + +#: ../../build/NEWS:5384 +msgid "" +"`bpo-29073 `__: bytearray formatting no " +"longer truncates on first null byte." +msgstr "" +"`bpo-29073 `__: bytearray formatting no " +"longer truncates on first null byte." + +#: ../../build/NEWS:5388 +msgid "" +"`bpo-28147 `__: Fix a memory leak in " +"split-table dictionaries: setattr() must not convert combined table into " +"split table." +msgstr "" +"`bpo-28147 `__: Fix a memory leak in " +"split-table dictionaries: setattr() must not convert combined table into " +"split table." + +#: ../../build/NEWS:5443 +msgid "" +"`bpo-28203 `__: Fix incorrect type in " +"error message from ``complex(1.0, {2:3})``. Patch by Soumya Sharma." +msgstr "" +"`bpo-28203 `__: Fix incorrect type in " +"error message from ``complex(1.0, {2:3})``. Patch by Soumya Sharma." + +#: ../../build/NEWS:5458 +msgid "" +"`bpo-28189 `__: dictitems_contains no " +"longer swallows compare errors. (Patch by Xiang Zhang)" +msgstr "" +"`bpo-28189 `__: dictitems_contains no " +"longer swallows compare errors. (Patch by Xiang Zhang)" + +#: ../../build/NEWS:5470 +msgid "" +"`bpo-26020 `__: set literal evaluation " +"order did not match documented behaviour." +msgstr "" +"`bpo-26020 `__: set literal evaluation " +"order did not match documented behaviour." + +#: ../../build/NEWS:5518 +msgid "" +"`bpo-29094 `__: Offsets in a ZIP file " +"created with extern file object and modes \"w\" and \"x\" now are relative " +"to the start of the file." +msgstr "" +"`bpo-29094 `__: Offsets in a ZIP file " +"created with extern file object and modes \"w\" and \"x\" now are relative " +"to the start of the file." + +#: ../../build/NEWS:5524 +msgid "" +"`bpo-29119 `__: Fix weakrefs in the pure " +"python version of collections.OrderedDict move_to_end() method. Contributed " +"by Andra Bogildea." +msgstr "" +"`bpo-29119 `__: Fix weakrefs in the pure " +"python version of collections.OrderedDict move_to_end() method. Contributed " +"by Andra Bogildea." + +#: ../../build/NEWS:5541 +msgid "" +"`bpo-20191 `__: Fixed a crash in " +"resource.prlimit() when pass a sequence that doesn't own its elements as " +"limits." +msgstr "" +"`bpo-20191 `__: Fixed a crash in " +"resource.prlimit() when pass a sequence that doesn't own its elements as " +"limits." + +#: ../../build/NEWS:5592 +msgid "" +"`bpo-28488 `__: shutil.make_archive() no " +"longer add entry \"./\" to ZIP archive." +msgstr "" +"`bpo-28488 `__: shutil.make_archive() no " +"longer add entry \"./\" to ZIP archive." + +#: ../../build/NEWS:5632 +msgid "" +"`bpo-27611 `__: Fixed support of default " +"root window in the tkinter.tix module." +msgstr "" +"`bpo-27611 `__: Fixed support of default " +"root window in the tkinter.tix module." + +#: ../../build/NEWS:5746 +msgid "" +"`bpo-26750 `__: unittest.mock." +"create_autospec() now works properly for subclasses of property() and other " +"data descriptors." +msgstr "" +"`bpo-26750 `__: unittest.mock." +"create_autospec() now works properly for subclasses of property() and other " +"data descriptors." + +#: ../../build/NEWS:5790 +msgid "" +"`bpo-26664 `__: Fix activate.fish by " +"removing mis-use of ``$``." +msgstr "" +"`bpo-26664 `__: Fix activate.fish by " +"removing mis-use of ``$``." + +#: ../../build/NEWS:5792 +msgid "" +"`bpo-22115 `__: Fixed tracing Tkinter " +"variables: trace_vdelete() with wrong mode no longer break tracing, " +"trace_vinfo() now always returns a list of pairs of strings, tracing in the " +"\"u\" mode now works." +msgstr "" +"`bpo-22115 `__: Fixed tracing Tkinter " +"variables: trace_vdelete() with wrong mode no longer break tracing, " +"trace_vinfo() now always returns a list of pairs of strings, tracing in the " +"\"u\" mode now works." + +#: ../../build/NEWS:5796 +msgid "" +"Fix a scoping issue in importlib.util.LazyLoader which triggered an " +"UnboundLocalError when lazy-loading a module that was already put into sys." +"modules." +msgstr "" + +#: ../../build/NEWS:5896 +msgid "" +"`bpo-28600 `__: Optimize loop." +"call_soon()." +msgstr "" +"`bpo-28600 `__: Optimize loop." +"call_soon()." + +#: ../../build/NEWS:5910 +msgid "" +"`bpo-24142 `__: Reading a corrupt config " +"file left the parser in an invalid state. Original patch by Florian Höch." +msgstr "" +"`bpo-24142 `__: Reading a corrupt config " +"file left the parser in an invalid state. Original patch by Florian Höch." + +#: ../../build/NEWS:5913 +msgid "" +"`bpo-28990 `__: Fix SSL hanging if " +"connection is closed before handshake completed. (Patch by HoHo-Ho)" +msgstr "" +"`bpo-28990 `__: Fix SSL hanging if " +"connection is closed before handshake completed. (Patch by HoHo-Ho)" + +#: ../../build/NEWS:5949 +msgid "" +"`bpo-26754 `__: PyUnicode_FSDecoder() " +"accepted a filename argument encoded as an iterable of integers. Now only " +"strings and bytes-like objects are accepted." +msgstr "" +"`bpo-26754 `__: PyUnicode_FSDecoder() " +"accepted a filename argument encoded as an iterable of integers. Now only " +"strings and bytes-like objects are accepted." + +#: ../../build/NEWS:5961 +msgid "" +"`bpo-28950 `__: Disallow -j0 to be " +"combined with -T/-l/-M in regrtest command line arguments." +msgstr "" +"`bpo-28950 `__: Disallow -j0 to be " +"combined with -T/-l/-M in regrtest command line arguments." + +#: ../../build/NEWS:6002 +msgid "" +"`bpo-27309 `__: Enabled proper Windows " +"styles in python[w].exe manifest." +msgstr "" +"`bpo-27309 `__: Enabled proper Windows " +"styles in python[w].exe manifest." + +#: ../../build/NEWS:6042 +msgid "" +"`bpo-26359 `__: Add the --with-" +"optimizations configure flag." +msgstr "" +"`bpo-26359 `__: Add the --with-" +"optimizations configure flag." + +#: ../../build/NEWS:6047 +msgid "" +"`bpo-25825 `__: Correct the references " +"to Modules/python.exp and ld_so_aix, which are required on AIX. This " +"updates references to an installation path that was changed in 3.2a4, and " +"undoes changed references to the build tree that were made in 3.5.0a1." +msgstr "" +"`bpo-25825 `__: Correct the references " +"to Modules/python.exp and ld_so_aix, which are required on AIX. This " +"updates references to an installation path that was changed in 3.2a4, and " +"undoes changed references to the build tree that were made in 3.5.0a1." + +#: ../../build/NEWS:6082 +msgid "" +"`bpo-26867 `__: Ubuntu's openssl " +"OP_NO_SSLv3 is forced on by default; fix test." +msgstr "" +"`bpo-26867 `__: Ubuntu's openssl " +"OP_NO_SSLv3 is forced on by default; fix test." + +#: ../../build/NEWS:6087 +msgid "" +"`bpo-27365 `__: Allow non-ascii in " +"idlelib/NEWS.txt - minimal part for 3.5.2." +msgstr "" +"`bpo-27365 `__: Allow non-ascii in " +"idlelib/NEWS.txt - minimal part for 3.5.2." + +#: ../../build/NEWS:6091 +msgid "Python 3.5.2 release candidate 1" +msgstr "Python 3.5.2 release candidate 1" + +#: ../../build/NEWS:6109 +msgid "" +"`bpo-27039 `__: Fixed bytearray.remove() " +"for values greater than 127. Patch by Joe Jevnik." +msgstr "" +"`bpo-27039 `__: Fixed bytearray.remove() " +"for values greater than 127. Patch by Joe Jevnik." + +#: ../../build/NEWS:6168 +msgid "" +"`bpo-25843 `__: When compiling code, " +"don't merge constants if they are equal but have a different types. For " +"example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " +"two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " +"returns ``1.0`` (``int``), even if ``1`` and ``1.0`` are equal." +msgstr "" +"`bpo-25843 `__: When compiling code, " +"don't merge constants if they are equal but have a different types. For " +"example, ``f1, f2 = lambda: 1, lambda: 1.0`` is now correctly compiled to " +"two different functions: ``f1()`` returns ``1`` (``int``) and ``f2()`` " +"returns ``1.0`` (``int``), even if ``1`` and ``1.0`` are equal." + +#: ../../build/NEWS:6230 +msgid "" +"Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team " +"Oststrom" +msgstr "" + +#: ../../build/NEWS:6416 +msgid "" +"`bpo-21925 `__: :func:`warnings." +"formatwarning` now catches exceptions on ``linecache.getline(...)`` to be " +"able to log :exc:`ResourceWarning` emitted late during the Python shutdown " +"process." +msgstr "" +"`bpo-21925 `__: :func:`warnings." +"formatwarning` now catches exceptions on ``linecache.getline(...)`` to be " +"able to log :exc:`ResourceWarning` emitted late during the Python shutdown " +"process." + +#: ../../build/NEWS:6458 +msgid "" +"`bpo-15068 `__: Got rid of excessive " +"buffering in the fileinput module. The bufsize parameter is no longer used." +msgstr "" +"`bpo-15068 `__: Got rid of excessive " +"buffering in the fileinput module. The bufsize parameter is no longer used." + +#: ../../build/NEWS:6487 +msgid "" +"`bpo-26367 `__: importlib.__import__() " +"raises SystemError like builtins.__import__() when ``level`` is specified " +"but without an accompanying package specified." +msgstr "" +"`bpo-26367 `__: importlib.__import__() " +"raises SystemError like builtins.__import__() when ``level`` is specified " +"but without an accompanying package specified." + +#: ../../build/NEWS:6546 +msgid "" +"`bpo-17633 `__: Improve zipimport's " +"support for namespace packages." +msgstr "" +"`bpo-17633 `__: Improve zipimport's " +"support for namespace packages." + +#: ../../build/NEWS:6566 +msgid "" +"`bpo-25447 `__: Copying the lru_cache() " +"wrapper object now always works, independedly from the type of the wrapped " +"object (by returning the original object unchanged)." +msgstr "" +"`bpo-25447 `__: Copying the lru_cache() " +"wrapper object now always works, independedly from the type of the wrapped " +"object (by returning the original object unchanged)." + +#: ../../build/NEWS:6645 +msgid "" +"`bpo-27223 `__: asyncio: Fix _read_ready " +"and _write_ready to respect _conn_lost. Patch by Łukasz Langa." +msgstr "" +"`bpo-27223 `__: asyncio: Fix _read_ready " +"and _write_ready to respect _conn_lost. Patch by Łukasz Langa." + +#: ../../build/NEWS:6648 +msgid "" +"`bpo-22970 `__: asyncio: Fix " +"inconsistency cancelling Condition.wait. Patch by David Coles." +msgstr "" +"`bpo-22970 `__: asyncio: Fix " +"inconsistency cancelling Condition.wait. Patch by David Coles." + +#: ../../build/NEWS:6684 +msgid "" +"`bpo-21703 `__: Add test for IDLE's undo " +"delegator. Original patch by Saimadhav Heblikar ." +msgstr "" +"`bpo-21703 `__: Add test for IDLE's undo " +"delegator. Original patch by Saimadhav Heblikar ." + +#: ../../build/NEWS:6720 +msgid "" +"`bpo-25500 `__: Fix documentation to not " +"claim that __import__ is searched for in the global scope." +msgstr "" +"`bpo-25500 `__: Fix documentation to not " +"claim that __import__ is searched for in the global scope." + +#: ../../build/NEWS:6741 +msgid "" +"`bpo-25940 `__: Changed test_ssl to use " +"self-signed.pythontest.net. This avoids relying on svn.python.org, which " +"recently changed root certificate." +msgstr "" +"`bpo-25940 `__: Changed test_ssl to use " +"self-signed.pythontest.net. This avoids relying on svn.python.org, which " +"recently changed root certificate." + +#: ../../build/NEWS:6764 +msgid "" +"`bpo-21668 `__: Link audioop, _datetime, " +"_ctypes_test modules to libm, except on Mac OS X. Patch written by Xavier de " +"Gaye." +msgstr "" +"`bpo-21668 `__: Link audioop, _datetime, " +"_ctypes_test modules to libm, except on Mac OS X. Patch written by Xavier de " +"Gaye." + +#: ../../build/NEWS:6788 +msgid "" +"`bpo-25348 `__: Added ``--pgo`` and ``--" +"pgo-job`` arguments to ``PCbuild\\build.bat`` for building with Profile-" +"Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script is now " +"deprecated, and simply calls ``PCbuild\\build.bat --pgo %*``." +msgstr "" +"`bpo-25348 `__: Added ``--pgo`` and ``--" +"pgo-job`` arguments to ``PCbuild\\build.bat`` for building with Profile-" +"Guided Optimization. The old ``PCbuild\\build_pgo.bat`` script is now " +"deprecated, and simply calls ``PCbuild\\build.bat --pgo %*``." + +#: ../../build/NEWS:6849 +msgid "Python 3.5.1 final" +msgstr "Python 3.5.1 final" + +#: ../../build/NEWS:6862 +msgid "" +"`bpo-25715 `__: Python 3.5.1 installer " +"shows wrong upgrade path and incorrect logic for launcher detection." +msgstr "" +"`bpo-25715 `__: Python 3.5.1 installer " +"shows wrong upgrade path and incorrect logic for launcher detection." + +#: ../../build/NEWS:6867 +msgid "Python 3.5.1 release candidate 1" +msgstr "Python 3.5.1 release candidate 1" + +#: ../../build/NEWS:6928 +msgid "" +"`bpo-25182 `__: The stdprinter (used as " +"sys.stderr before the io module is imported at startup) now uses the " +"backslashreplace error handler." +msgstr "" +"`bpo-25182 `__: The stdprinter (used as " +"sys.stderr before the io module is imported at startup) now uses the " +"backslashreplace error handler." + +#: ../../build/NEWS:6931 +msgid "" +"`bpo-25131 `__: Make the line number and " +"column offset of set/dict literals and comprehensions correspond to the " +"opening brace." +msgstr "" +"`bpo-25131 `__: Make the line number and " +"column offset of set/dict literals and comprehensions correspond to the " +"opening brace." + +#: ../../build/NEWS:6934 +msgid "" +"`bpo-25150 `__: Hide the private " +"_Py_atomic_xxx symbols from the public Python.h header to fix a compilation " +"error with OpenMP. PyThreadState_GET() becomes an alias to " +"PyThreadState_Get() to avoid ABI incompatibilies." +msgstr "" +"`bpo-25150 `__: Hide the private " +"_Py_atomic_xxx symbols from the public Python.h header to fix a compilation " +"error with OpenMP. PyThreadState_GET() becomes an alias to " +"PyThreadState_Get() to avoid ABI incompatibilies." + +#: ../../build/NEWS:6958 +msgid "" +"`bpo-25590 `__: In the Readline " +"completer, only call getattr() once per attribute." +msgstr "" +"`bpo-25590 `__: In the Readline " +"completer, only call getattr() once per attribute." + +#: ../../build/NEWS:7036 +msgid "" +"`bpo-24483 `__: C implementation of " +"functools.lru_cache() now calculates key's hash only once." +msgstr "" +"`bpo-24483 `__: C implementation of " +"functools.lru_cache() now calculates key's hash only once." + +#: ../../build/NEWS:7039 +msgid "" +"`bpo-22958 `__: Constructor and update " +"method of weakref.WeakValueDictionary now accept the self and the dict " +"keyword arguments." +msgstr "" +"`bpo-22958 `__: Constructor and update " +"method of weakref.WeakValueDictionary now accept the self and the dict " +"keyword arguments." + +#: ../../build/NEWS:7042 +msgid "" +"`bpo-22609 `__: Constructor of " +"collections.UserDict now accepts the self keyword argument." +msgstr "" +"`bpo-22609 `__: Constructor of " +"collections.UserDict now accepts the self keyword argument." + +#: ../../build/NEWS:7045 +msgid "" +"`bpo-25111 `__: Fixed comparison of " +"traceback.FrameSummary." +msgstr "" +"`bpo-25111 `__: Fixed comparison of " +"traceback.FrameSummary." + +#: ../../build/NEWS:7052 +msgid "" +"`bpo-25034 `__: Fix string.Formatter " +"problem with auto-numbering and nested format_specs. Patch by Anthon van der " +"Neut." +msgstr "" +"`bpo-25034 `__: Fix string.Formatter " +"problem with auto-numbering and nested format_specs. Patch by Anthon van der " +"Neut." + +#: ../../build/NEWS:7055 +msgid "" +"`bpo-25233 `__: Rewrite the guts of " +"asyncio.Queue and asyncio.Semaphore to be more understandable and correct." +msgstr "" +"`bpo-25233 `__: Rewrite the guts of " +"asyncio.Queue and asyncio.Semaphore to be more understandable and correct." + +#: ../../build/NEWS:7064 +msgid "" +"`bpo-23329 `__: Allow the ssl module to " +"be built with older versions of LibreSSL." +msgstr "" +"`bpo-23329 `__: Allow the ssl module to " +"be built with older versions of LibreSSL." + +#: ../../build/NEWS:7067 +msgid "Prevent overflow in _Unpickler_Read." +msgstr "" + +#: ../../build/NEWS:7069 +msgid "" +"`bpo-25047 `__: The XML encoding " +"declaration written by Element Tree now respects the letter case given by " +"the user. This restores the ability to write encoding names in uppercase " +"like \"UTF-8\", which worked in Python 2." +msgstr "" +"`bpo-25047 `__: The XML encoding " +"declaration written by Element Tree now respects the letter case given by " +"the user. This restores the ability to write encoding names in uppercase " +"like \"UTF-8\", which worked in Python 2." + +#: ../../build/NEWS:7073 +msgid "" +"`bpo-25135 `__: Make deque_clear() safer " +"by emptying the deque before clearing. This helps avoid possible reentrancy " +"issues." +msgstr "" +"`bpo-25135 `__: Make deque_clear() safer " +"by emptying the deque before clearing. This helps avoid possible reentrancy " +"issues." + +#: ../../build/NEWS:7076 +msgid "" +"`bpo-19143 `__: platform module now " +"reads Windows version from kernel32.dll to avoid compatibility shims." +msgstr "" +"`bpo-19143 `__: platform module now " +"reads Windows version from kernel32.dll to avoid compatibility shims." + +#: ../../build/NEWS:7079 +msgid "" +"`bpo-25092 `__: Fix datetime.strftime() " +"failure when errno was already set to EINVAL." +msgstr "" +"`bpo-25092 `__: Fix datetime.strftime() " +"failure when errno was already set to EINVAL." + +#: ../../build/NEWS:7082 +msgid "" +"`bpo-23517 `__: Fix rounding in " +"fromtimestamp() and utcfromtimestamp() methods of datetime.datetime: " +"microseconds are now rounded to nearest with ties going to nearest even " +"integer (ROUND_HALF_EVEN), instead of being rounding towards minus infinity " +"(ROUND_FLOOR). It's important that these methods use the same rounding mode " +"than datetime.timedelta to keep the property: (datetime(1970,1,1) + " +"timedelta(seconds=t)) == datetime.utcfromtimestamp(t). It also the rounding " +"mode used by round(float) for example." +msgstr "" +"`bpo-23517 `__: Fix rounding in " +"fromtimestamp() and utcfromtimestamp() methods of datetime.datetime: " +"microseconds are now rounded to nearest with ties going to nearest even " +"integer (ROUND_HALF_EVEN), instead of being rounding towards minus infinity " +"(ROUND_FLOOR). It's important that these methods use the same rounding mode " +"than datetime.timedelta to keep the property: (datetime(1970,1,1) + " +"timedelta(seconds=t)) == datetime.utcfromtimestamp(t). It also the rounding " +"mode used by round(float) for example." + +#: ../../build/NEWS:7091 +msgid "" +"`bpo-25155 `__: Fix datetime.datetime." +"now() and datetime.datetime.utcnow() on Windows to support date after year " +"2038. It was a regression introduced in Python 3.5.0." +msgstr "" +"`bpo-25155 `__: Fix datetime.datetime." +"now() and datetime.datetime.utcnow() on Windows to support date after year " +"2038. It was a regression introduced in Python 3.5.0." + +#: ../../build/NEWS:7095 +msgid "" +"`bpo-25108 `__: Omitted internal frames " +"in traceback functions print_stack(), format_stack(), and extract_stack() " +"called without arguments." +msgstr "" +"`bpo-25108 `__: Omitted internal frames " +"in traceback functions print_stack(), format_stack(), and extract_stack() " +"called without arguments." + +#: ../../build/NEWS:7098 +msgid "" +"`bpo-25118 `__: Fix a regression of " +"Python 3.5.0 in os.waitpid() on Windows." +msgstr "" +"`bpo-25118 `__: Fix a regression of " +"Python 3.5.0 in os.waitpid() on Windows." + +#: ../../build/NEWS:7100 +msgid "" +"`bpo-24684 `__: socket.socket." +"getaddrinfo() now calls PyUnicode_AsEncodedString() instead of calling the " +"encode() method of the host, to handle correctly custom string with an " +"encode() method which doesn't return a byte string. The encoder of the IDNA " +"codec is now called directly instead of calling the encode() method of the " +"string." +msgstr "" +"`bpo-24684 `__: socket.socket." +"getaddrinfo() now calls PyUnicode_AsEncodedString() instead of calling the " +"encode() method of the host, to handle correctly custom string with an " +"encode() method which doesn't return a byte string. The encoder of the IDNA " +"codec is now called directly instead of calling the encode() method of the " +"string." + +#: ../../build/NEWS:7106 +msgid "" +"`bpo-25060 `__: Correctly compute stack " +"usage of the BUILD_MAP opcode." +msgstr "" +"`bpo-25060 `__: Correctly compute stack " +"usage of the BUILD_MAP opcode." + +#: ../../build/NEWS:7108 +msgid "" +"`bpo-24857 `__: Comparing call_args to a " +"long sequence now correctly returns a boolean result instead of raising an " +"exception. Patch by A Kaptur." +msgstr "" +"`bpo-24857 `__: Comparing call_args to a " +"long sequence now correctly returns a boolean result instead of raising an " +"exception. Patch by A Kaptur." + +#: ../../build/NEWS:7111 +msgid "" +"`bpo-23144 `__: Make sure that " +"HTMLParser.feed() returns all the data, even when convert_charrefs is True." +msgstr "" +"`bpo-23144 `__: Make sure that " +"HTMLParser.feed() returns all the data, even when convert_charrefs is True." + +#: ../../build/NEWS:7114 +msgid "" +"`bpo-24982 `__: shutil.make_archive() " +"with the \"zip\" format now adds entries for directories (including empty " +"directories) in ZIP file." +msgstr "" +"`bpo-24982 `__: shutil.make_archive() " +"with the \"zip\" format now adds entries for directories (including empty " +"directories) in ZIP file." + +#: ../../build/NEWS:7117 +msgid "" +"`bpo-25019 `__: Fixed a crash caused by " +"setting non-string key of expat parser. Based on patch by John Leitch." +msgstr "" +"`bpo-25019 `__: Fixed a crash caused by " +"setting non-string key of expat parser. Based on patch by John Leitch." + +#: ../../build/NEWS:7120 +msgid "" +"`bpo-16180 `__: Exit pdb if file has " +"syntax error, instead of trapping user in an infinite loop. Patch by Xavier " +"de Gaye." +msgstr "" +"`bpo-16180 `__: Exit pdb if file has " +"syntax error, instead of trapping user in an infinite loop. Patch by Xavier " +"de Gaye." + +#: ../../build/NEWS:7123 +msgid "" +"`bpo-24891 `__: Fix a race condition at " +"Python startup if the file descriptor of stdin (0), stdout (1) or stderr (2) " +"is closed while Python is creating sys.stdin, sys.stdout and sys.stderr " +"objects. These attributes are now set to None if the creation of the object " +"failed, instead of raising an OSError exception. Initial patch written by " +"Marco Paolini." +msgstr "" +"`bpo-24891 `__: Fix a race condition at " +"Python startup if the file descriptor of stdin (0), stdout (1) or stderr (2) " +"is closed while Python is creating sys.stdin, sys.stdout and sys.stderr " +"objects. These attributes are now set to None if the creation of the object " +"failed, instead of raising an OSError exception. Initial patch written by " +"Marco Paolini." + +#: ../../build/NEWS:7129 +msgid "" +"`bpo-24992 `__: Fix error handling and a " +"race condition (related to garbage collection) in collections.OrderedDict " +"constructor." +msgstr "" +"`bpo-24992 `__: Fix error handling and a " +"race condition (related to garbage collection) in collections.OrderedDict " +"constructor." + +#: ../../build/NEWS:7132 +msgid "" +"`bpo-24881 `__: Fixed setting binary " +"mode in Python implementation of FileIO on Windows and Cygwin. Patch from " +"Akira Li." +msgstr "" +"`bpo-24881 `__: Fixed setting binary " +"mode in Python implementation of FileIO on Windows and Cygwin. Patch from " +"Akira Li." + +#: ../../build/NEWS:7148 +msgid "" +"`bpo-21112 `__: Fix regression in " +"unittest.expectedFailure on subclasses. Patch from Berker Peksag." +msgstr "" +"`bpo-21112 `__: Fix regression in " +"unittest.expectedFailure on subclasses. Patch from Berker Peksag." + +#: ../../build/NEWS:7151 +msgid "" +"`bpo-24764 `__: cgi.FieldStorage." +"read_multi() now ignores the Content-Length header in part headers. Patch " +"written by Peter Landry and reviewed by Pierre Quentel." +msgstr "" +"`bpo-24764 `__: cgi.FieldStorage." +"read_multi() now ignores the Content-Length header in part headers. Patch " +"written by Peter Landry and reviewed by Pierre Quentel." + +#: ../../build/NEWS:7155 ../../build/NEWS:7420 +msgid "" +"`bpo-24913 `__: Fix overrun error in " +"deque.index(). Found by John Leitch and Bryce Darling." +msgstr "" +"`bpo-24913 `__: Fix overrun error in " +"deque.index(). Found by John Leitch and Bryce Darling." + +#: ../../build/NEWS:7158 +msgid "" +"`bpo-24774 `__: Fix docstring in http." +"server.test. Patch from Chiu-Hsiang Hsu." +msgstr "" +"`bpo-24774 `__: Fix docstring in http." +"server.test. Patch from Chiu-Hsiang Hsu." + +#: ../../build/NEWS:7160 +msgid "" +"`bpo-21159 `__: Improve message in " +"configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." +msgstr "" +"`bpo-21159 `__: Improve message in " +"configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." + +#: ../../build/NEWS:7163 +msgid "" +"`bpo-20362 `__: Honour TestCase." +"longMessage correctly in assertRegex. Patch from Ilia Kurenkov." +msgstr "" +"`bpo-20362 `__: Honour TestCase." +"longMessage correctly in assertRegex. Patch from Ilia Kurenkov." + +#: ../../build/NEWS:7166 +msgid "" +"`bpo-23572 `__: Fixed functools." +"singledispatch on classes with falsy metaclasses. Patch by Ethan Furman." +msgstr "" +"`bpo-23572 `__: Fixed functools." +"singledispatch on classes with falsy metaclasses. Patch by Ethan Furman." + +#: ../../build/NEWS:7169 +msgid "asyncio: ensure_future() now accepts awaitable objects." +msgstr "" + +#: ../../build/NEWS:7257 +msgid "" +"`bpo-16893 `__: Replace help.txt with " +"help.html for Idle doc display. The new idlelib/help.html is rstripped Doc/" +"build/html/library/idle.html. It looks better than help.txt and will better " +"document Idle as released. The tkinter html viewer that works for this file " +"was written by Mark Roseman. The now unused EditorWindow.HelpDialog class " +"and helt.txt file are deprecated." +msgstr "" +"`bpo-16893 `__: Replace help.txt with " +"help.html for Idle doc display. The new idlelib/help.html is rstripped Doc/" +"build/html/library/idle.html. It looks better than help.txt and will better " +"document Idle as released. The tkinter html viewer that works for this file " +"was written by Mark Roseman. The now unused EditorWindow.HelpDialog class " +"and helt.txt file are deprecated." + +#: ../../build/NEWS:7274 +msgid "" +"`bpo-12067 `__: Rewrite Comparisons " +"section in the Expressions chapter of the language reference. Some of the " +"details of comparing mixed types were incorrect or ambiguous. NotImplemented " +"is only relevant at a lower level than the Expressions chapter. Added " +"details of comparing range() objects, and default behaviour and consistency " +"suggestions for user-defined classes. Patch from Andy Maier." +msgstr "" +"`bpo-12067 `__: Rewrite Comparisons " +"section in the Expressions chapter of the language reference. Some of the " +"details of comparing mixed types were incorrect or ambiguous. NotImplemented " +"is only relevant at a lower level than the Expressions chapter. Added " +"details of comparing range() objects, and default behaviour and consistency " +"suggestions for user-defined classes. Patch from Andy Maier." + +#: ../../build/NEWS:7284 +msgid "" +"`bpo-23725 `__: Overhaul tempfile docs. " +"Note deprecated status of mktemp. Patch from Zbigniew Jędrzejewski-Szmek." +msgstr "" +"`bpo-23725 `__: Overhaul tempfile docs. " +"Note deprecated status of mktemp. Patch from Zbigniew Jędrzejewski-Szmek." + +#: ../../build/NEWS:7287 +msgid "" +"`bpo-24808 `__: Update the types of some " +"PyTypeObject fields. Patch by Joseph Weston." +msgstr "" +"`bpo-24808 `__: Update the types of some " +"PyTypeObject fields. Patch by Joseph Weston." + +#: ../../build/NEWS:7290 +msgid "" +"`bpo-22812 `__: Fix unittest discovery " +"examples. Patch from Pam McA'Nulty." +msgstr "" +"`bpo-22812 `__: Fix unittest discovery " +"examples. Patch from Pam McA'Nulty." + +#: ../../build/NEWS:7297 +msgid "" +"`bpo-25099 `__: Make test_compileall not " +"fail when an entry on sys.path cannot be written to (commonly seen in " +"administrative installs on Windows)." +msgstr "" +"`bpo-25099 `__: Make test_compileall not " +"fail when an entry on sys.path cannot be written to (commonly seen in " +"administrative installs on Windows)." + +#: ../../build/NEWS:7300 +msgid "" +"`bpo-23919 `__: Prevents assert dialogs " +"appearing in the test suite." +msgstr "" +"`bpo-23919 `__: Prevents assert dialogs " +"appearing in the test suite." + +#: ../../build/NEWS:7308 +msgid "" +"`bpo-24915 `__: Add LLVM support for PGO " +"builds and use the test suite to generate the profile data. Initial patch by " +"Alecsandru Patrascu of Intel." +msgstr "" +"`bpo-24915 `__: Add LLVM support for PGO " +"builds and use the test suite to generate the profile data. Initial patch by " +"Alecsandru Patrascu of Intel." + +#: ../../build/NEWS:7311 +msgid "" +"`bpo-24910 `__: Windows MSIs now have " +"unique display names." +msgstr "" +"`bpo-24910 `__: Windows MSIs now have " +"unique display names." + +#: ../../build/NEWS:7319 +msgid "" +"`bpo-25450 `__: Updates shortcuts to " +"start Python in installation directory." +msgstr "" +"`bpo-25450 `__: Updates shortcuts to " +"start Python in installation directory." + +#: ../../build/NEWS:7321 +msgid "" +"`bpo-25164 `__: Changes default all-" +"users install directory to match per-user directory." +msgstr "" +"`bpo-25164 `__: Changes default all-" +"users install directory to match per-user directory." + +#: ../../build/NEWS:7324 +msgid "" +"`bpo-25143 `__: Improves installer error " +"messages for unsupported platforms." +msgstr "" +"`bpo-25143 `__: Improves installer error " +"messages for unsupported platforms." + +#: ../../build/NEWS:7326 +msgid "" +"`bpo-25163 `__: Display correct " +"directory in installer when using non-default settings." +msgstr "" +"`bpo-25163 `__: Display correct " +"directory in installer when using non-default settings." + +#: ../../build/NEWS:7329 +msgid "" +"`bpo-25361 `__: Disables use of SSE2 " +"instructions in Windows 32-bit build" +msgstr "" +"`bpo-25361 `__: Disables use of SSE2 " +"instructions in Windows 32-bit build" + +#: ../../build/NEWS:7331 +msgid "" +"`bpo-25089 `__: Adds logging to " +"installer for case where launcher is not selected on upgrade." +msgstr "" +"`bpo-25089 `__: Adds logging to " +"installer for case where launcher is not selected on upgrade." + +#: ../../build/NEWS:7334 +msgid "" +"`bpo-25165 `__: Windows uninstallation " +"should not remove launcher if other versions remain" +msgstr "" +"`bpo-25165 `__: Windows uninstallation " +"should not remove launcher if other versions remain" + +#: ../../build/NEWS:7337 +msgid "" +"`bpo-25112 `__: py.exe launcher is " +"missing icons" +msgstr "" +"`bpo-25112 `__: py.exe launcher is " +"missing icons" + +#: ../../build/NEWS:7339 +msgid "" +"`bpo-25102 `__: Windows installer does " +"not precompile for -O or -OO." +msgstr "" +"`bpo-25102 `__: Windows installer does " +"not precompile for -O or -OO." + +#: ../../build/NEWS:7341 +msgid "" +"`bpo-25081 `__: Makes Back button in " +"installer go back to upgrade page when upgrading." +msgstr "" +"`bpo-25081 `__: Makes Back button in " +"installer go back to upgrade page when upgrading." + +#: ../../build/NEWS:7344 +msgid "" +"`bpo-25091 `__: Increases font size of " +"the installer." +msgstr "" +"`bpo-25091 `__: Increases font size of " +"the installer." + +#: ../../build/NEWS:7346 +msgid "" +"`bpo-25126 `__: Clarifies that the non-" +"web installer will download some components." +msgstr "" +"`bpo-25126 `__: Clarifies that the non-" +"web installer will download some components." + +#: ../../build/NEWS:7349 +msgid "" +"`bpo-25213 `__: Restores " +"requestedExecutionLevel to manifest to disable UAC virtualization." +msgstr "" +"`bpo-25213 `__: Restores " +"requestedExecutionLevel to manifest to disable UAC virtualization." + +#: ../../build/NEWS:7361 +msgid "Python 3.5.0 final" +msgstr "Python 3.5.0 final" + +#: ../../build/NEWS:7368 +msgid "" +"`bpo-25071 `__: Windows installer should " +"not require TargetDir parameter when installing quietly." +msgstr "" +"`bpo-25071 `__: Windows installer should " +"not require TargetDir parameter when installing quietly." + +#: ../../build/NEWS:7373 +msgid "Python 3.5.0 release candidate 4" +msgstr "Python 3.5.0 release candidate 4" + +#: ../../build/NEWS:7380 +msgid "" +"`bpo-25029 `__: Fixes MemoryError in " +"test_strptime." +msgstr "" +"`bpo-25029 `__: Fixes MemoryError in " +"test_strptime." + +#: ../../build/NEWS:7385 +msgid "" +"`bpo-25027 `__: Reverts partial-static " +"build options and adds vcruntime140.dll to Windows installation." +msgstr "" +"`bpo-25027 `__: Reverts partial-static " +"build options and adds vcruntime140.dll to Windows installation." + +#: ../../build/NEWS:7390 +msgid "Python 3.5.0 release candidate 3" +msgstr "Python 3.5.0 release candidate 3" + +#: ../../build/NEWS:7397 +msgid "" +"`bpo-24305 `__: Prevent import subsystem " +"stack frames from being counted by the warnings.warn(stacklevel=) parameter." +msgstr "" +"`bpo-24305 `__: Prevent import subsystem " +"stack frames from being counted by the warnings.warn(stacklevel=) parameter." + +#: ../../build/NEWS:7400 +msgid "" +"`bpo-24912 `__: Prevent __class__ " +"assignment to immutable built-in objects." +msgstr "" +"`bpo-24912 `__: Prevent __class__ " +"assignment to immutable built-in objects." + +#: ../../build/NEWS:7402 +msgid "" +"`bpo-24975 `__: Fix AST compilation for " +"PEP 448 syntax." +msgstr "" +"`bpo-24975 `__: Fix AST compilation for " +"PEP 448 syntax." + +#: ../../build/NEWS:7407 +msgid "" +"`bpo-24917 `__: time_strftime() buffer " +"over-read." +msgstr "" +"`bpo-24917 `__: time_strftime() buffer " +"over-read." + +#: ../../build/NEWS:7409 +msgid "" +"`bpo-24748 `__: To resolve a " +"compatibility problem found with py2exe and pywin32, imp.load_dynamic() once " +"again ignores previously loaded modules to support Python modules replacing " +"themselves with extension modules. Patch by Petr Viktorin." +msgstr "" +"`bpo-24748 `__: To resolve a " +"compatibility problem found with py2exe and pywin32, imp.load_dynamic() once " +"again ignores previously loaded modules to support Python modules replacing " +"themselves with extension modules. Patch by Petr Viktorin." + +#: ../../build/NEWS:7414 +msgid "" +"`bpo-24635 `__: Fixed a bug in typing.py " +"where isinstance([], typing.Iterable) would return True once, then False on " +"subsequent calls." +msgstr "" +"`bpo-24635 `__: Fixed a bug in typing.py " +"where isinstance([], typing.Iterable) would return True once, then False on " +"subsequent calls." + +#: ../../build/NEWS:7417 +msgid "" +"`bpo-24989 `__: Fixed buffer overread in " +"BytesIO.readline() if a position is set beyond size. Based on patch by John " +"Leitch." +msgstr "" +"`bpo-24989 `__: Fixed buffer overread in " +"BytesIO.readline() if a position is set beyond size. Based on patch by John " +"Leitch." + +#: ../../build/NEWS:7425 +msgid "Python 3.5.0 release candidate 2" +msgstr "Python 3.5.0 release candidate 2" + +#: ../../build/NEWS:7432 +msgid "" +"`bpo-24769 `__: Interpreter now starts " +"properly when dynamic loading is disabled. Patch by Petr Viktorin." +msgstr "" +"`bpo-24769 `__: Interpreter now starts " +"properly when dynamic loading is disabled. Patch by Petr Viktorin." + +#: ../../build/NEWS:7435 +msgid "" +"`bpo-21167 `__: NAN operations are now " +"handled correctly when python is compiled with ICC even if -fp-model strict " +"is not specified." +msgstr "" +"`bpo-21167 `__: NAN operations are now " +"handled correctly when python is compiled with ICC even if -fp-model strict " +"is not specified." + +#: ../../build/NEWS:7438 +msgid "" +"`bpo-24492 `__: A \"package\" lacking a " +"__name__ attribute when trying to perform a ``from .. import ...`` statement " +"will trigger an ImportError instead of an AttributeError." +msgstr "" +"`bpo-24492 `__: A \"package\" lacking a " +"__name__ attribute when trying to perform a ``from .. import ...`` statement " +"will trigger an ImportError instead of an AttributeError." + +#: ../../build/NEWS:7445 +msgid "" +"`bpo-24847 `__: Removes vcruntime140.dll " +"dependency from Tcl/Tk." +msgstr "" +"`bpo-24847 `__: Removes vcruntime140.dll " +"dependency from Tcl/Tk." + +#: ../../build/NEWS:7447 +msgid "" +"`bpo-24839 `__: platform._syscmd_ver " +"raises DeprecationWarning" +msgstr "" +"`bpo-24839 `__: platform._syscmd_ver " +"raises DeprecationWarning" + +#: ../../build/NEWS:7449 +msgid "" +"`bpo-24867 `__: Fix Task.get_stack() for " +"'async def' coroutines" +msgstr "" +"`bpo-24867 `__: Fix Task.get_stack() for " +"'async def' coroutines" + +#: ../../build/NEWS:7453 +msgid "Python 3.5.0 release candidate 1" +msgstr "Python 3.5.0 release candidate 1" + +#: ../../build/NEWS:7460 +msgid "" +"`bpo-24667 `__: Resize odict in all " +"cases that the underlying dict resizes." +msgstr "" +"`bpo-24667 `__: Resize odict in all " +"cases that the underlying dict resizes." + +#: ../../build/NEWS:7465 +msgid "" +"`bpo-24824 `__: Signatures of codecs." +"encode() and codecs.decode() now are compatible with pydoc." +msgstr "" +"`bpo-24824 `__: Signatures of codecs." +"encode() and codecs.decode() now are compatible with pydoc." + +#: ../../build/NEWS:7468 +msgid "" +"`bpo-24634 `__: Importing uuid should " +"not try to load libc on Windows" +msgstr "" +"`bpo-24634 `__: Importing uuid should " +"not try to load libc on Windows" + +#: ../../build/NEWS:7470 +msgid "" +"`bpo-24798 `__: _msvccompiler.py doesn't " +"properly support manifests" +msgstr "" +"`bpo-24798 `__: _msvccompiler.py doesn't " +"properly support manifests" + +#: ../../build/NEWS:7472 +msgid "" +"`bpo-4395 `__: Better testing and " +"documentation of binary operators. Patch by Martin Panter." +msgstr "" +"`bpo-4395 `__: Better testing and " +"documentation of binary operators. Patch by Martin Panter." + +#: ../../build/NEWS:7475 +msgid "" +"`bpo-23973 `__: Update typing.py from " +"GitHub repo." +msgstr "" +"`bpo-23973 `__: Update typing.py from " +"GitHub repo." + +#: ../../build/NEWS:7477 +msgid "" +"`bpo-23004 `__: mock_open() now reads " +"binary data correctly when the type of read_data is bytes. Initial patch by " +"Aaron Hill." +msgstr "" +"`bpo-23004 `__: mock_open() now reads " +"binary data correctly when the type of read_data is bytes. Initial patch by " +"Aaron Hill." + +#: ../../build/NEWS:7480 +msgid "" +"`bpo-23888 `__: Handle fractional time " +"in cookie expiry. Patch by ssh." +msgstr "" +"`bpo-23888 `__: Handle fractional time " +"in cookie expiry. Patch by ssh." + +#: ../../build/NEWS:7482 +msgid "" +"`bpo-23652 `__: Make it possible to " +"compile the select module against the libc headers from the Linux Standard " +"Base, which do not include some EPOLL macros. Patch by Matt Frank." +msgstr "" +"`bpo-23652 `__: Make it possible to " +"compile the select module against the libc headers from the Linux Standard " +"Base, which do not include some EPOLL macros. Patch by Matt Frank." + +#: ../../build/NEWS:7486 +msgid "" +"`bpo-22932 `__: Fix timezones in email." +"utils.formatdate. Patch from Dmitry Shachnev." +msgstr "" +"`bpo-22932 `__: Fix timezones in email." +"utils.formatdate. Patch from Dmitry Shachnev." + +#: ../../build/NEWS:7489 +msgid "" +"`bpo-23779 `__: imaplib raises TypeError " +"if authenticator tries to abort. Patch from Craig Holmquist." +msgstr "" +"`bpo-23779 `__: imaplib raises TypeError " +"if authenticator tries to abort. Patch from Craig Holmquist." + +#: ../../build/NEWS:7492 +msgid "" +"`bpo-23319 `__: Fix ctypes." +"BigEndianStructure, swap correctly bytes. Patch written by Matthieu Gautier." +msgstr "" +"`bpo-23319 `__: Fix ctypes." +"BigEndianStructure, swap correctly bytes. Patch written by Matthieu Gautier." + +#: ../../build/NEWS:7495 +msgid "" +"`bpo-23254 `__: Document how to close " +"the TCPServer listening socket. Patch from Martin Panter." +msgstr "" +"`bpo-23254 `__: Document how to close " +"the TCPServer listening socket. Patch from Martin Panter." + +#: ../../build/NEWS:7498 +msgid "" +"`bpo-19450 `__: Update Windows and OS X " +"installer builds to use SQLite 3.8.11." +msgstr "" +"`bpo-19450 `__: Update Windows and OS X " +"installer builds to use SQLite 3.8.11." + +#: ../../build/NEWS:7500 +msgid "" +"`bpo-17527 `__: Add PATCH to wsgiref." +"validator. Patch from Luca Sbardella." +msgstr "" +"`bpo-17527 `__: Add PATCH to wsgiref." +"validator. Patch from Luca Sbardella." + +#: ../../build/NEWS:7502 +msgid "" +"`bpo-24791 `__: Fix grammar regression " +"for call syntax: 'g(\\*a or b)'." +msgstr "" +"`bpo-24791 `__: Fix grammar regression " +"for call syntax: 'g(\\*a or b)'." + +#: ../../build/NEWS:7507 +msgid "" +"`bpo-23672 `__: Allow Idle to edit and " +"run files with astral chars in name. Patch by Mohd Sanad Zaki Rizvi." +msgstr "" +"`bpo-23672 `__: Allow Idle to edit and " +"run files with astral chars in name. Patch by Mohd Sanad Zaki Rizvi." + +#: ../../build/NEWS:7515 +msgid "" +"`bpo-21192 `__: Idle editor. When a file " +"is run, put its name in the restart bar. Do not print false prompts. " +"Original patch by Adnan Umer." +msgstr "" +"`bpo-21192 `__: Idle editor. When a file " +"is run, put its name in the restart bar. Do not print false prompts. " +"Original patch by Adnan Umer." + +#: ../../build/NEWS:7518 +msgid "" +"`bpo-13884 `__: Idle menus. Remove " +"tearoff lines. Patch by Roger Serwy." +msgstr "" +"`bpo-13884 `__: Idle menus. Remove " +"tearoff lines. Patch by Roger Serwy." + +#: ../../build/NEWS:7523 +msgid "" +"`bpo-24129 `__: Clarify the reference " +"documentation for name resolution. This includes removing the assumption " +"that readers will be familiar with the name resolution scheme Python used " +"prior to the introduction of lexical scoping for function namespaces. Patch " +"by Ivan Levkivskyi." +msgstr "" +"`bpo-24129 `__: Clarify the reference " +"documentation for name resolution. This includes removing the assumption " +"that readers will be familiar with the name resolution scheme Python used " +"prior to the introduction of lexical scoping for function namespaces. Patch " +"by Ivan Levkivskyi." + +#: ../../build/NEWS:7528 +msgid "" +"`bpo-20769 `__: Improve reload() docs. " +"Patch by Dorian Pula." +msgstr "" +"`bpo-20769 `__: Improve reload() docs. " +"Patch by Dorian Pula." + +#: ../../build/NEWS:7530 +msgid "" +"`bpo-23589 `__: Remove duplicate " +"sentence from the FAQ. Patch by Yongzhi Pan." +msgstr "" +"`bpo-23589 `__: Remove duplicate " +"sentence from the FAQ. Patch by Yongzhi Pan." + +#: ../../build/NEWS:7532 +msgid "" +"`bpo-24729 `__: Correct IO tutorial to " +"match implementation regarding encoding parameter to open function." +msgstr "" +"`bpo-24729 `__: Correct IO tutorial to " +"match implementation regarding encoding parameter to open function." + +#: ../../build/NEWS:7544 +msgid "Python 3.5.0 beta 4" +msgstr "Python 3.5.0 beta 4" + +#: ../../build/NEWS:7551 +msgid "" +"`bpo-23573 `__: Restored optimization of " +"bytes.rfind() and bytearray.rfind() for single-byte argument on Linux." +msgstr "" +"`bpo-23573 `__: Restored optimization of " +"bytes.rfind() and bytearray.rfind() for single-byte argument on Linux." + +#: ../../build/NEWS:7554 +msgid "" +"`bpo-24569 `__: Make PEP 448 dictionary " +"evaluation more consistent." +msgstr "" +"`bpo-24569 `__: Make PEP 448 dictionary " +"evaluation more consistent." + +#: ../../build/NEWS:7556 +msgid "" +"`bpo-24583 `__: Fix crash when set is " +"mutated while being updated." +msgstr "" +"`bpo-24583 `__: Fix crash when set is " +"mutated while being updated." + +#: ../../build/NEWS:7558 +msgid "" +"`bpo-24407 `__: Fix crash when dict is " +"mutated while being updated." +msgstr "" +"`bpo-24407 `__: Fix crash when dict is " +"mutated while being updated." + +#: ../../build/NEWS:7560 +msgid "" +"`bpo-24619 `__: New approach for " +"tokenizing async/await. As a consequence, it is now possible to have one-" +"line 'async def foo(): await ..' functions." +msgstr "" +"`bpo-24619 `__: New approach for " +"tokenizing async/await. As a consequence, it is now possible to have one-" +"line 'async def foo(): await ..' functions." + +#: ../../build/NEWS:7563 +msgid "" +"`bpo-24687 `__: Plug refleak on " +"SyntaxError in function parameters annotations." +msgstr "" +"`bpo-24687 `__: Plug refleak on " +"SyntaxError in function parameters annotations." + +#: ../../build/NEWS:7565 +msgid "" +"`bpo-15944 `__: memoryview: Allow " +"arbitrary formats when casting to bytes. Patch by Martin Panter." +msgstr "" +"`bpo-15944 `__: memoryview: Allow " +"arbitrary formats when casting to bytes. Patch by Martin Panter." + +#: ../../build/NEWS:7571 +msgid "" +"`bpo-23441 `__: rcompleter now prints a " +"tab character instead of displaying possible completions for an empty word. " +"Initial patch by Martin Sekera." +msgstr "" +"`bpo-23441 `__: rcompleter now prints a " +"tab character instead of displaying possible completions for an empty word. " +"Initial patch by Martin Sekera." + +#: ../../build/NEWS:7574 +msgid "" +"`bpo-24683 `__: Fixed crashes in _json " +"functions called with arguments of inappropriate type." +msgstr "" +"`bpo-24683 `__: Fixed crashes in _json " +"functions called with arguments of inappropriate type." + +#: ../../build/NEWS:7577 +msgid "" +"`bpo-21697 `__: shutil.copytree() now " +"correctly handles symbolic links that point to directories. Patch by " +"Eduardo Seabra and Thomas Kluyver." +msgstr "" +"`bpo-21697 `__: shutil.copytree() now " +"correctly handles symbolic links that point to directories. Patch by " +"Eduardo Seabra and Thomas Kluyver." + +#: ../../build/NEWS:7580 +msgid "" +"`bpo-14373 `__: Fixed segmentation fault " +"when gc.collect() is called during constructing lru_cache (C implementation)." +msgstr "" +"`bpo-14373 `__: Fixed segmentation fault " +"when gc.collect() is called during constructing lru_cache (C implementation)." + +#: ../../build/NEWS:7583 +msgid "" +"`bpo-24695 `__: Fix a regression in " +"traceback.print_exception(). If exc_traceback is None we shouldn't print a " +"traceback header like described in the documentation." +msgstr "" +"`bpo-24695 `__: Fix a regression in " +"traceback.print_exception(). If exc_traceback is None we shouldn't print a " +"traceback header like described in the documentation." + +#: ../../build/NEWS:7587 +msgid "" +"`bpo-24620 `__: Random.setstate() now " +"validates the value of state last element." +msgstr "" +"`bpo-24620 `__: Random.setstate() now " +"validates the value of state last element." + +#: ../../build/NEWS:7590 +msgid "" +"`bpo-22485 `__: Fixed an issue that " +"caused `inspect.getsource` to return incorrect results on nested functions." +msgstr "" +"`bpo-22485 `__: Fixed an issue that " +"caused `inspect.getsource` to return incorrect results on nested functions." + +#: ../../build/NEWS:7593 +msgid "" +"`bpo-22153 `__: Improve unittest docs. " +"Patch from Martin Panter and evilzero." +msgstr "" +"`bpo-22153 `__: Improve unittest docs. " +"Patch from Martin Panter and evilzero." + +#: ../../build/NEWS:7595 +msgid "" +"`bpo-24580 `__: Symbolic group " +"references to open group in re patterns now are explicitly forbidden as well " +"as numeric group references." +msgstr "" +"`bpo-24580 `__: Symbolic group " +"references to open group in re patterns now are explicitly forbidden as well " +"as numeric group references." + +#: ../../build/NEWS:7598 +msgid "" +"`bpo-24206 `__: Fixed __eq__ and __ne__ " +"methods of inspect classes." +msgstr "" +"`bpo-24206 `__: Fixed __eq__ and __ne__ " +"methods of inspect classes." + +#: ../../build/NEWS:7600 +msgid "" +"`bpo-24631 `__: Fixed regression in the " +"timeit module with multiline setup." +msgstr "" +"`bpo-24631 `__: Fixed regression in the " +"timeit module with multiline setup." + +#: ../../build/NEWS:7608 +msgid "" +"`bpo-24608 `__: chunk.Chunk.read() now " +"always returns bytes, not str." +msgstr "" +"`bpo-24608 `__: chunk.Chunk.read() now " +"always returns bytes, not str." + +#: ../../build/NEWS:7610 +msgid "" +"`bpo-18684 `__: Fixed reading out of the " +"buffer in the re module." +msgstr "" +"`bpo-18684 `__: Fixed reading out of the " +"buffer in the re module." + +#: ../../build/NEWS:7612 +msgid "" +"`bpo-24259 `__: tarfile now raises a " +"ReadError if an archive is truncated inside a data segment." +msgstr "" +"`bpo-24259 `__: tarfile now raises a " +"ReadError if an archive is truncated inside a data segment." + +#: ../../build/NEWS:7618 +msgid "" +"`bpo-24669 `__: Fix inspect.getsource() " +"for 'async def' functions. Patch by Kai Groner." +msgstr "" +"`bpo-24669 `__: Fix inspect.getsource() " +"for 'async def' functions. Patch by Kai Groner." + +#: ../../build/NEWS:7621 +msgid "" +"`bpo-24688 `__: ast.get_docstring() for " +"'async def' functions." +msgstr "" +"`bpo-24688 `__: ast.get_docstring() for " +"'async def' functions." + +#: ../../build/NEWS:7626 +msgid "" +"`bpo-24603 `__: Update Windows builds " +"and OS X 10.5 installer to use OpenSSL 1.0.2d." +msgstr "" +"`bpo-24603 `__: Update Windows builds " +"and OS X 10.5 installer to use OpenSSL 1.0.2d." + +#: ../../build/NEWS:7631 +msgid "Python 3.5.0 beta 3" +msgstr "Python 3.5.0 beta 3" + +#: ../../build/NEWS:7638 +msgid "" +"`bpo-24467 `__: Fixed possible buffer " +"over-read in bytearray. The bytearray object now always allocates place for " +"trailing null byte and it's buffer now is always null-terminated." +msgstr "" +"`bpo-24467 `__: Fixed possible buffer " +"over-read in bytearray. The bytearray object now always allocates place for " +"trailing null byte and it's buffer now is always null-terminated." + +#: ../../build/NEWS:7642 +msgid "Upgrade to Unicode 8.0.0." +msgstr "Upgrade to Unicode 8.0.0." + +#: ../../build/NEWS:7644 +msgid "" +"`bpo-24345 `__: Add Py_tp_finalize slot " +"for the stable ABI." +msgstr "" +"`bpo-24345 `__: Add Py_tp_finalize slot " +"for the stable ABI." + +#: ../../build/NEWS:7646 +msgid "" +"`bpo-24400 `__: Introduce a distinct " +"type for PEP 492 coroutines; add types.CoroutineType, inspect." +"getcoroutinestate, inspect.getcoroutinelocals; coroutines no longer use " +"CO_GENERATOR flag; sys.set_coroutine_wrapper works only for 'async def' " +"coroutines; inspect.iscoroutine no longer uses collections.abc.Coroutine, " +"it's intended to test for pure 'async def' coroutines only; add new opcode: " +"GET_YIELD_FROM_ITER; fix generators wrapper used in types.coroutine to be " +"instance of collections.abc.Generator; collections.abc.Awaitable and " +"collections.abc.Coroutine can no longer be used to detect generator-based " +"coroutines--use inspect.isawaitable instead." +msgstr "" +"`bpo-24400 `__: Introduce a distinct " +"type for PEP 492 coroutines; add types.CoroutineType, inspect." +"getcoroutinestate, inspect.getcoroutinelocals; coroutines no longer use " +"CO_GENERATOR flag; sys.set_coroutine_wrapper works only for 'async def' " +"coroutines; inspect.iscoroutine no longer uses collections.abc.Coroutine, " +"it's intended to test for pure 'async def' coroutines only; add new opcode: " +"GET_YIELD_FROM_ITER; fix generators wrapper used in types.coroutine to be " +"instance of collections.abc.Generator; collections.abc.Awaitable and " +"collections.abc.Coroutine can no longer be used to detect generator-based " +"coroutines--use inspect.isawaitable instead." + +#: ../../build/NEWS:7657 +msgid "" +"`bpo-24450 `__: Add gi_yieldfrom to " +"generators and cr_await to coroutines. Contributed by Benno Leslie and Yury " +"Selivanov." +msgstr "" +"`bpo-24450 `__: Add gi_yieldfrom to " +"generators and cr_await to coroutines. Contributed by Benno Leslie and Yury " +"Selivanov." + +#: ../../build/NEWS:7660 +msgid "" +"`bpo-19235 `__: Add new RecursionError " +"exception. Patch by Georg Brandl." +msgstr "" +"`bpo-19235 `__: Add new RecursionError " +"exception. Patch by Georg Brandl." + +#: ../../build/NEWS:7665 +msgid "" +"`bpo-21750 `__: mock_open.read_data can " +"now be read from each instance, as it could in Python 3.3." +msgstr "" +"`bpo-21750 `__: mock_open.read_data can " +"now be read from each instance, as it could in Python 3.3." + +#: ../../build/NEWS:7668 +msgid "" +"`bpo-24552 `__: Fix use after free in an " +"error case of the _pickle module." +msgstr "" +"`bpo-24552 `__: Fix use after free in an " +"error case of the _pickle module." + +#: ../../build/NEWS:7670 +msgid "" +"`bpo-24514 `__: tarfile now tolerates " +"number fields consisting of only whitespace." +msgstr "" +"`bpo-24514 `__: tarfile now tolerates " +"number fields consisting of only whitespace." + +#: ../../build/NEWS:7673 +msgid "" +"`bpo-19176 `__: Fixed doctype() related " +"bugs in C implementation of ElementTree. A deprecation warning no longer " +"issued by XMLParser subclass with default doctype() method. Direct call of " +"doctype() now issues a warning. Parser's doctype() now is not called if " +"target's doctype() is called. Based on patch by Martin Panter." +msgstr "" +"`bpo-19176 `__: Fixed doctype() related " +"bugs in C implementation of ElementTree. A deprecation warning no longer " +"issued by XMLParser subclass with default doctype() method. Direct call of " +"doctype() now issues a warning. Parser's doctype() now is not called if " +"target's doctype() is called. Based on patch by Martin Panter." + +#: ../../build/NEWS:7682 +msgid "" +"`bpo-24456 `__: Fixed possible buffer " +"over-read in adpcm2lin() and lin2adpcm() functions of the audioop module." +msgstr "" +"`bpo-24456 `__: Fixed possible buffer " +"over-read in adpcm2lin() and lin2adpcm() functions of the audioop module." + +#: ../../build/NEWS:7685 +msgid "" +"`bpo-24336 `__: The contextmanager " +"decorator now works with functions with keyword arguments called \"func\" " +"and \"self\". Patch by Martin Panter." +msgstr "" +"`bpo-24336 `__: The contextmanager " +"decorator now works with functions with keyword arguments called \"func\" " +"and \"self\". Patch by Martin Panter." + +#: ../../build/NEWS:7688 +msgid "" +"`bpo-24522 `__: Fix possible integer " +"overflow in json accelerator module." +msgstr "" +"`bpo-24522 `__: Fix possible integer " +"overflow in json accelerator module." + +#: ../../build/NEWS:7690 +msgid "" +"`bpo-24489 `__: ensure a previously set " +"C errno doesn't disturb cmath.polar()." +msgstr "" +"`bpo-24489 `__: ensure a previously set " +"C errno doesn't disturb cmath.polar()." + +#: ../../build/NEWS:7692 +msgid "" +"`bpo-24408 `__: Fixed AttributeError in " +"measure() and metrics() methods of tkinter.Font." +msgstr "" +"`bpo-24408 `__: Fixed AttributeError in " +"measure() and metrics() methods of tkinter.Font." + +#: ../../build/NEWS:7695 +msgid "" +"`bpo-14373 `__: C implementation of " +"functools.lru_cache() now can be used with methods." +msgstr "" +"`bpo-14373 `__: C implementation of " +"functools.lru_cache() now can be used with methods." + +#: ../../build/NEWS:7698 +msgid "" +"`bpo-24347 `__: Set KeyError if " +"PyDict_GetItemWithError returns NULL." +msgstr "" +"`bpo-24347 `__: Set KeyError if " +"PyDict_GetItemWithError returns NULL." + +#: ../../build/NEWS:7700 +msgid "" +"`bpo-24348 `__: Drop superfluous incref/" +"decref." +msgstr "" +"`bpo-24348 `__: Drop superfluous incref/" +"decref." + +#: ../../build/NEWS:7702 +msgid "" +"`bpo-24359 `__: Check for changed " +"OrderedDict size during iteration." +msgstr "" +"`bpo-24359 `__: Check for changed " +"OrderedDict size during iteration." + +#: ../../build/NEWS:7704 +msgid "" +"`bpo-24368 `__: Support keyword " +"arguments in OrderedDict methods." +msgstr "" +"`bpo-24368 `__: Support keyword " +"arguments in OrderedDict methods." + +#: ../../build/NEWS:7706 +msgid "" +"`bpo-24362 `__: Simplify the C " +"OrderedDict fast nodes resize logic." +msgstr "" +"`bpo-24362 `__: Simplify the C " +"OrderedDict fast nodes resize logic." + +#: ../../build/NEWS:7708 +msgid "" +"`bpo-24377 `__: Fix a ref leak in " +"OrderedDict.__repr__." +msgstr "" +"`bpo-24377 `__: Fix a ref leak in " +"OrderedDict.__repr__." + +#: ../../build/NEWS:7710 +msgid "" +"`bpo-24369 `__: Defend against key-" +"changes during iteration." +msgstr "" +"`bpo-24369 `__: Defend against key-" +"changes during iteration." + +#: ../../build/NEWS:7715 +msgid "" +"`bpo-24373 `__: _testmultiphase and " +"xxlimited now use tp_traverse and tp_finalize to avoid reference leaks " +"encountered when combining tp_dealloc with PyType_FromSpec (see `bpo-16690 " +"`__ for details)" +msgstr "" +"`bpo-24373 `__: _testmultiphase and " +"xxlimited now use tp_traverse and tp_finalize to avoid reference leaks " +"encountered when combining tp_dealloc with PyType_FromSpec (see `bpo-16690 " +"`__ for details)" + +#: ../../build/NEWS:7722 +msgid "" +"`bpo-24458 `__: Update documentation to " +"cover multi-phase initialization for extension modules (PEP 489). Patch by " +"Petr Viktorin." +msgstr "" +"`bpo-24458 `__: Update documentation to " +"cover multi-phase initialization for extension modules (PEP 489). Patch by " +"Petr Viktorin." + +#: ../../build/NEWS:7725 +msgid "" +"`bpo-24351 `__: Clarify what is meant by " +"\"identifier\" in the context of string.Template instances." +msgstr "" +"`bpo-24351 `__: Clarify what is meant by " +"\"identifier\" in the context of string.Template instances." + +#: ../../build/NEWS:7731 +msgid "" +"`bpo-24432 `__: Update Windows builds " +"and OS X 10.5 installer to use OpenSSL 1.0.2c." +msgstr "" +"`bpo-24432 `__: Update Windows builds " +"and OS X 10.5 installer to use OpenSSL 1.0.2c." + +#: ../../build/NEWS:7736 +msgid "Python 3.5.0 beta 2" +msgstr "Python 3.5.0 beta 2" + +#: ../../build/NEWS:7743 +msgid "" +"`bpo-24284 `__: The startswith and " +"endswith methods of the str class no longer return True when finding the " +"empty string and the indexes are completely out of range." +msgstr "" +"`bpo-24284 `__: The startswith and " +"endswith methods of the str class no longer return True when finding the " +"empty string and the indexes are completely out of range." + +#: ../../build/NEWS:7747 +msgid "" +"`bpo-24115 `__: Update uses of " +"PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(), " +"PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle " +"errors correctly." +msgstr "" +"`bpo-24115 `__: Update uses of " +"PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(), " +"PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle " +"errors correctly." + +#: ../../build/NEWS:7751 +msgid "" +"`bpo-24328 `__: Fix importing one " +"character extension modules." +msgstr "" +"`bpo-24328 `__: Fix importing one " +"character extension modules." + +#: ../../build/NEWS:7753 +msgid "" +"`bpo-11205 `__: In dictionary displays, " +"evaluate the key before the value." +msgstr "" +"`bpo-11205 `__: In dictionary displays, " +"evaluate the key before the value." + +#: ../../build/NEWS:7755 +msgid "" +"`bpo-24285 `__: Fixed regression that " +"prevented importing extension modules from inside packages. Patch by Petr " +"Viktorin." +msgstr "" +"`bpo-24285 `__: Fixed regression that " +"prevented importing extension modules from inside packages. Patch by Petr " +"Viktorin." + +#: ../../build/NEWS:7761 +msgid "" +"`bpo-23247 `__: Fix a crash in the " +"StreamWriter.reset() of CJK codecs." +msgstr "" +"`bpo-23247 `__: Fix a crash in the " +"StreamWriter.reset() of CJK codecs." + +#: ../../build/NEWS:7763 +msgid "" +"`bpo-24270 `__: Add math.isclose() and " +"cmath.isclose() functions as per PEP 485. Contributed by Chris Barker and " +"Tal Einat." +msgstr "" +"`bpo-24270 `__: Add math.isclose() and " +"cmath.isclose() functions as per PEP 485. Contributed by Chris Barker and " +"Tal Einat." + +#: ../../build/NEWS:7766 +msgid "" +"`bpo-5633 `__: Fixed timeit when the " +"statement is a string and the setup is not." +msgstr "" +"`bpo-5633 `__: Fixed timeit when the " +"statement is a string and the setup is not." + +#: ../../build/NEWS:7769 +msgid "" +"`bpo-24326 `__: Fixed audioop.ratecv() " +"with non-default weightB argument. Original patch by David Moore." +msgstr "" +"`bpo-24326 `__: Fixed audioop.ratecv() " +"with non-default weightB argument. Original patch by David Moore." + +#: ../../build/NEWS:7772 +msgid "" +"`bpo-16991 `__: Add a C implementation " +"of OrderedDict." +msgstr "" +"`bpo-16991 `__: Add a C implementation " +"of OrderedDict." + +#: ../../build/NEWS:7774 +msgid "" +"`bpo-23934 `__: Fix inspect.signature to " +"fail correctly for builtin types lacking signature information. Initial " +"patch by James Powell." +msgstr "" +"`bpo-23934 `__: Fix inspect.signature to " +"fail correctly for builtin types lacking signature information. Initial " +"patch by James Powell." + +#: ../../build/NEWS:7779 +msgid "Python 3.5.0 beta 1" +msgstr "Python 3.5.0 beta 1" + +#: ../../build/NEWS:7786 +msgid "" +"`bpo-24276 `__: Fixed optimization of " +"property descriptor getter." +msgstr "" +"`bpo-24276 `__: Fixed optimization of " +"property descriptor getter." + +#: ../../build/NEWS:7788 +msgid "" +"`bpo-24268 `__: PEP 489: Multi-phase " +"extension module initialization. Patch by Petr Viktorin." +msgstr "" +"`bpo-24268 `__: PEP 489: Multi-phase " +"extension module initialization. Patch by Petr Viktorin." + +#: ../../build/NEWS:7791 +msgid "" +"`bpo-23955 `__: Add pyvenv.cfg option to " +"suppress registry/environment lookup for generating sys.path on Windows." +msgstr "" +"`bpo-23955 `__: Add pyvenv.cfg option to " +"suppress registry/environment lookup for generating sys.path on Windows." + +#: ../../build/NEWS:7794 +msgid "" +"`bpo-24257 `__: Fixed system error in " +"the comparison of faked types.SimpleNamespace." +msgstr "" +"`bpo-24257 `__: Fixed system error in " +"the comparison of faked types.SimpleNamespace." + +#: ../../build/NEWS:7797 +msgid "" +"`bpo-22939 `__: Fixed integer overflow " +"in iterator object. Patch by Clement Rouault." +msgstr "" +"`bpo-22939 `__: Fixed integer overflow " +"in iterator object. Patch by Clement Rouault." + +#: ../../build/NEWS:7800 +msgid "" +"`bpo-23985 `__: Fix a possible buffer " +"overrun when deleting a slice from the front of a bytearray and then " +"appending some other bytes data." +msgstr "" +"`bpo-23985 `__: Fix a possible buffer " +"overrun when deleting a slice from the front of a bytearray and then " +"appending some other bytes data." + +#: ../../build/NEWS:7803 +msgid "" +"`bpo-24102 `__: Fixed exception type " +"checking in standard error handlers." +msgstr "" +"`bpo-24102 `__: Fixed exception type " +"checking in standard error handlers." + +#: ../../build/NEWS:7805 +msgid "" +"`bpo-15027 `__: The UTF-32 encoder is " +"now 3x to 7x faster." +msgstr "" +"`bpo-15027 `__: The UTF-32 encoder is " +"now 3x to 7x faster." + +#: ../../build/NEWS:7807 +msgid "" +"`bpo-23290 `__: Optimize set_merge() for " +"cases where the target is empty. (Contributed by Serhiy Storchaka.)" +msgstr "" +"`bpo-23290 `__: Optimize set_merge() for " +"cases where the target is empty. (Contributed by Serhiy Storchaka.)" + +#: ../../build/NEWS:7810 +msgid "" +"`bpo-2292 `__: PEP 448: Additional " +"Unpacking Generalizations." +msgstr "" +"`bpo-2292 `__: PEP 448: Additional " +"Unpacking Generalizations." + +#: ../../build/NEWS:7812 +msgid "" +"`bpo-24096 `__: Make warnings." +"warn_explicit more robust against mutation of the warnings.filters list." +msgstr "" +"`bpo-24096 `__: Make warnings." +"warn_explicit more robust against mutation of the warnings.filters list." + +#: ../../build/NEWS:7815 +msgid "" +"`bpo-23996 `__: Avoid a crash when a " +"delegated generator raises an unnormalized StopIteration exception. Patch " +"by Stefan Behnel." +msgstr "" +"`bpo-23996 `__: Avoid a crash when a " +"delegated generator raises an unnormalized StopIteration exception. Patch " +"by Stefan Behnel." + +#: ../../build/NEWS:7818 +msgid "" +"`bpo-23910 `__: Optimize property() " +"getter calls. Patch by Joe Jevnik." +msgstr "" +"`bpo-23910 `__: Optimize property() " +"getter calls. Patch by Joe Jevnik." + +#: ../../build/NEWS:7820 +msgid "" +"`bpo-23911 `__: Move path-based " +"importlib bootstrap code to a separate frozen module." +msgstr "" +"`bpo-23911 `__: Move path-based " +"importlib bootstrap code to a separate frozen module." + +#: ../../build/NEWS:7823 +msgid "" +"`bpo-24192 `__: Fix namespace package " +"imports." +msgstr "" +"`bpo-24192 `__: Fix namespace package " +"imports." + +#: ../../build/NEWS:7825 +msgid "" +"`bpo-24022 `__: Fix tokenizer crash when " +"processing undecodable source code." +msgstr "" +"`bpo-24022 `__: Fix tokenizer crash when " +"processing undecodable source code." + +#: ../../build/NEWS:7827 +msgid "" +"`bpo-9951 `__: Added a hex() method to " +"bytes, bytearray, and memoryview." +msgstr "" +"`bpo-9951 `__: Added a hex() method to " +"bytes, bytearray, and memoryview." + +#: ../../build/NEWS:7829 +msgid "" +"`bpo-22906 `__: PEP 479: Change " +"StopIteration handling inside generators." +msgstr "" +"`bpo-22906 `__: PEP 479: Change " +"StopIteration handling inside generators." + +#: ../../build/NEWS:7831 +msgid "" +"`bpo-24017 `__: PEP 492: Coroutines with " +"async and await syntax." +msgstr "" +"`bpo-24017 `__: PEP 492: Coroutines with " +"async and await syntax." + +#: ../../build/NEWS:7836 +msgid "" +"`bpo-14373 `__: Added C implementation " +"of functools.lru_cache(). Based on patches by Matt Joiner and Alexey " +"Kachayev." +msgstr "" +"`bpo-14373 `__: Added C implementation " +"of functools.lru_cache(). Based on patches by Matt Joiner and Alexey " +"Kachayev." + +#: ../../build/NEWS:7839 +msgid "" +"`bpo-24230 `__: The tempfile module now " +"accepts bytes for prefix, suffix and dir parameters and returns bytes in " +"such situations (matching the os module APIs)." +msgstr "" +"`bpo-24230 `__: The tempfile module now " +"accepts bytes for prefix, suffix and dir parameters and returns bytes in " +"such situations (matching the os module APIs)." + +#: ../../build/NEWS:7843 +msgid "" +"`bpo-22189 `__: collections.UserString " +"now supports __getnewargs__(), __rmod__(), casefold(), format_map(), " +"isprintable(), and maketrans(). Patch by Joe Jevnik." +msgstr "" +"`bpo-22189 `__: collections.UserString " +"now supports __getnewargs__(), __rmod__(), casefold(), format_map(), " +"isprintable(), and maketrans(). Patch by Joe Jevnik." + +#: ../../build/NEWS:7847 +msgid "" +"`bpo-24244 `__: Prevents termination " +"when an invalid format string is encountered on Windows in strftime." +msgstr "" +"`bpo-24244 `__: Prevents termination " +"when an invalid format string is encountered on Windows in strftime." + +#: ../../build/NEWS:7850 +msgid "" +"`bpo-23973 `__: PEP 484: Add the typing " +"module." +msgstr "" +"`bpo-23973 `__: PEP 484: Add the typing " +"module." + +#: ../../build/NEWS:7852 +msgid "" +"`bpo-23086 `__: The collections.abc." +"Sequence() abstract base class added *start* and *stop* parameters to the " +"index() mixin. Patch by Devin Jeanpierre." +msgstr "" +"`bpo-23086 `__: The collections.abc." +"Sequence() abstract base class added *start* and *stop* parameters to the " +"index() mixin. Patch by Devin Jeanpierre." + +#: ../../build/NEWS:7856 +msgid "" +"`bpo-20035 `__: Replaced the ``tkinter." +"_fix`` module used for setting up the Tcl/Tk environment on Windows with a " +"private function in the ``_tkinter`` module that makes no permanent changes " +"to the environment." +msgstr "" +"`bpo-20035 `__: Replaced the ``tkinter." +"_fix`` module used for setting up the Tcl/Tk environment on Windows with a " +"private function in the ``_tkinter`` module that makes no permanent changes " +"to the environment." + +#: ../../build/NEWS:7860 +msgid "" +"`bpo-24257 `__: Fixed segmentation fault " +"in sqlite3.Row constructor with faked cursor type." +msgstr "" +"`bpo-24257 `__: Fixed segmentation fault " +"in sqlite3.Row constructor with faked cursor type." + +#: ../../build/NEWS:7863 +msgid "" +"`bpo-15836 `__: assertRaises(), " +"assertRaisesRegex(), assertWarns() and assertWarnsRegex() assertments now " +"check the type of the first argument to prevent possible user error. Based " +"on patch by Daniel Wagner-Hall." +msgstr "" +"`bpo-15836 `__: assertRaises(), " +"assertRaisesRegex(), assertWarns() and assertWarnsRegex() assertments now " +"check the type of the first argument to prevent possible user error. Based " +"on patch by Daniel Wagner-Hall." + +#: ../../build/NEWS:7867 +msgid "" +"`bpo-9858 `__: Add missing method stubs " +"to _io.RawIOBase. Patch by Laura Rupprecht." +msgstr "" +"`bpo-9858 `__: Add missing method stubs " +"to _io.RawIOBase. Patch by Laura Rupprecht." + +#: ../../build/NEWS:7879 +msgid "" +"`bpo-23780 `__: Improved error message " +"in os.path.join() with single argument." +msgstr "" +"`bpo-23780 `__: Improved error message " +"in os.path.join() with single argument." + +#: ../../build/NEWS:7881 +msgid "" +"`bpo-6598 `__: Increased time precision " +"and random number range in email.utils.make_msgid() to strengthen the " +"uniqueness of the message ID." +msgstr "" +"`bpo-6598 `__: Increased time precision " +"and random number range in email.utils.make_msgid() to strengthen the " +"uniqueness of the message ID." + +#: ../../build/NEWS:7884 +msgid "" +"`bpo-24091 `__: Fixed various crashes in " +"corner cases in C implementation of ElementTree." +msgstr "" +"`bpo-24091 `__: Fixed various crashes in " +"corner cases in C implementation of ElementTree." + +#: ../../build/NEWS:7887 +msgid "" +"`bpo-21931 `__: msilib.FCICreate() now " +"raises TypeError in the case of a bad argument instead of a ValueError with " +"a bogus FCI error number. Patch by Jeffrey Armstrong." +msgstr "" +"`bpo-21931 `__: msilib.FCICreate() now " +"raises TypeError in the case of a bad argument instead of a ValueError with " +"a bogus FCI error number. Patch by Jeffrey Armstrong." + +#: ../../build/NEWS:7891 +msgid "" +"`bpo-13866 `__: *quote_via* argument " +"added to urllib.parse.urlencode." +msgstr "" +"`bpo-13866 `__: *quote_via* argument " +"added to urllib.parse.urlencode." + +#: ../../build/NEWS:7893 +msgid "" +"`bpo-20098 `__: New mangle_from policy " +"option for email, default True for compat32, but False for all other " +"policies." +msgstr "" +"`bpo-20098 `__: New mangle_from policy " +"option for email, default True for compat32, but False for all other " +"policies." + +#: ../../build/NEWS:7896 +msgid "" +"`bpo-24211 `__: The email library now " +"supports RFC 6532: it can generate headers using utf-8 instead of encoded " +"words." +msgstr "" +"`bpo-24211 `__: The email library now " +"supports RFC 6532: it can generate headers using utf-8 instead of encoded " +"words." + +#: ../../build/NEWS:7899 +msgid "" +"`bpo-16314 `__: Added support for the " +"LZMA compression in distutils." +msgstr "" +"`bpo-16314 `__: Added support for the " +"LZMA compression in distutils." + +#: ../../build/NEWS:7901 +msgid "" +"`bpo-21804 `__: poplib now supports RFC " +"6856 (UTF8)." +msgstr "" +"`bpo-21804 `__: poplib now supports RFC " +"6856 (UTF8)." + +#: ../../build/NEWS:7903 +msgid "" +"`bpo-18682 `__: Optimized pprint " +"functions for builtin scalar types." +msgstr "" +"`bpo-18682 `__: Optimized pprint " +"functions for builtin scalar types." + +#: ../../build/NEWS:7905 +msgid "" +"`bpo-22027 `__: smtplib now supports RFC " +"6531 (SMTPUTF8)." +msgstr "" +"`bpo-22027 `__: smtplib now supports RFC " +"6531 (SMTPUTF8)." + +#: ../../build/NEWS:7907 +msgid "" +"`bpo-23488 `__: Random generator objects " +"now consume 2x less memory on 64-bit." +msgstr "" +"`bpo-23488 `__: Random generator objects " +"now consume 2x less memory on 64-bit." + +#: ../../build/NEWS:7909 +msgid "" +"`bpo-1322 `__: platform.dist() and " +"platform.linux_distribution() functions are now deprecated. Initial patch " +"by Vajrasky Kok." +msgstr "" +"`bpo-1322 `__: platform.dist() and " +"platform.linux_distribution() functions are now deprecated. Initial patch " +"by Vajrasky Kok." + +#: ../../build/NEWS:7912 +msgid "" +"`bpo-22486 `__: Added the math.gcd() " +"function. The fractions.gcd() function now is deprecated. Based on patch " +"by Mark Dickinson." +msgstr "" +"`bpo-22486 `__: Added the math.gcd() " +"function. The fractions.gcd() function now is deprecated. Based on patch " +"by Mark Dickinson." + +#: ../../build/NEWS:7915 +msgid "" +"`bpo-24064 `__: Property() docstrings " +"are now writeable. (Patch by Berker Peksag.)" +msgstr "" +"`bpo-24064 `__: Property() docstrings " +"are now writeable. (Patch by Berker Peksag.)" + +#: ../../build/NEWS:7918 +msgid "" +"`bpo-22681 `__: Added support for the " +"koi8_t encoding." +msgstr "" +"`bpo-22681 `__: Added support for the " +"koi8_t encoding." + +#: ../../build/NEWS:7920 +msgid "" +"`bpo-22682 `__: Added support for the " +"kz1048 encoding." +msgstr "" +"`bpo-22682 `__: Added support for the " +"kz1048 encoding." + +#: ../../build/NEWS:7922 +msgid "" +"`bpo-23796 `__: peek and read1 methods " +"of BufferedReader now raise ValueError if they called on a closed object. " +"Patch by John Hergenroeder." +msgstr "" +"`bpo-23796 `__: peek and read1 methods " +"of BufferedReader now raise ValueError if they called on a closed object. " +"Patch by John Hergenroeder." + +#: ../../build/NEWS:7925 +msgid "" +"`bpo-21795 `__: smtpd now supports the " +"8BITMIME extension whenever the new *decode_data* constructor argument is " +"set to False." +msgstr "" +"`bpo-21795 `__: smtpd now supports the " +"8BITMIME extension whenever the new *decode_data* constructor argument is " +"set to False." + +#: ../../build/NEWS:7928 +msgid "" +"`bpo-24155 `__: optimize heapq.heapify() " +"for better cache performance when heapifying large lists." +msgstr "" +"`bpo-24155 `__: optimize heapq.heapify() " +"for better cache performance when heapifying large lists." + +#: ../../build/NEWS:7931 +msgid "" +"`bpo-21800 `__: imaplib now supports RFC " +"5161 (enable), RFC 6855 (utf8/internationalized email) and automatically " +"encodes non-ASCII usernames and passwords to UTF8." +msgstr "" +"`bpo-21800 `__: imaplib now supports RFC " +"5161 (enable), RFC 6855 (utf8/internationalized email) and automatically " +"encodes non-ASCII usernames and passwords to UTF8." + +#: ../../build/NEWS:7935 +msgid "" +"`bpo-20274 `__: When calling a _sqlite." +"Connection, it now complains if passed any keyword arguments. Previously it " +"silently ignored them." +msgstr "" +"`bpo-20274 `__: When calling a _sqlite." +"Connection, it now complains if passed any keyword arguments. Previously it " +"silently ignored them." + +#: ../../build/NEWS:7938 +msgid "" +"`bpo-20274 `__: Remove ignored and " +"erroneous \"kwargs\" parameters from three METH_VARARGS methods on _sqlite." +"Connection." +msgstr "" +"`bpo-20274 `__: Remove ignored and " +"erroneous \"kwargs\" parameters from three METH_VARARGS methods on _sqlite." +"Connection." + +#: ../../build/NEWS:7941 +msgid "" +"`bpo-24134 `__: assertRaises(), " +"assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks now emits a " +"deprecation warning when callable is None or keyword arguments except msg is " +"passed in the context manager mode." +msgstr "" +"`bpo-24134 `__: assertRaises(), " +"assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks now emits a " +"deprecation warning when callable is None or keyword arguments except msg is " +"passed in the context manager mode." + +#: ../../build/NEWS:7946 +msgid "" +"`bpo-24018 `__: Add a collections.abc." +"Generator abstract base class. Contributed by Stefan Behnel." +msgstr "" +"`bpo-24018 `__: Add a collections.abc." +"Generator abstract base class. Contributed by Stefan Behnel." + +#: ../../build/NEWS:7949 +msgid "" +"`bpo-23880 `__: Tkinter's getint() and " +"getdouble() now support Tcl_Obj. Tkinter's getdouble() now supports any " +"numbers (in particular int)." +msgstr "" +"`bpo-23880 `__: Tkinter's getint() and " +"getdouble() now support Tcl_Obj. Tkinter's getdouble() now supports any " +"numbers (in particular int)." + +#: ../../build/NEWS:7952 +msgid "" +"`bpo-22619 `__: Added negative limit " +"support in the traceback module. Based on patch by Dmitry Kazakov." +msgstr "" +"`bpo-22619 `__: Added negative limit " +"support in the traceback module. Based on patch by Dmitry Kazakov." + +#: ../../build/NEWS:7955 +msgid "" +"`bpo-24094 `__: Fix possible crash in " +"json.encode with poorly behaved dict subclasses." +msgstr "" +"`bpo-24094 `__: Fix possible crash in " +"json.encode with poorly behaved dict subclasses." + +#: ../../build/NEWS:7958 +msgid "" +"`bpo-9246 `__: On POSIX, os.getcwd() now " +"supports paths longer than 1025 bytes. Patch written by William Orr." +msgstr "" +"`bpo-9246 `__: On POSIX, os.getcwd() now " +"supports paths longer than 1025 bytes. Patch written by William Orr." + +#: ../../build/NEWS:7961 +msgid "" +"`bpo-17445 `__: add difflib.diff_bytes() " +"to support comparison of byte strings (fixes a regression from Python 2)." +msgstr "" +"`bpo-17445 `__: add difflib.diff_bytes() " +"to support comparison of byte strings (fixes a regression from Python 2)." + +#: ../../build/NEWS:7967 +msgid "" +"`bpo-23008 `__: Fixed resolving " +"attributes with boolean value is False in pydoc." +msgstr "" +"`bpo-23008 `__: Fixed resolving " +"attributes with boolean value is False in pydoc." + +#: ../../build/NEWS:7970 +msgid "" +"Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't increment " +"unfinished tasks (this bug was introduced when JoinableQueue was merged with " +"Queue)." +msgstr "" + +#: ../../build/NEWS:7974 +msgid "" +"`bpo-23908 `__: os functions now reject " +"paths with embedded null character on Windows instead of silently truncating " +"them." +msgstr "" +"`bpo-23908 `__: os functions now reject " +"paths with embedded null character on Windows instead of silently truncating " +"them." + +#: ../../build/NEWS:7977 +msgid "" +"`bpo-23728 `__: binascii.crc_hqx() could " +"return an integer outside of the range 0-0xffff for empty data." +msgstr "" +"`bpo-23728 `__: binascii.crc_hqx() could " +"return an integer outside of the range 0-0xffff for empty data." + +#: ../../build/NEWS:7980 +msgid "" +"`bpo-23887 `__: urllib.error.HTTPError " +"now has a proper repr() representation. Patch by Berker Peksag." +msgstr "" +"`bpo-23887 `__: urllib.error.HTTPError " +"now has a proper repr() representation. Patch by Berker Peksag." + +#: ../../build/NEWS:7983 +msgid "" +"asyncio: New event loop APIs: set_task_factory() and get_task_factory()." +msgstr "" + +#: ../../build/NEWS:7985 +msgid "asyncio: async() function is deprecated in favour of ensure_future()." +msgstr "" + +#: ../../build/NEWS:7987 +msgid "" +"`bpo-24178 `__: asyncio.Lock, Condition, " +"Semaphore, and BoundedSemaphore support new 'async with' syntax. " +"Contributed by Yury Selivanov." +msgstr "" +"`bpo-24178 `__: asyncio.Lock, Condition, " +"Semaphore, and BoundedSemaphore support new 'async with' syntax. " +"Contributed by Yury Selivanov." + +#: ../../build/NEWS:7990 +msgid "" +"`bpo-24179 `__: Support 'async for' for " +"asyncio.StreamReader. Contributed by Yury Selivanov." +msgstr "" +"`bpo-24179 `__: Support 'async for' for " +"asyncio.StreamReader. Contributed by Yury Selivanov." + +#: ../../build/NEWS:7996 +msgid "" +"`bpo-22547 `__: Implement informative " +"__repr__ for inspect.BoundArguments. Contributed by Yury Selivanov." +msgstr "" +"`bpo-22547 `__: Implement informative " +"__repr__ for inspect.BoundArguments. Contributed by Yury Selivanov." + +#: ../../build/NEWS:7999 +msgid "" +"`bpo-24190 `__: Implement inspect." +"BoundArgument.apply_defaults() method. Contributed by Yury Selivanov." +msgstr "" +"`bpo-24190 `__: Implement inspect." +"BoundArgument.apply_defaults() method. Contributed by Yury Selivanov." + +#: ../../build/NEWS:8002 +msgid "" +"`bpo-20691 `__: Add 'follow_wrapped' " +"argument to inspect.Signature.from_callable() and inspect.signature(). " +"Contributed by Yury Selivanov." +msgstr "" +"`bpo-20691 `__: Add 'follow_wrapped' " +"argument to inspect.Signature.from_callable() and inspect.signature(). " +"Contributed by Yury Selivanov." + +#: ../../build/NEWS:8006 +msgid "" +"`bpo-24248 `__: Deprecate inspect." +"Signature.from_function() and inspect.Signature.from_builtin()." +msgstr "" +"`bpo-24248 `__: Deprecate inspect." +"Signature.from_function() and inspect.Signature.from_builtin()." + +#: ../../build/NEWS:8009 +msgid "" +"`bpo-23898 `__: Fix inspect." +"classify_class_attrs() to support attributes with overloaded __eq__ and " +"__bool__. Patch by Mike Bayer." +msgstr "" +"`bpo-23898 `__: Fix inspect." +"classify_class_attrs() to support attributes with overloaded __eq__ and " +"__bool__. Patch by Mike Bayer." + +#: ../../build/NEWS:8012 +msgid "" +"`bpo-24298 `__: Fix inspect.signature() " +"to correctly unwrap wrappers around bound methods." +msgstr "" +"`bpo-24298 `__: Fix inspect.signature() " +"to correctly unwrap wrappers around bound methods." + +#: ../../build/NEWS:8018 +msgid "" +"`bpo-23184 `__: remove unused names and " +"imports in idlelib. Initial patch by Al Sweigart." +msgstr "" +"`bpo-23184 `__: remove unused names and " +"imports in idlelib. Initial patch by Al Sweigart." + +#: ../../build/NEWS:8024 +msgid "" +"`bpo-21520 `__: test_zipfile no longer " +"fails if the word 'bad' appears anywhere in the name of the current " +"directory." +msgstr "" +"`bpo-21520 `__: test_zipfile no longer " +"fails if the word 'bad' appears anywhere in the name of the current " +"directory." + +#: ../../build/NEWS:8027 +msgid "" +"`bpo-9517 `__: Move script_helper into " +"the support package. Patch by Christie Wilson." +msgstr "" +"`bpo-9517 `__: Move script_helper into " +"the support package. Patch by Christie Wilson." + +#: ../../build/NEWS:8033 +msgid "" +"`bpo-22155 `__: Add File Handlers " +"subsection with createfilehandler to tkinter doc. Remove obsolete example " +"from FAQ. Patch by Martin Panter." +msgstr "" +"`bpo-22155 `__: Add File Handlers " +"subsection with createfilehandler to tkinter doc. Remove obsolete example " +"from FAQ. Patch by Martin Panter." + +#: ../../build/NEWS:8036 +msgid "" +"`bpo-24029 `__: Document the name " +"binding behavior for submodule imports." +msgstr "" +"`bpo-24029 `__: Document the name " +"binding behavior for submodule imports." + +#: ../../build/NEWS:8038 +msgid "" +"`bpo-24077 `__: Fix typo in man page for " +"-I command option: -s, not -S" +msgstr "" +"`bpo-24077 `__: Fix typo in man page for " +"-I command option: -s, not -S" + +#: ../../build/NEWS:8046 +msgid "" +"`bpo-24001 `__: Argument Clinic " +"converters now use accept={type} instead of types={'type'} to specify the " +"types the converter accepts." +msgstr "" +"`bpo-24001 `__: Argument Clinic " +"converters now use accept={type} instead of types={'type'} to specify the " +"types the converter accepts." + +#: ../../build/NEWS:8049 +msgid "" +"`bpo-23330 `__: h2py now supports " +"arbitrary filenames in #include." +msgstr "" +"`bpo-23330 `__: h2py now supports " +"arbitrary filenames in #include." + +#: ../../build/NEWS:8051 +msgid "" +"`bpo-24031 `__: make patchcheck now " +"supports git checkouts, too." +msgstr "" +"`bpo-24031 `__: make patchcheck now " +"supports git checkouts, too." + +#: ../../build/NEWS:8055 +msgid "Python 3.5.0 alpha 4" +msgstr "Python 3.5.0 alpha 4" + +#: ../../build/NEWS:8062 +msgid "" +"`bpo-22980 `__: Under Linux, GNU/" +"KFreeBSD and the Hurd, C extensions now include the architecture triplet in " +"the extension name, to make it easy to test builds for different ABIs in the " +"same working tree. Under OS X, the extension name now includes PEP 3149-" +"style information." +msgstr "" +"`bpo-22980 `__: Under Linux, GNU/" +"KFreeBSD and the Hurd, C extensions now include the architecture triplet in " +"the extension name, to make it easy to test builds for different ABIs in the " +"same working tree. Under OS X, the extension name now includes PEP 3149-" +"style information." + +#: ../../build/NEWS:8067 +msgid "" +"`bpo-22631 `__: Added Linux-specific " +"socket constant CAN_RAW_FD_FRAMES. Patch courtesy of Joe Jevnik." +msgstr "" +"`bpo-22631 `__: Added Linux-specific " +"socket constant CAN_RAW_FD_FRAMES. Patch courtesy of Joe Jevnik." + +#: ../../build/NEWS:8070 +msgid "" +"`bpo-23731 `__: Implement PEP 488: " +"removal of .pyo files." +msgstr "" +"`bpo-23731 `__: Implement PEP 488: " +"removal of .pyo files." + +#: ../../build/NEWS:8072 +msgid "" +"`bpo-23726 `__: Don't enable GC for user " +"subclasses of non-GC types that don't add any new fields. Patch by Eugene " +"Toder." +msgstr "" +"`bpo-23726 `__: Don't enable GC for user " +"subclasses of non-GC types that don't add any new fields. Patch by Eugene " +"Toder." + +#: ../../build/NEWS:8075 +msgid "" +"`bpo-23309 `__: Avoid a deadlock at " +"shutdown if a daemon thread is aborted while it is holding a lock to a " +"buffered I/O object, and the main thread tries to use the same I/O object " +"(typically stdout or stderr). A fatal error is emitted instead." +msgstr "" +"`bpo-23309 `__: Avoid a deadlock at " +"shutdown if a daemon thread is aborted while it is holding a lock to a " +"buffered I/O object, and the main thread tries to use the same I/O object " +"(typically stdout or stderr). A fatal error is emitted instead." + +#: ../../build/NEWS:8080 +msgid "" +"`bpo-22977 `__: Fixed formatting Windows " +"error messages on Wine. Patch by Martin Panter." +msgstr "" +"`bpo-22977 `__: Fixed formatting Windows " +"error messages on Wine. Patch by Martin Panter." + +#: ../../build/NEWS:8083 +msgid "" +"`bpo-23466 `__: %c, %o, %x, and %X in " +"bytes formatting now raise TypeError on non-integer input." +msgstr "" +"`bpo-23466 `__: %c, %o, %x, and %X in " +"bytes formatting now raise TypeError on non-integer input." + +#: ../../build/NEWS:8086 +msgid "" +"`bpo-24044 `__: Fix possible null " +"pointer dereference in list.sort in out of memory conditions." +msgstr "" +"`bpo-24044 `__: Fix possible null " +"pointer dereference in list.sort in out of memory conditions." + +#: ../../build/NEWS:8089 +msgid "" +"`bpo-21354 `__: PyCFunction_New function " +"is exposed by python DLL again." +msgstr "" +"`bpo-21354 `__: PyCFunction_New function " +"is exposed by python DLL again." + +#: ../../build/NEWS:8094 +msgid "" +"`bpo-23840 `__: tokenize.open() now " +"closes the temporary binary file on error to fix a resource warning." +msgstr "" +"`bpo-23840 `__: tokenize.open() now " +"closes the temporary binary file on error to fix a resource warning." + +#: ../../build/NEWS:8097 +msgid "" +"`bpo-16914 `__: new debuglevel 2 in " +"smtplib adds timestamps to debug output." +msgstr "" +"`bpo-16914 `__: new debuglevel 2 in " +"smtplib adds timestamps to debug output." + +#: ../../build/NEWS:8099 +msgid "" +"`bpo-7159 `__: urllib.request now " +"supports sending auth credentials automatically after the first 401. This " +"enhancement is a superset of the enhancement from `bpo-19494 `__ and supersedes that change." +msgstr "" +"`bpo-7159 `__: urllib.request now " +"supports sending auth credentials automatically after the first 401. This " +"enhancement is a superset of the enhancement from `bpo-19494 `__ and supersedes that change." + +#: ../../build/NEWS:8103 +msgid "" +"`bpo-23703 `__: Fix a regression in " +"urljoin() introduced in 901e4e52b20a. Patch by Demian Brecht." +msgstr "" +"`bpo-23703 `__: Fix a regression in " +"urljoin() introduced in 901e4e52b20a. Patch by Demian Brecht." + +#: ../../build/NEWS:8106 +msgid "" +"`bpo-4254 `__: Adds _curses." +"update_lines_cols(). Patch by Arnon Yaari" +msgstr "" +"`bpo-4254 `__: Adds _curses." +"update_lines_cols(). Patch by Arnon Yaari" + +#: ../../build/NEWS:8108 +msgid "" +"`bpo-19933 `__: Provide default argument " +"for ndigits in round. Patch by Vajrasky Kok." +msgstr "" +"`bpo-19933 `__: Provide default argument " +"for ndigits in round. Patch by Vajrasky Kok." + +#: ../../build/NEWS:8111 +msgid "" +"`bpo-23193 `__: Add a numeric_owner " +"parameter to tarfile.TarFile.extract and tarfile.TarFile.extractall. Patch " +"by Michael Vogt and Eric Smith." +msgstr "" +"`bpo-23193 `__: Add a numeric_owner " +"parameter to tarfile.TarFile.extract and tarfile.TarFile.extractall. Patch " +"by Michael Vogt and Eric Smith." + +#: ../../build/NEWS:8114 +msgid "" +"`bpo-23342 `__: Add a subprocess.run() " +"function than returns a CalledProcess instance for a more consistent API " +"than the existing call* functions." +msgstr "" +"`bpo-23342 `__: Add a subprocess.run() " +"function than returns a CalledProcess instance for a more consistent API " +"than the existing call* functions." + +#: ../../build/NEWS:8117 +msgid "" +"`bpo-21217 `__: inspect.getsourcelines() " +"now tries to compute the start and end lines from the code object, fixing an " +"issue when a lambda function is used as decorator argument. Patch by Thomas " +"Ballinger and Allison Kaptur." +msgstr "" +"`bpo-21217 `__: inspect.getsourcelines() " +"now tries to compute the start and end lines from the code object, fixing an " +"issue when a lambda function is used as decorator argument. Patch by Thomas " +"Ballinger and Allison Kaptur." + +#: ../../build/NEWS:8121 +msgid "" +"`bpo-24521 `__: Fix possible integer " +"overflows in the pickle module." +msgstr "" +"`bpo-24521 `__: Fix possible integer " +"overflows in the pickle module." + +#: ../../build/NEWS:8123 +msgid "" +"`bpo-22931 `__: Allow '[' and ']' in " +"cookie values." +msgstr "" +"`bpo-22931 `__: Allow '[' and ']' in " +"cookie values." + +#: ../../build/NEWS:8125 +msgid "The keywords attribute of functools.partial is now always a dictionary." +msgstr "" + +#: ../../build/NEWS:8127 +msgid "" +"`bpo-23811 `__: Add missing newline to " +"the PyCompileError error message. Patch by Alex Shkop." +msgstr "" +"`bpo-23811 `__: Add missing newline to " +"the PyCompileError error message. Patch by Alex Shkop." + +#: ../../build/NEWS:8130 +msgid "" +"`bpo-21116 `__: Avoid blowing memory " +"when allocating a multiprocessing shared array that's larger than 50% of the " +"available RAM. Patch by Médéric Boquien." +msgstr "" +"`bpo-21116 `__: Avoid blowing memory " +"when allocating a multiprocessing shared array that's larger than 50% of the " +"available RAM. Patch by Médéric Boquien." + +#: ../../build/NEWS:8134 +msgid "" +"`bpo-22982 `__: Improve BOM handling " +"when seeking to multiple positions of a writable text file." +msgstr "" +"`bpo-22982 `__: Improve BOM handling " +"when seeking to multiple positions of a writable text file." + +#: ../../build/NEWS:8137 +msgid "" +"`bpo-23464 `__: Removed deprecated " +"asyncio JoinableQueue." +msgstr "" +"`bpo-23464 `__: Removed deprecated " +"asyncio JoinableQueue." + +#: ../../build/NEWS:8139 +msgid "" +"`bpo-23529 `__: Limit the size of " +"decompressed data when reading from GzipFile, BZ2File or LZMAFile. This " +"defeats denial of service attacks using compressed bombs (i.e. compressed " +"payloads which decompress to a huge size). Patch by Martin Panter and " +"Nikolaus Rath." +msgstr "" +"`bpo-23529 `__: Limit the size of " +"decompressed data when reading from GzipFile, BZ2File or LZMAFile. This " +"defeats denial of service attacks using compressed bombs (i.e. compressed " +"payloads which decompress to a huge size). Patch by Martin Panter and " +"Nikolaus Rath." + +#: ../../build/NEWS:8144 +msgid "" +"`bpo-21859 `__: Added Python " +"implementation of io.FileIO." +msgstr "" +"`bpo-21859 `__: Added Python " +"implementation of io.FileIO." + +#: ../../build/NEWS:8146 +msgid "" +"`bpo-23865 `__: close() methods in " +"multiple modules now are idempotent and more robust at shutdown. If they " +"need to release multiple resources, all are released even if errors occur." +msgstr "" +"`bpo-23865 `__: close() methods in " +"multiple modules now are idempotent and more robust at shutdown. If they " +"need to release multiple resources, all are released even if errors occur." + +#: ../../build/NEWS:8153 +msgid "" +"`bpo-10838 `__: The subprocess now " +"module includes SubprocessError and TimeoutError in its list of exported " +"names for the users wild enough to use ``from subprocess import *``." +msgstr "" +"`bpo-10838 `__: The subprocess now " +"module includes SubprocessError and TimeoutError in its list of exported " +"names for the users wild enough to use ``from subprocess import *``." + +#: ../../build/NEWS:8157 +msgid "" +"`bpo-23411 `__: Added DefragResult, " +"ParseResult, SplitResult, DefragResultBytes, ParseResultBytes, and " +"SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter." +msgstr "" +"`bpo-23411 `__: Added DefragResult, " +"ParseResult, SplitResult, DefragResultBytes, ParseResultBytes, and " +"SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter." + +#: ../../build/NEWS:8161 +msgid "" +"`bpo-23881 `__: urllib.request." +"ftpwrapper constructor now closes the socket if the FTP connection failed to " +"fix a ResourceWarning." +msgstr "" +"`bpo-23881 `__: urllib.request." +"ftpwrapper constructor now closes the socket if the FTP connection failed to " +"fix a ResourceWarning." + +#: ../../build/NEWS:8164 +msgid "" +"`bpo-23853 `__: :meth:`socket.socket." +"sendall` does no more reset the socket timeout each time data is sent " +"successfully. The socket timeout is now the maximum total duration to send " +"all data." +msgstr "" +"`bpo-23853 `__: :meth:`socket.socket." +"sendall` does no more reset the socket timeout each time data is sent " +"successfully. The socket timeout is now the maximum total duration to send " +"all data." + +#: ../../build/NEWS:8168 +msgid "" +"`bpo-22721 `__: An order of multiline " +"pprint output of set or dict containing orderable and non-orderable elements " +"no longer depends on iteration order of set or dict." +msgstr "" +"`bpo-22721 `__: An order of multiline " +"pprint output of set or dict containing orderable and non-orderable elements " +"no longer depends on iteration order of set or dict." + +#: ../../build/NEWS:8177 +msgid "" +"`bpo-10590 `__: xml.sax.parseString() " +"now supports string argument." +msgstr "" +"`bpo-10590 `__: xml.sax.parseString() " +"now supports string argument." + +#: ../../build/NEWS:8179 +msgid "" +"`bpo-23338 `__: Fixed formatting ctypes " +"error messages on Cygwin. Patch by Makoto Kato." +msgstr "" +"`bpo-23338 `__: Fixed formatting ctypes " +"error messages on Cygwin. Patch by Makoto Kato." + +#: ../../build/NEWS:8182 +msgid "" +"`bpo-15582 `__: inspect.getdoc() now " +"follows inheritance chains." +msgstr "" +"`bpo-15582 `__: inspect.getdoc() now " +"follows inheritance chains." + +#: ../../build/NEWS:8184 +msgid "" +"`bpo-2175 `__: SAX parsers now support a " +"character stream of InputSource object." +msgstr "" +"`bpo-2175 `__: SAX parsers now support a " +"character stream of InputSource object." + +#: ../../build/NEWS:8187 +msgid "" +"`bpo-16840 `__: Tkinter now supports 64-" +"bit integers added in Tcl 8.4 and arbitrary precision integers added in Tcl " +"8.5." +msgstr "" +"`bpo-16840 `__: Tkinter now supports 64-" +"bit integers added in Tcl 8.4 and arbitrary precision integers added in Tcl " +"8.5." + +#: ../../build/NEWS:8190 +msgid "" +"`bpo-23834 `__: Fix socket.sendto(), use " +"the C Py_ssize_t type to store the result of sendto() instead of the C int " +"type." +msgstr "" +"`bpo-23834 `__: Fix socket.sendto(), use " +"the C Py_ssize_t type to store the result of sendto() instead of the C int " +"type." + +#: ../../build/NEWS:8193 +msgid "" +"`bpo-23618 `__: :meth:`socket.socket." +"connect` now waits until the connection completes instead of raising :exc:" +"`InterruptedError` if the connection is interrupted by signals, signal " +"handlers don't raise an exception and the socket is blocking or has a " +"timeout. :meth:`socket.socket.connect` still raise :exc:`InterruptedError` " +"for non-blocking sockets." +msgstr "" +"`bpo-23618 `__: :meth:`socket.socket." +"connect` now waits until the connection completes instead of raising :exc:" +"`InterruptedError` if the connection is interrupted by signals, signal " +"handlers don't raise an exception and the socket is blocking or has a " +"timeout. :meth:`socket.socket.connect` still raise :exc:`InterruptedError` " +"for non-blocking sockets." + +#: ../../build/NEWS:8199 +msgid "" +"`bpo-21526 `__: Tkinter now supports new " +"boolean type in Tcl 8.5." +msgstr "" +"`bpo-21526 `__: Tkinter now supports new " +"boolean type in Tcl 8.5." + +#: ../../build/NEWS:8201 +msgid "" +"`bpo-23836 `__: Fix the faulthandler " +"module to handle reentrant calls to its signal handlers." +msgstr "" +"`bpo-23836 `__: Fix the faulthandler " +"module to handle reentrant calls to its signal handlers." + +#: ../../build/NEWS:8204 +msgid "" +"`bpo-23838 `__: linecache now clears the " +"cache and returns an empty result on MemoryError." +msgstr "" +"`bpo-23838 `__: linecache now clears the " +"cache and returns an empty result on MemoryError." + +#: ../../build/NEWS:8207 +msgid "" +"`bpo-10395 `__: Added os.path." +"commonpath(). Implemented in posixpath and ntpath. Based on patch by Rafik " +"Draoui." +msgstr "" +"`bpo-10395 `__: Added os.path." +"commonpath(). Implemented in posixpath and ntpath. Based on patch by Rafik " +"Draoui." + +#: ../../build/NEWS:8210 +msgid "" +"`bpo-23611 `__: Serializing more " +"\"lookupable\" objects (such as unbound methods or nested classes) now are " +"supported with pickle protocols < 4." +msgstr "" +"`bpo-23611 `__: Serializing more " +"\"lookupable\" objects (such as unbound methods or nested classes) now are " +"supported with pickle protocols < 4." + +#: ../../build/NEWS:8213 +msgid "" +"`bpo-13583 `__: sqlite3.Row now supports " +"slice indexing." +msgstr "" +"`bpo-13583 `__: sqlite3.Row now supports " +"slice indexing." + +#: ../../build/NEWS:8215 +msgid "" +"`bpo-18473 `__: Fixed 2to3 and 3to2 " +"compatible pickle mappings. Fixed ambigious reverse mappings. Added many " +"new mappings. Import mapping is no longer applied to modules already mapped " +"with full name mapping." +msgstr "" +"`bpo-18473 `__: Fixed 2to3 and 3to2 " +"compatible pickle mappings. Fixed ambigious reverse mappings. Added many " +"new mappings. Import mapping is no longer applied to modules already mapped " +"with full name mapping." + +#: ../../build/NEWS:8219 +msgid "" +"`bpo-23485 `__: select.select() is now " +"retried automatically with the recomputed timeout when interrupted by a " +"signal, except if the signal handler raises an exception. This change is " +"part of the PEP 475." +msgstr "" +"`bpo-23485 `__: select.select() is now " +"retried automatically with the recomputed timeout when interrupted by a " +"signal, except if the signal handler raises an exception. This change is " +"part of the PEP 475." + +#: ../../build/NEWS:8223 +msgid "" +"`bpo-23752 `__: When built from an " +"existing file descriptor, io.FileIO() now only calls fstat() once. Before " +"fstat() was called twice, which was not necessary." +msgstr "" +"`bpo-23752 `__: When built from an " +"existing file descriptor, io.FileIO() now only calls fstat() once. Before " +"fstat() was called twice, which was not necessary." + +#: ../../build/NEWS:8227 +msgid "" +"`bpo-23704 `__: collections.deque() " +"objects now support __add__, __mul__, and __imul__()." +msgstr "" +"`bpo-23704 `__: collections.deque() " +"objects now support __add__, __mul__, and __imul__()." + +#: ../../build/NEWS:8230 +msgid "" +"`bpo-23171 `__: csv.Writer.writerow() " +"now supports arbitrary iterables." +msgstr "" +"`bpo-23171 `__: csv.Writer.writerow() " +"now supports arbitrary iterables." + +#: ../../build/NEWS:8232 +msgid "" +"`bpo-23745 `__: The new email header " +"parser now handles duplicate MIME parameter names without error, similar to " +"how get_param behaves." +msgstr "" +"`bpo-23745 `__: The new email header " +"parser now handles duplicate MIME parameter names without error, similar to " +"how get_param behaves." + +#: ../../build/NEWS:8235 +msgid "" +"`bpo-22117 `__: Fix os.utime(), it now " +"rounds the timestamp towards minus infinity (-inf) instead of rounding " +"towards zero." +msgstr "" +"`bpo-22117 `__: Fix os.utime(), it now " +"rounds the timestamp towards minus infinity (-inf) instead of rounding " +"towards zero." + +#: ../../build/NEWS:8238 +msgid "" +"`bpo-23310 `__: Fix MagicMock's " +"initializer to work with __methods__, just like configure_mock(). Patch by " +"Kasia Jachim." +msgstr "" +"`bpo-23310 `__: Fix MagicMock's " +"initializer to work with __methods__, just like configure_mock(). Patch by " +"Kasia Jachim." + +#: ../../build/NEWS:8244 +msgid "" +"`bpo-23817 `__: FreeBSD now uses \"1.0\" " +"in the SOVERSION as other operating systems, instead of just \"1\"." +msgstr "" +"`bpo-23817 `__: FreeBSD now uses \"1.0\" " +"in the SOVERSION as other operating systems, instead of just \"1\"." + +#: ../../build/NEWS:8247 +msgid "" +"`bpo-23501 `__: Argument Clinic now " +"generates code into separate files by default." +msgstr "" +"`bpo-23501 `__: Argument Clinic now " +"generates code into separate files by default." + +#: ../../build/NEWS:8253 +msgid "" +"`bpo-23799 `__: Added test.support." +"start_threads() for running and cleaning up multiple threads." +msgstr "" +"`bpo-23799 `__: Added test.support." +"start_threads() for running and cleaning up multiple threads." + +#: ../../build/NEWS:8256 +msgid "" +"`bpo-22390 `__: test.regrtest now emits " +"a warning if temporary files or directories are left after running a test." +msgstr "" +"`bpo-22390 `__: test.regrtest now emits " +"a warning if temporary files or directories are left after running a test." + +#: ../../build/NEWS:8265 +msgid "" +"`bpo-23935 `__: Argument Clinic's " +"understanding of format units accepting bytes, bytearrays, and buffers is " +"now consistent with both the documentation and the implementation." +msgstr "" +"`bpo-23935 `__: Argument Clinic's " +"understanding of format units accepting bytes, bytearrays, and buffers is " +"now consistent with both the documentation and the implementation." + +#: ../../build/NEWS:8269 +msgid "" +"`bpo-23944 `__: Argument Clinic now " +"wraps long impl prototypes at column 78." +msgstr "" +"`bpo-23944 `__: Argument Clinic now " +"wraps long impl prototypes at column 78." + +#: ../../build/NEWS:8271 +msgid "" +"`bpo-20586 `__: Argument Clinic now " +"ensures that functions without docstrings have signatures." +msgstr "" +"`bpo-20586 `__: Argument Clinic now " +"ensures that functions without docstrings have signatures." + +#: ../../build/NEWS:8274 +msgid "" +"`bpo-23492 `__: Argument Clinic now " +"generates argument parsing code with PyArg_Parse instead of PyArg_ParseTuple " +"if possible." +msgstr "" +"`bpo-23492 `__: Argument Clinic now " +"generates argument parsing code with PyArg_Parse instead of PyArg_ParseTuple " +"if possible." + +#: ../../build/NEWS:8277 +msgid "" +"`bpo-23500 `__: Argument Clinic is now " +"smarter about generating the \"#ifndef\" (empty) definition of the methoddef " +"macro: it's only generated once, even if Argument Clinic processes the same " +"symbol multiple times, and it's emitted at the end of all processing rather " +"than immediately after the first use." +msgstr "" +"`bpo-23500 `__: Argument Clinic is now " +"smarter about generating the \"#ifndef\" (empty) definition of the methoddef " +"macro: it's only generated once, even if Argument Clinic processes the same " +"symbol multiple times, and it's emitted at the end of all processing rather " +"than immediately after the first use." + +#: ../../build/NEWS:8286 +msgid "" +"`bpo-23998 `__: PyImport_ReInitLock() " +"now checks for lock allocation error" +msgstr "" +"`bpo-23998 `__: PyImport_ReInitLock() " +"now checks for lock allocation error" + +#: ../../build/NEWS:8290 +msgid "Python 3.5.0 alpha 3" +msgstr "Python 3.5.0 alpha 3" + +#: ../../build/NEWS:8297 +msgid "" +"`bpo-23573 `__: Increased performance of " +"string search operations (str.find, str.index, str.count, the in operator, " +"str.split, str.partition) with arguments of different kinds (UCS1, UCS2, " +"UCS4)." +msgstr "" +"`bpo-23573 `__: Increased performance of " +"string search operations (str.find, str.index, str.count, the in operator, " +"str.split, str.partition) with arguments of different kinds (UCS1, UCS2, " +"UCS4)." + +#: ../../build/NEWS:8301 +msgid "" +"`bpo-23753 `__: Python doesn't support " +"anymore platforms without stat() or fstat(), these functions are always " +"required." +msgstr "" +"`bpo-23753 `__: Python doesn't support " +"anymore platforms without stat() or fstat(), these functions are always " +"required." + +#: ../../build/NEWS:8304 +msgid "" +"`bpo-23681 `__: The -b option now " +"affects comparisons of bytes with int." +msgstr "" +"`bpo-23681 `__: The -b option now " +"affects comparisons of bytes with int." + +#: ../../build/NEWS:8309 +msgid "" +"`bpo-23192 `__: Fixed generator " +"lambdas. Patch by Bruno Cauet." +msgstr "" +"`bpo-23192 `__: Fixed generator " +"lambdas. Patch by Bruno Cauet." + +#: ../../build/NEWS:8311 +msgid "" +"`bpo-23629 `__: Fix the default " +"__sizeof__ implementation for variable-sized objects." +msgstr "" +"`bpo-23629 `__: Fix the default " +"__sizeof__ implementation for variable-sized objects." + +#: ../../build/NEWS:8320 +msgid "" +"`bpo-23792 `__: Ignore KeyboardInterrupt " +"when the pydoc pager is active. This mimics the behavior of the standard " +"unix pagers, and prevents pipepager from shutting down while the pager " +"itself is still running." +msgstr "" +"`bpo-23792 `__: Ignore KeyboardInterrupt " +"when the pydoc pager is active. This mimics the behavior of the standard " +"unix pagers, and prevents pipepager from shutting down while the pager " +"itself is still running." + +#: ../../build/NEWS:8324 +msgid "" +"`bpo-23775 `__: pprint() of OrderedDict " +"now outputs the same representation as repr()." +msgstr "" +"`bpo-23775 `__: pprint() of OrderedDict " +"now outputs the same representation as repr()." + +#: ../../build/NEWS:8327 +msgid "" +"`bpo-23765 `__: Removed IsBadStringPtr " +"calls in ctypes" +msgstr "" +"`bpo-23765 `__: Removed IsBadStringPtr " +"calls in ctypes" + +#: ../../build/NEWS:8329 +msgid "" +"`bpo-22364 `__: Improved some re error " +"messages using regex for hints." +msgstr "" +"`bpo-22364 `__: Improved some re error " +"messages using regex for hints." + +#: ../../build/NEWS:8331 +msgid "" +"`bpo-23742 `__: ntpath.expandvars() no " +"longer loses unbalanced single quotes." +msgstr "" +"`bpo-23742 `__: ntpath.expandvars() no " +"longer loses unbalanced single quotes." + +#: ../../build/NEWS:8333 +msgid "" +"`bpo-21717 `__: The zipfile.ZipFile.open " +"function now supports 'x' (exclusive creation) mode." +msgstr "" +"`bpo-21717 `__: The zipfile.ZipFile.open " +"function now supports 'x' (exclusive creation) mode." + +#: ../../build/NEWS:8336 +msgid "" +"`bpo-21802 `__: The reader in " +"BufferedRWPair now is closed even when closing writer failed in " +"BufferedRWPair.close()." +msgstr "" +"`bpo-21802 `__: The reader in " +"BufferedRWPair now is closed even when closing writer failed in " +"BufferedRWPair.close()." + +#: ../../build/NEWS:8339 +msgid "" +"`bpo-23622 `__: Unknown escapes in " +"regular expressions that consist of ``'\\'`` and ASCII letter now raise a " +"deprecation warning and will be forbidden in Python 3.6." +msgstr "" +"`bpo-23622 `__: Unknown escapes in " +"regular expressions that consist of ``'\\'`` and ASCII letter now raise a " +"deprecation warning and will be forbidden in Python 3.6." + +#: ../../build/NEWS:8343 +msgid "" +"`bpo-23671 `__: string.Template now " +"allows specifying the \"self\" parameter as a keyword argument. string." +"Formatter now allows specifying the \"self\" and the \"format_string\" " +"parameters as keyword arguments." +msgstr "" +"`bpo-23671 `__: string.Template now " +"allows specifying the \"self\" parameter as a keyword argument. string." +"Formatter now allows specifying the \"self\" and the \"format_string\" " +"parameters as keyword arguments." + +#: ../../build/NEWS:8347 +msgid "" +"`bpo-23502 `__: The pprint module now " +"supports mapping proxies." +msgstr "" +"`bpo-23502 `__: The pprint module now " +"supports mapping proxies." + +#: ../../build/NEWS:8349 +msgid "" +"`bpo-17530 `__: pprint now wraps long " +"bytes objects and bytearrays." +msgstr "" +"`bpo-17530 `__: pprint now wraps long " +"bytes objects and bytearrays." + +#: ../../build/NEWS:8351 +msgid "" +"`bpo-22687 `__: Fixed some corner cases " +"in breaking words in tetxtwrap. Got rid of quadratic complexity in breaking " +"long words." +msgstr "" +"`bpo-22687 `__: Fixed some corner cases " +"in breaking words in tetxtwrap. Got rid of quadratic complexity in breaking " +"long words." + +#: ../../build/NEWS:8354 +msgid "" +"`bpo-4727 `__: The copy module now uses " +"pickle protocol 4 (PEP 3154) and supports copying of instances of classes " +"whose __new__ method takes keyword-only arguments." +msgstr "" +"`bpo-4727 `__: The copy module now uses " +"pickle protocol 4 (PEP 3154) and supports copying of instances of classes " +"whose __new__ method takes keyword-only arguments." + +#: ../../build/NEWS:8358 +msgid "" +"`bpo-23491 `__: Added a zipapp module to " +"support creating executable zip file archives of Python code. Registered \"." +"pyz\" and \".pyzw\" extensions on Windows for these archives (PEP 441)." +msgstr "" +"`bpo-23491 `__: Added a zipapp module to " +"support creating executable zip file archives of Python code. Registered \"." +"pyz\" and \".pyzw\" extensions on Windows for these archives (PEP 441)." + +#: ../../build/NEWS:8362 +msgid "" +"`bpo-23657 `__: Avoid explicit checks " +"for str in zipapp, adding support for pathlib.Path objects as arguments." +msgstr "" +"`bpo-23657 `__: Avoid explicit checks " +"for str in zipapp, adding support for pathlib.Path objects as arguments." + +#: ../../build/NEWS:8365 +msgid "" +"`bpo-23688 `__: Added support of " +"arbitrary bytes-like objects and avoided unnecessary copying of memoryview " +"in gzip.GzipFile.write(). Original patch by Wolfgang Maier." +msgstr "" +"`bpo-23688 `__: Added support of " +"arbitrary bytes-like objects and avoided unnecessary copying of memoryview " +"in gzip.GzipFile.write(). Original patch by Wolfgang Maier." + +#: ../../build/NEWS:8369 +msgid "" +"`bpo-23252 `__: Added support for " +"writing ZIP files to unseekable streams." +msgstr "" +"`bpo-23252 `__: Added support for " +"writing ZIP files to unseekable streams." + +#: ../../build/NEWS:8371 +msgid "" +"`bpo-23647 `__: Increase impalib's " +"MAXLINE to accommodate modern mailbox sizes." +msgstr "" +"`bpo-23647 `__: Increase impalib's " +"MAXLINE to accommodate modern mailbox sizes." + +#: ../../build/NEWS:8373 +msgid "" +"`bpo-23539 `__: If body is None, http." +"client.HTTPConnection.request now sets Content-Length to 0 for PUT, POST, " +"and PATCH headers to avoid 411 errors from some web servers." +msgstr "" +"`bpo-23539 `__: If body is None, http." +"client.HTTPConnection.request now sets Content-Length to 0 for PUT, POST, " +"and PATCH headers to avoid 411 errors from some web servers." + +#: ../../build/NEWS:8377 +msgid "" +"`bpo-22351 `__: The nntplib.NNTP " +"constructor no longer leaves the connection and socket open until the " +"garbage collector cleans them up. Patch by Martin Panter." +msgstr "" +"`bpo-22351 `__: The nntplib.NNTP " +"constructor no longer leaves the connection and socket open until the " +"garbage collector cleans them up. Patch by Martin Panter." + +#: ../../build/NEWS:8381 +msgid "" +"`bpo-23704 `__: collections.deque() " +"objects now support methods for index(), insert(), and copy(). This allows " +"deques to be registered as a MutableSequence and it improves their " +"substitutability for lists." +msgstr "" +"`bpo-23704 `__: collections.deque() " +"objects now support methods for index(), insert(), and copy(). This allows " +"deques to be registered as a MutableSequence and it improves their " +"substitutability for lists." + +#: ../../build/NEWS:8385 +msgid "" +"`bpo-23715 `__: :func:`signal." +"sigwaitinfo` and :func:`signal.sigtimedwait` are now retried when " +"interrupted by a signal not in the *sigset* parameter, if the signal handler " +"does not raise an exception. signal.sigtimedwait() recomputes the timeout " +"with a monotonic clock when it is retried." +msgstr "" +"`bpo-23715 `__: :func:`signal." +"sigwaitinfo` and :func:`signal.sigtimedwait` are now retried when " +"interrupted by a signal not in the *sigset* parameter, if the signal handler " +"does not raise an exception. signal.sigtimedwait() recomputes the timeout " +"with a monotonic clock when it is retried." + +#: ../../build/NEWS:8390 +msgid "" +"`bpo-23001 `__: Few functions in modules " +"mmap, ossaudiodev, socket, ssl, and codecs, that accepted only read-only " +"bytes-like object now accept writable bytes-like object too." +msgstr "" +"`bpo-23001 `__: Few functions in modules " +"mmap, ossaudiodev, socket, ssl, and codecs, that accepted only read-only " +"bytes-like object now accept writable bytes-like object too." + +#: ../../build/NEWS:8394 +msgid "" +"`bpo-23646 `__: If time.sleep() is " +"interrupted by a signal, the sleep is now retried with the recomputed delay, " +"except if the signal handler raises an exception (PEP 475)." +msgstr "" +"`bpo-23646 `__: If time.sleep() is " +"interrupted by a signal, the sleep is now retried with the recomputed delay, " +"except if the signal handler raises an exception (PEP 475)." + +#: ../../build/NEWS:8398 +msgid "" +"`bpo-23136 `__: _strptime now uniformly " +"handles all days in week 0, including Dec 30 of previous year. Based on " +"patch by Jim Carroll." +msgstr "" +"`bpo-23136 `__: _strptime now uniformly " +"handles all days in week 0, including Dec 30 of previous year. Based on " +"patch by Jim Carroll." + +#: ../../build/NEWS:8401 +msgid "" +"`bpo-23700 `__: Iterator of " +"NamedTemporaryFile now keeps a reference to NamedTemporaryFile instance. " +"Patch by Bohuslav Kabrda." +msgstr "" +"`bpo-23700 `__: Iterator of " +"NamedTemporaryFile now keeps a reference to NamedTemporaryFile instance. " +"Patch by Bohuslav Kabrda." + +#: ../../build/NEWS:8404 +msgid "" +"`bpo-22903 `__: The fake test case " +"created by unittest.loader when it fails importing a test module is now " +"picklable." +msgstr "" +"`bpo-22903 `__: The fake test case " +"created by unittest.loader when it fails importing a test module is now " +"picklable." + +#: ../../build/NEWS:8407 +msgid "" +"`bpo-22181 `__: On Linux, os.urandom() " +"now uses the new getrandom() syscall if available, syscall introduced in the " +"Linux kernel 3.17. It is more reliable and more secure, because it avoids " +"the need of a file descriptor and waits until the kernel has enough entropy." +msgstr "" +"`bpo-22181 `__: On Linux, os.urandom() " +"now uses the new getrandom() syscall if available, syscall introduced in the " +"Linux kernel 3.17. It is more reliable and more secure, because it avoids " +"the need of a file descriptor and waits until the kernel has enough entropy." + +#: ../../build/NEWS:8412 +msgid "" +"`bpo-2211 `__: Updated the implementation " +"of the http.cookies.Morsel class. Setting attributes key, value and " +"coded_value directly now is deprecated. update() and setdefault() now " +"transform and check keys. Comparing for equality now takes into account " +"attributes key, value and coded_value. copy() now returns a Morsel, not a " +"dict. repr() now contains all attributes. Optimized checking keys and " +"quoting values. Added new tests. Original patch by Demian Brecht." +msgstr "" +"`bpo-2211 `__: Updated the implementation " +"of the http.cookies.Morsel class. Setting attributes key, value and " +"coded_value directly now is deprecated. update() and setdefault() now " +"transform and check keys. Comparing for equality now takes into account " +"attributes key, value and coded_value. copy() now returns a Morsel, not a " +"dict. repr() now contains all attributes. Optimized checking keys and " +"quoting values. Added new tests. Original patch by Demian Brecht." + +#: ../../build/NEWS:8420 +msgid "" +"`bpo-18983 `__: Allow selection of " +"output units in timeit. Patch by Julian Gindi." +msgstr "" +"`bpo-18983 `__: Allow selection of " +"output units in timeit. Patch by Julian Gindi." + +#: ../../build/NEWS:8423 +msgid "" +"`bpo-23631 `__: Fix traceback." +"format_list when a traceback has been mutated." +msgstr "" +"`bpo-23631 `__: Fix traceback." +"format_list when a traceback has been mutated." + +#: ../../build/NEWS:8425 +msgid "" +"`bpo-23568 `__: Add rdivmod support to " +"MagicMock() objects. Patch by Håkan Lövdahl." +msgstr "" +"`bpo-23568 `__: Add rdivmod support to " +"MagicMock() objects. Patch by Håkan Lövdahl." + +#: ../../build/NEWS:8428 +msgid "" +"`bpo-2052 `__: Add charset parameter to " +"HtmlDiff.make_file()." +msgstr "" +"`bpo-2052 `__: Add charset parameter to " +"HtmlDiff.make_file()." + +#: ../../build/NEWS:8430 +msgid "" +"`bpo-23668 `__: Support os.truncate and " +"os.ftruncate on Windows." +msgstr "" +"`bpo-23668 `__: Support os.truncate and " +"os.ftruncate on Windows." + +#: ../../build/NEWS:8432 +msgid "" +"`bpo-23138 `__: Fixed parsing cookies " +"with absent keys or values in cookiejar. Patch by Demian Brecht." +msgstr "" +"`bpo-23138 `__: Fixed parsing cookies " +"with absent keys or values in cookiejar. Patch by Demian Brecht." + +#: ../../build/NEWS:8435 +msgid "" +"`bpo-23051 `__: multiprocessing.Pool " +"methods imap() and imap_unordered() now handle exceptions raised by an " +"iterator. Patch by Alon Diamant and Davin Potts." +msgstr "" +"`bpo-23051 `__: multiprocessing.Pool " +"methods imap() and imap_unordered() now handle exceptions raised by an " +"iterator. Patch by Alon Diamant and Davin Potts." + +#: ../../build/NEWS:8439 +msgid "" +"`bpo-23581 `__: Add matmul support to " +"MagicMock. Patch by Håkan Lövdahl." +msgstr "" +"`bpo-23581 `__: Add matmul support to " +"MagicMock. Patch by Håkan Lövdahl." + +#: ../../build/NEWS:8441 +msgid "" +"`bpo-23566 `__: enable(), register(), " +"dump_traceback() and dump_traceback_later() functions of faulthandler now " +"accept file descriptors. Patch by Wei Wu." +msgstr "" +"`bpo-23566 `__: enable(), register(), " +"dump_traceback() and dump_traceback_later() functions of faulthandler now " +"accept file descriptors. Patch by Wei Wu." + +#: ../../build/NEWS:8445 +msgid "" +"`bpo-22928 `__: Disabled HTTP header " +"injections in http.client. Original patch by Demian Brecht." +msgstr "" +"`bpo-22928 `__: Disabled HTTP header " +"injections in http.client. Original patch by Demian Brecht." + +#: ../../build/NEWS:8451 +msgid "" +"`bpo-23605 `__: os.walk() now calls os." +"scandir() instead of os.listdir(). The usage of os.scandir() reduces the " +"number of calls to os.stat(). Initial patch written by Ben Hoyt." +msgstr "" +"`bpo-23605 `__: os.walk() now calls os." +"scandir() instead of os.listdir(). The usage of os.scandir() reduces the " +"number of calls to os.stat(). Initial patch written by Ben Hoyt." + +#: ../../build/NEWS:8458 +msgid "" +"`bpo-23585 `__: make patchcheck will " +"ensure the interpreter is built." +msgstr "" +"`bpo-23585 `__: make patchcheck will " +"ensure the interpreter is built." + +#: ../../build/NEWS:8463 +msgid "" +"`bpo-23583 `__: Added tests for standard " +"IO streams in IDLE." +msgstr "" +"`bpo-23583 `__: Added tests for standard " +"IO streams in IDLE." + +#: ../../build/NEWS:8465 +msgid "" +"`bpo-22289 `__: Prevent test_urllib2net " +"failures due to ftp connection timeout." +msgstr "" +"`bpo-22289 `__: Prevent test_urllib2net " +"failures due to ftp connection timeout." + +#: ../../build/NEWS:8470 +msgid "" +"`bpo-22826 `__: The result of open() in " +"Tools/freeze/bkfile.py is now better compatible with regular files (in " +"particular it now supports the context management protocol)." +msgstr "" +"`bpo-22826 `__: The result of open() in " +"Tools/freeze/bkfile.py is now better compatible with regular files (in " +"particular it now supports the context management protocol)." + +#: ../../build/NEWS:8483 +msgid "" +"`bpo-23571 `__: PyObject_Call() and " +"PyCFunction_Call() now raise a SystemError if a function returns a result " +"and raises an exception. The SystemError is chained to the previous " +"exception." +msgstr "" +"`bpo-23571 `__: PyObject_Call() and " +"PyCFunction_Call() now raise a SystemError if a function returns a result " +"and raises an exception. The SystemError is chained to the previous " +"exception." + +#: ../../build/NEWS:8490 +msgid "" +"`bpo-22524 `__: New os.scandir() " +"function, part of the PEP 471: \"os.scandir() function -- a better and " +"faster directory iterator\". Patch written by Ben Hoyt." +msgstr "" +"`bpo-22524 `__: New os.scandir() " +"function, part of the PEP 471: \"os.scandir() function -- a better and " +"faster directory iterator\". Patch written by Ben Hoyt." + +#: ../../build/NEWS:8494 +msgid "" +"`bpo-23103 `__: Reduced the memory " +"consumption of IPv4Address and IPv6Address." +msgstr "" +"`bpo-23103 `__: Reduced the memory " +"consumption of IPv4Address and IPv6Address." + +#: ../../build/NEWS:8496 +msgid "" +"`bpo-21793 `__: BaseHTTPRequestHandler " +"again logs response code as numeric, not as stringified enum. Patch by " +"Demian Brecht." +msgstr "" +"`bpo-21793 `__: BaseHTTPRequestHandler " +"again logs response code as numeric, not as stringified enum. Patch by " +"Demian Brecht." + +#: ../../build/NEWS:8499 +msgid "" +"`bpo-23476 `__: In the ssl module, " +"enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST flag on certificate stores when " +"it is available." +msgstr "" +"`bpo-23476 `__: In the ssl module, " +"enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST flag on certificate stores when " +"it is available." + +#: ../../build/NEWS:8502 +msgid "" +"`bpo-23576 `__: Avoid stalling in SSL " +"reads when EOF has been reached in the SSL layer but the underlying " +"connection hasn't been closed." +msgstr "" +"`bpo-23576 `__: Avoid stalling in SSL " +"reads when EOF has been reached in the SSL layer but the underlying " +"connection hasn't been closed." + +#: ../../build/NEWS:8505 +msgid "" +"`bpo-23504 `__: Added an __all__ to the " +"types module." +msgstr "" +"`bpo-23504 `__: Added an __all__ to the " +"types module." + +#: ../../build/NEWS:8507 +msgid "" +"`bpo-23563 `__: Optimized utility " +"functions in urllib.parse." +msgstr "" +"`bpo-23563 `__: Optimized utility " +"functions in urllib.parse." + +#: ../../build/NEWS:8509 +msgid "" +"`bpo-7830 `__: Flatten nested functools." +"partial." +msgstr "" +"`bpo-7830 `__: Flatten nested functools." +"partial." + +#: ../../build/NEWS:8511 +msgid "" +"`bpo-20204 `__: Added the __module__ " +"attribute to _tkinter classes." +msgstr "" +"`bpo-20204 `__: Added the __module__ " +"attribute to _tkinter classes." + +#: ../../build/NEWS:8513 +msgid "" +"`bpo-19980 `__: Improved help() for non-" +"recognized strings. help('') now shows the help on str. help('help') now " +"shows the help on help(). Original patch by Mark Lawrence." +msgstr "" +"`bpo-19980 `__: Improved help() for non-" +"recognized strings. help('') now shows the help on str. help('help') now " +"shows the help on help(). Original patch by Mark Lawrence." + +#: ../../build/NEWS:8517 +msgid "" +"`bpo-23521 `__: Corrected pure python " +"implementation of timedelta division." +msgstr "" +"`bpo-23521 `__: Corrected pure python " +"implementation of timedelta division." + +#: ../../build/NEWS:8519 +msgid "" +"Eliminated OverflowError from ``timedelta * float`` for some floats; " +"Corrected rounding in timedlta true division." +msgstr "" + +#: ../../build/NEWS:8522 +msgid "" +"`bpo-21619 `__: Popen objects no longer " +"leave a zombie after exit in the with statement if the pipe was broken. " +"Patch by Martin Panter." +msgstr "" +"`bpo-21619 `__: Popen objects no longer " +"leave a zombie after exit in the with statement if the pipe was broken. " +"Patch by Martin Panter." + +#: ../../build/NEWS:8525 +msgid "" +"`bpo-22936 `__: Make it possible to show " +"local variables in tracebacks for both the traceback module and unittest." +msgstr "" +"`bpo-22936 `__: Make it possible to show " +"local variables in tracebacks for both the traceback module and unittest." + +#: ../../build/NEWS:8528 +msgid "" +"`bpo-15955 `__: Add an option to limit " +"the output size in bz2.decompress(). Patch by Nikolaus Rath." +msgstr "" +"`bpo-15955 `__: Add an option to limit " +"the output size in bz2.decompress(). Patch by Nikolaus Rath." + +#: ../../build/NEWS:8531 +msgid "" +"`bpo-6639 `__: Module-level turtle " +"functions no longer raise TclError after closing the window." +msgstr "" +"`bpo-6639 `__: Module-level turtle " +"functions no longer raise TclError after closing the window." + +#: ../../build/NEWS:8537 +msgid "" +"`bpo-23215 `__: Multibyte codecs with " +"custom error handlers that ignores errors consumed too much memory and " +"raised SystemError or MemoryError. Original patch by Aleksi Torhamo." +msgstr "" +"`bpo-23215 `__: Multibyte codecs with " +"custom error handlers that ignores errors consumed too much memory and " +"raised SystemError or MemoryError. Original patch by Aleksi Torhamo." + +#: ../../build/NEWS:8541 +msgid "" +"`bpo-5700 `__: io.FileIO() called flush() " +"after closing the file. flush() was not called in close() if closefd=False." +msgstr "" +"`bpo-5700 `__: io.FileIO() called flush() " +"after closing the file. flush() was not called in close() if closefd=False." + +#: ../../build/NEWS:8544 +msgid "" +"`bpo-23374 `__: Fixed pydoc failure with " +"non-ASCII files when stdout encoding differs from file system encoding (e.g. " +"on Mac OS)." +msgstr "" +"`bpo-23374 `__: Fixed pydoc failure with " +"non-ASCII files when stdout encoding differs from file system encoding (e.g. " +"on Mac OS)." + +#: ../../build/NEWS:8547 +msgid "" +"`bpo-23481 `__: Remove RC4 from the SSL " +"module's default cipher list." +msgstr "" +"`bpo-23481 `__: Remove RC4 from the SSL " +"module's default cipher list." + +#: ../../build/NEWS:8549 +msgid "" +"`bpo-21548 `__: Fix pydoc.synopsis() and " +"pydoc.apropos() on modules with empty docstrings." +msgstr "" +"`bpo-21548 `__: Fix pydoc.synopsis() and " +"pydoc.apropos() on modules with empty docstrings." + +#: ../../build/NEWS:8555 +msgid "" +"`bpo-23239 `__: ssl.match_hostname() now " +"supports matching of IP addresses." +msgstr "" +"`bpo-23239 `__: ssl.match_hostname() now " +"supports matching of IP addresses." + +#: ../../build/NEWS:8557 +msgid "" +"`bpo-23146 `__: Fix mishandling of " +"absolute Windows paths with forward slashes in pathlib." +msgstr "" +"`bpo-23146 `__: Fix mishandling of " +"absolute Windows paths with forward slashes in pathlib." + +#: ../../build/NEWS:8560 +msgid "" +"`bpo-23096 `__: Pickle representation of " +"floats with protocol 0 now is the same for both Python and C implementations." +msgstr "" +"`bpo-23096 `__: Pickle representation of " +"floats with protocol 0 now is the same for both Python and C implementations." + +#: ../../build/NEWS:8563 +msgid "" +"`bpo-19105 `__: pprint now more " +"efficiently uses free space at the right." +msgstr "" +"`bpo-19105 `__: pprint now more " +"efficiently uses free space at the right." + +#: ../../build/NEWS:8565 +msgid "" +"`bpo-14910 `__: Add allow_abbrev " +"parameter to argparse.ArgumentParser. Patch by Jonathan Paugh, Steven " +"Bethard, paul j3 and Daniel Eriksson." +msgstr "" +"`bpo-14910 `__: Add allow_abbrev " +"parameter to argparse.ArgumentParser. Patch by Jonathan Paugh, Steven " +"Bethard, paul j3 and Daniel Eriksson." + +#: ../../build/NEWS:8568 +msgid "" +"`bpo-21717 `__: tarfile.open() now " +"supports 'x' (exclusive creation) mode." +msgstr "" +"`bpo-21717 `__: tarfile.open() now " +"supports 'x' (exclusive creation) mode." + +#: ../../build/NEWS:8570 +msgid "" +"`bpo-23344 `__: marshal.dumps() is now " +"20-25% faster on average." +msgstr "" +"`bpo-23344 `__: marshal.dumps() is now " +"20-25% faster on average." + +#: ../../build/NEWS:8572 +msgid "" +"`bpo-20416 `__: marshal.dumps() with " +"protocols 3 and 4 is now 40-50% faster on average." +msgstr "" +"`bpo-20416 `__: marshal.dumps() with " +"protocols 3 and 4 is now 40-50% faster on average." + +#: ../../build/NEWS:8575 +msgid "" +"`bpo-23421 `__: Fixed compression in " +"tarfile CLI. Patch by wdv4758h." +msgstr "" +"`bpo-23421 `__: Fixed compression in " +"tarfile CLI. Patch by wdv4758h." + +#: ../../build/NEWS:8577 +msgid "" +"`bpo-23367 `__: Fix possible overflows " +"in the unicodedata module." +msgstr "" +"`bpo-23367 `__: Fix possible overflows " +"in the unicodedata module." + +#: ../../build/NEWS:8579 +msgid "" +"`bpo-23361 `__: Fix possible overflow in " +"Windows subprocess creation code." +msgstr "" +"`bpo-23361 `__: Fix possible overflow in " +"Windows subprocess creation code." + +#: ../../build/NEWS:8581 +msgid "" +"logging.handlers.QueueListener now takes a respect_handler_level keyword " +"argument which, if set to True, will pass messages to handlers taking " +"handler levels into account." +msgstr "" + +#: ../../build/NEWS:8585 +msgid "" +"`bpo-19705 `__: turtledemo now has a " +"visual sorting algorithm demo. Original patch from Jason Yeo." +msgstr "" +"`bpo-19705 `__: turtledemo now has a " +"visual sorting algorithm demo. Original patch from Jason Yeo." + +#: ../../build/NEWS:8588 +msgid "" +"`bpo-23801 `__: Fix issue where cgi." +"FieldStorage did not always ignore the entire preamble to a multipart body." +msgstr "" +"`bpo-23801 `__: Fix issue where cgi." +"FieldStorage did not always ignore the entire preamble to a multipart body." + +#: ../../build/NEWS:8594 +msgid "" +"`bpo-23445 `__: pydebug builds now use " +"\"gcc -Og\" where possible, to make the resulting executable faster." +msgstr "" +"`bpo-23445 `__: pydebug builds now use " +"\"gcc -Og\" where possible, to make the resulting executable faster." + +#: ../../build/NEWS:8597 +msgid "" +"`bpo-23686 `__: Update OS X 10.5 " +"installer build to use OpenSSL 1.0.2a." +msgstr "" +"`bpo-23686 `__: Update OS X 10.5 " +"installer build to use OpenSSL 1.0.2a." + +#: ../../build/NEWS:8602 +msgid "" +"`bpo-20204 `__: Deprecation warning is " +"now raised for builtin types without the __module__ attribute." +msgstr "" +"`bpo-20204 `__: Deprecation warning is " +"now raised for builtin types without the __module__ attribute." + +#: ../../build/NEWS:8608 +msgid "" +"`bpo-23465 `__: Implement PEP 486 - Make " +"the Python Launcher aware of virtual environments. Patch by Paul Moore." +msgstr "" +"`bpo-23465 `__: Implement PEP 486 - Make " +"the Python Launcher aware of virtual environments. Patch by Paul Moore." + +#: ../../build/NEWS:8611 +msgid "" +"`bpo-23437 `__: Make user scripts " +"directory versioned on Windows. Patch by Paul Moore." +msgstr "" +"`bpo-23437 `__: Make user scripts " +"directory versioned on Windows. Patch by Paul Moore." + +#: ../../build/NEWS:8623 +msgid "" +"`bpo-23285 `__: PEP 475 - EINTR handling." +msgstr "" +"`bpo-23285 `__: PEP 475 - EINTR handling." + +#: ../../build/NEWS:8625 +msgid "" +"`bpo-22735 `__: Fix many edge cases " +"(including crashes) involving custom mro() implementations." +msgstr "" +"`bpo-22735 `__: Fix many edge cases " +"(including crashes) involving custom mro() implementations." + +#: ../../build/NEWS:8628 +msgid "" +"`bpo-22896 `__: Avoid using " +"PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " +"PyObject_AsWriteBuffer()." +msgstr "" +"`bpo-22896 `__: Avoid using " +"PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " +"PyObject_AsWriteBuffer()." + +#: ../../build/NEWS:8631 +msgid "" +"`bpo-21295 `__: Revert some changes " +"(`bpo-16795 `__) to AST line numbers and " +"column offsets that constituted a regression." +msgstr "" +"`bpo-21295 `__: Revert some changes " +"(`bpo-16795 `__) to AST line numbers and " +"column offsets that constituted a regression." + +#: ../../build/NEWS:8634 +msgid "" +"`bpo-22986 `__: Allow changing an " +"object's __class__ between a dynamic type and static type in some cases." +msgstr "" +"`bpo-22986 `__: Allow changing an " +"object's __class__ between a dynamic type and static type in some cases." + +#: ../../build/NEWS:8637 +msgid "" +"`bpo-15859 `__: " +"PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and " +"PyUnicode_EncodeCodePage() now raise an exception if the object is not a " +"Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on " +"platforms other than Windows. Patch written by Campbell Barton." +msgstr "" +"`bpo-15859 `__: " +"PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and " +"PyUnicode_EncodeCodePage() now raise an exception if the object is not a " +"Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on " +"platforms other than Windows. Patch written by Campbell Barton." + +#: ../../build/NEWS:8642 +msgid "" +"`bpo-21408 `__: The default __ne__() now " +"returns NotImplemented if __eq__() returned NotImplemented. Original patch " +"by Martin Panter." +msgstr "" +"`bpo-21408 `__: The default __ne__() now " +"returns NotImplemented if __eq__() returned NotImplemented. Original patch " +"by Martin Panter." + +#: ../../build/NEWS:8645 +msgid "" +"`bpo-23321 `__: Fixed a crash in str." +"decode() when error handler returned replacment string longer than " +"mailformed input data." +msgstr "" +"`bpo-23321 `__: Fixed a crash in str." +"decode() when error handler returned replacment string longer than " +"mailformed input data." + +#: ../../build/NEWS:8648 +msgid "" +"`bpo-22286 `__: The \"backslashreplace\" " +"error handlers now works with decoding and translating." +msgstr "" +"`bpo-22286 `__: The \"backslashreplace\" " +"error handlers now works with decoding and translating." + +#: ../../build/NEWS:8651 +msgid "" +"`bpo-23253 `__: Delay-load " +"ShellExecute[AW] in os.startfile for reduced startup overhead on Windows." +msgstr "" +"`bpo-23253 `__: Delay-load " +"ShellExecute[AW] in os.startfile for reduced startup overhead on Windows." + +#: ../../build/NEWS:8654 +msgid "" +"`bpo-22038 `__: pyatomic.h now uses " +"stdatomic.h or GCC built-in functions for atomic memory access if available. " +"Patch written by Vitor de Lima and Gustavo Temple." +msgstr "" +"`bpo-22038 `__: pyatomic.h now uses " +"stdatomic.h or GCC built-in functions for atomic memory access if available. " +"Patch written by Vitor de Lima and Gustavo Temple." + +#: ../../build/NEWS:8658 +msgid "" +"`bpo-20284 `__: %-interpolation (aka " +"printf) formatting added for bytes and bytearray." +msgstr "" +"`bpo-20284 `__: %-interpolation (aka " +"printf) formatting added for bytes and bytearray." + +#: ../../build/NEWS:8661 +msgid "" +"`bpo-23048 `__: Fix jumping out of an " +"infinite while loop in the pdb." +msgstr "" +"`bpo-23048 `__: Fix jumping out of an " +"infinite while loop in the pdb." + +#: ../../build/NEWS:8663 +msgid "" +"`bpo-20335 `__: bytes constructor now " +"raises TypeError when encoding or errors is specified with non-string " +"argument. Based on patch by Renaud Blanch." +msgstr "" +"`bpo-20335 `__: bytes constructor now " +"raises TypeError when encoding or errors is specified with non-string " +"argument. Based on patch by Renaud Blanch." + +#: ../../build/NEWS:8669 +msgid "" +"`bpo-22869 `__: Move the interpreter " +"startup & shutdown code to a new dedicated pylifecycle.c module" +msgstr "" +"`bpo-22869 `__: Move the interpreter " +"startup & shutdown code to a new dedicated pylifecycle.c module" + +#: ../../build/NEWS:8672 +msgid "" +"`bpo-22847 `__: Improve method cache " +"efficiency." +msgstr "" +"`bpo-22847 `__: Improve method cache " +"efficiency." + +#: ../../build/NEWS:8674 +msgid "" +"`bpo-22335 `__: Fix crash when trying to " +"enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform." +msgstr "" +"`bpo-22335 `__: Fix crash when trying to " +"enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform." + +#: ../../build/NEWS:8677 +msgid "" +"`bpo-22653 `__: Fix an assertion failure " +"in debug mode when doing a reentrant dict insertion in debug mode." +msgstr "" +"`bpo-22653 `__: Fix an assertion failure " +"in debug mode when doing a reentrant dict insertion in debug mode." + +#: ../../build/NEWS:8680 +msgid "" +"`bpo-22643 `__: Fix integer overflow in " +"Unicode case operations (upper, lower, title, swapcase, casefold)." +msgstr "" +"`bpo-22643 `__: Fix integer overflow in " +"Unicode case operations (upper, lower, title, swapcase, casefold)." + +#: ../../build/NEWS:8683 +msgid "" +"`bpo-17636 `__: Circular imports " +"involving relative imports are now supported." +msgstr "" +"`bpo-17636 `__: Circular imports " +"involving relative imports are now supported." + +#: ../../build/NEWS:8685 +msgid "" +"`bpo-22604 `__: Fix assertion error in " +"debug mode when dividing a complex number by (nan+0j)." +msgstr "" +"`bpo-22604 `__: Fix assertion error in " +"debug mode when dividing a complex number by (nan+0j)." + +#: ../../build/NEWS:8688 +msgid "" +"`bpo-21052 `__: Do not raise " +"ImportWarning when sys.path_hooks or sys.meta_path are set to None." +msgstr "" +"`bpo-21052 `__: Do not raise " +"ImportWarning when sys.path_hooks or sys.meta_path are set to None." + +#: ../../build/NEWS:8691 +msgid "" +"`bpo-16518 `__: Use 'bytes-like object " +"required' in error messages that previously used the far more cryptic \"'x' " +"does not support the buffer protocol." +msgstr "" +"`bpo-16518 `__: Use 'bytes-like object " +"required' in error messages that previously used the far more cryptic \"'x' " +"does not support the buffer protocol." + +#: ../../build/NEWS:8695 +msgid "" +"`bpo-22470 `__: Fixed integer overflow " +"issues in \"backslashreplace\", \"xmlcharrefreplace\", and \"surrogatepass\" " +"error handlers." +msgstr "" +"`bpo-22470 `__: Fixed integer overflow " +"issues in \"backslashreplace\", \"xmlcharrefreplace\", and \"surrogatepass\" " +"error handlers." + +#: ../../build/NEWS:8698 +msgid "" +"`bpo-22540 `__: speed up " +"`PyObject_IsInstance` and `PyObject_IsSubclass` in the common case that the " +"second argument has metaclass `type`." +msgstr "" +"`bpo-22540 `__: speed up " +"`PyObject_IsInstance` and `PyObject_IsSubclass` in the common case that the " +"second argument has metaclass `type`." + +#: ../../build/NEWS:8701 +msgid "" +"`bpo-18711 `__: Add a new " +"`PyErr_FormatV` function, similar to `PyErr_Format` but accepting a " +"`va_list` argument." +msgstr "" +"`bpo-18711 `__: Add a new " +"`PyErr_FormatV` function, similar to `PyErr_Format` but accepting a " +"`va_list` argument." + +#: ../../build/NEWS:8704 +msgid "" +"`bpo-22520 `__: Fix overflow checking " +"when generating the repr of a unicode object." +msgstr "" +"`bpo-22520 `__: Fix overflow checking " +"when generating the repr of a unicode object." + +#: ../../build/NEWS:8707 +msgid "" +"`bpo-22519 `__: Fix overflow checking in " +"PyBytes_Repr." +msgstr "" +"`bpo-22519 `__: Fix overflow checking in " +"PyBytes_Repr." + +#: ../../build/NEWS:8709 +msgid "" +"`bpo-22518 `__: Fix integer overflow " +"issues in latin-1 encoding." +msgstr "" +"`bpo-22518 `__: Fix integer overflow " +"issues in latin-1 encoding." + +#: ../../build/NEWS:8711 +msgid "" +"`bpo-16324 `__: _charset parameter of " +"MIMEText now also accepts email.charset.Charset instances. Initial patch by " +"Claude Paroz." +msgstr "" +"`bpo-16324 `__: _charset parameter of " +"MIMEText now also accepts email.charset.Charset instances. Initial patch by " +"Claude Paroz." + +#: ../../build/NEWS:8714 +msgid "" +"`bpo-1764286 `__: Fix inspect." +"getsource() to support decorated functions. Patch by Claudiu Popa." +msgstr "" +"`bpo-1764286 `__: Fix inspect." +"getsource() to support decorated functions. Patch by Claudiu Popa." + +#: ../../build/NEWS:8717 +msgid "" +"`bpo-18554 `__: os.__all__ includes " +"posix functions." +msgstr "" +"`bpo-18554 `__: os.__all__ includes " +"posix functions." + +#: ../../build/NEWS:8719 +msgid "" +"`bpo-21391 `__: Use os.path.abspath in " +"the shutil module." +msgstr "" +"`bpo-21391 `__: Use os.path.abspath in " +"the shutil module." + +#: ../../build/NEWS:8721 +msgid "" +"`bpo-11471 `__: avoid generating a " +"JUMP_FORWARD instruction at the end of an if-block if there is no else-" +"clause. Original patch by Eugene Toder." +msgstr "" +"`bpo-11471 `__: avoid generating a " +"JUMP_FORWARD instruction at the end of an if-block if there is no else-" +"clause. Original patch by Eugene Toder." + +#: ../../build/NEWS:8724 +msgid "" +"`bpo-22215 `__: Now ValueError is raised " +"instead of TypeError when str or bytes argument contains not permitted null " +"character or byte." +msgstr "" +"`bpo-22215 `__: Now ValueError is raised " +"instead of TypeError when str or bytes argument contains not permitted null " +"character or byte." + +#: ../../build/NEWS:8727 +msgid "" +"`bpo-22258 `__: Fix the internal " +"function set_inheritable() on Illumos. This platform exposes the function " +"``ioctl(FIOCLEX)``, but calling it fails with errno is ENOTTY: " +"\"Inappropriate ioctl for device\". set_inheritable() now falls back to the " +"slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``)." +msgstr "" +"`bpo-22258 `__: Fix the internal " +"function set_inheritable() on Illumos. This platform exposes the function " +"``ioctl(FIOCLEX)``, but calling it fails with errno is ENOTTY: " +"\"Inappropriate ioctl for device\". set_inheritable() now falls back to the " +"slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``)." + +#: ../../build/NEWS:8733 +msgid "" +"`bpo-21389 `__: Displaying the " +"__qualname__ of the underlying function in the repr of a bound method." +msgstr "" +"`bpo-21389 `__: Displaying the " +"__qualname__ of the underlying function in the repr of a bound method." + +#: ../../build/NEWS:8736 +msgid "" +"`bpo-22206 `__: Using pthread, " +"PyThread_create_key() now sets errno to ENOMEM and returns -1 (error) on " +"integer overflow." +msgstr "" +"`bpo-22206 `__: Using pthread, " +"PyThread_create_key() now sets errno to ENOMEM and returns -1 (error) on " +"integer overflow." + +#: ../../build/NEWS:8739 +msgid "" +"`bpo-20184 `__: Argument Clinic based " +"signature introspection added for 30 of the builtin functions." +msgstr "" +"`bpo-20184 `__: Argument Clinic based " +"signature introspection added for 30 of the builtin functions." + +#: ../../build/NEWS:8742 +msgid "" +"`bpo-22116 `__: C functions and methods " +"(of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by " +"Wei Wu." +msgstr "" +"`bpo-22116 `__: C functions and methods " +"(of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by " +"Wei Wu." + +#: ../../build/NEWS:8745 +msgid "" +"`bpo-22077 `__: Improve index error " +"messages for bytearrays, bytes, lists, and tuples by adding 'or slices'. " +"Added ', not ' for bytearrays. Original patch by Claudiu Popa." +msgstr "" +"`bpo-22077 `__: Improve index error " +"messages for bytearrays, bytes, lists, and tuples by adding 'or slices'. " +"Added ', not ' for bytearrays. Original patch by Claudiu Popa." + +#: ../../build/NEWS:8749 +msgid "" +"`bpo-20179 `__: Apply Argument Clinic to " +"bytes and bytearray. Patch by Tal Einat." +msgstr "" +"`bpo-20179 `__: Apply Argument Clinic to " +"bytes and bytearray. Patch by Tal Einat." + +#: ../../build/NEWS:8752 +msgid "" +"`bpo-22082 `__: Clear interned strings " +"in slotdefs." +msgstr "" +"`bpo-22082 `__: Clear interned strings " +"in slotdefs." + +#: ../../build/NEWS:8756 +msgid "" +"`bpo-21897 `__: Fix a crash with the " +"f_locals attribute with closure variables when frame.clear() has been called." +msgstr "" +"`bpo-21897 `__: Fix a crash with the " +"f_locals attribute with closure variables when frame.clear() has been called." + +#: ../../build/NEWS:8759 +msgid "" +"`bpo-21205 `__: Add a new " +"``__qualname__`` attribute to generator, the qualified name, and use it in " +"the representation of a generator (``repr(gen)``). The default name of the " +"generator (``__name__`` attribute) is now get from the function instead of " +"the code. Use ``gen.gi_code.co_name`` to get the name of the code." +msgstr "" +"`bpo-21205 `__: Add a new " +"``__qualname__`` attribute to generator, the qualified name, and use it in " +"the representation of a generator (``repr(gen)``). The default name of the " +"generator (``__name__`` attribute) is now get from the function instead of " +"the code. Use ``gen.gi_code.co_name`` to get the name of the code." + +#: ../../build/NEWS:8765 +msgid "" +"`bpo-21669 `__: With the aid of " +"heuristics in SyntaxError.__init__, the parser now attempts to generate more " +"meaningful (or at least more search engine friendly) error messages when " +"\"exec\" and \"print\" are used as statements." +msgstr "" +"`bpo-21669 `__: With the aid of " +"heuristics in SyntaxError.__init__, the parser now attempts to generate more " +"meaningful (or at least more search engine friendly) error messages when " +"\"exec\" and \"print\" are used as statements." + +#: ../../build/NEWS:8769 +msgid "" +"`bpo-21642 `__: In the conditional if-" +"else expression, allow an integer written with no space between itself and " +"the ``else`` keyword (e.g. ``True if 42else False``) to be valid syntax." +msgstr "" +"`bpo-21642 `__: In the conditional if-" +"else expression, allow an integer written with no space between itself and " +"the ``else`` keyword (e.g. ``True if 42else False``) to be valid syntax." + +#: ../../build/NEWS:8773 +msgid "" +"`bpo-21523 `__: Fix over-pessimistic " +"computation of the stack effect of some opcodes in the compiler. This also " +"fixes a quadratic compilation time issue noticeable when compiling code with " +"a large number of \"and\" and \"or\" operators." +msgstr "" +"`bpo-21523 `__: Fix over-pessimistic " +"computation of the stack effect of some opcodes in the compiler. This also " +"fixes a quadratic compilation time issue noticeable when compiling code with " +"a large number of \"and\" and \"or\" operators." + +#: ../../build/NEWS:8778 +msgid "" +"`bpo-21418 `__: Fix a crash in the " +"builtin function super() when called without argument and without current " +"frame (ex: embedded Python)." +msgstr "" +"`bpo-21418 `__: Fix a crash in the " +"builtin function super() when called without argument and without current " +"frame (ex: embedded Python)." + +#: ../../build/NEWS:8781 +msgid "" +"`bpo-21425 `__: Fix flushing of standard " +"streams in the interactive interpreter." +msgstr "" +"`bpo-21425 `__: Fix flushing of standard " +"streams in the interactive interpreter." + +#: ../../build/NEWS:8784 +msgid "" +"`bpo-21435 `__: In rare cases, when " +"running finalizers on objects in cyclic trash a bad pointer dereference " +"could occur due to a subtle flaw in internal iteration logic." +msgstr "" +"`bpo-21435 `__: In rare cases, when " +"running finalizers on objects in cyclic trash a bad pointer dereference " +"could occur due to a subtle flaw in internal iteration logic." + +#: ../../build/NEWS:8788 +msgid "" +"`bpo-21377 `__: PyBytes_Concat() now " +"tries to concatenate in-place when the first argument has a reference count " +"of 1. Patch by Nikolaus Rath." +msgstr "" +"`bpo-21377 `__: PyBytes_Concat() now " +"tries to concatenate in-place when the first argument has a reference count " +"of 1. Patch by Nikolaus Rath." + +#: ../../build/NEWS:8791 +msgid "" +"`bpo-20355 `__: -W command line options " +"now have higher priority than the PYTHONWARNINGS environment variable. " +"Patch by Arfrever." +msgstr "" +"`bpo-20355 `__: -W command line options " +"now have higher priority than the PYTHONWARNINGS environment variable. " +"Patch by Arfrever." + +#: ../../build/NEWS:8794 +msgid "" +"`bpo-21274 `__: Define PATH_MAX for GNU/" +"Hurd in Python/pythonrun.c." +msgstr "" +"`bpo-21274 `__: Define PATH_MAX for GNU/" +"Hurd in Python/pythonrun.c." + +#: ../../build/NEWS:8796 +msgid "" +"`bpo-20904 `__: Support setting FPU " +"precision on m68k." +msgstr "" +"`bpo-20904 `__: Support setting FPU " +"precision on m68k." + +#: ../../build/NEWS:8798 +msgid "" +"`bpo-21209 `__: Fix sending tuples to " +"custom generator objects with the yield from syntax." +msgstr "" +"`bpo-21209 `__: Fix sending tuples to " +"custom generator objects with the yield from syntax." + +#: ../../build/NEWS:8806 +msgid "" +"`bpo-21134 `__: Fix segfault when str is " +"called on an uninitialized UnicodeEncodeError, UnicodeDecodeError, or " +"UnicodeTranslateError object." +msgstr "" +"`bpo-21134 `__: Fix segfault when str is " +"called on an uninitialized UnicodeEncodeError, UnicodeDecodeError, or " +"UnicodeTranslateError object." + +#: ../../build/NEWS:8809 +msgid "" +"`bpo-19537 `__: Fix PyUnicode_DATA() " +"alignment under m68k. Patch by Andreas Schwab." +msgstr "" +"`bpo-19537 `__: Fix PyUnicode_DATA() " +"alignment under m68k. Patch by Andreas Schwab." + +#: ../../build/NEWS:8812 +msgid "" +"`bpo-20929 `__: Add a type cast to avoid " +"shifting a negative number." +msgstr "" +"`bpo-20929 `__: Add a type cast to avoid " +"shifting a negative number." + +#: ../../build/NEWS:8814 +msgid "" +"`bpo-20731 `__: Properly position in " +"source code files even if they are opened in text mode. Patch by Serhiy " +"Storchaka." +msgstr "" +"`bpo-20731 `__: Properly position in " +"source code files even if they are opened in text mode. Patch by Serhiy " +"Storchaka." + +#: ../../build/NEWS:8817 +msgid "" +"`bpo-20637 `__: Key-sharing now also " +"works for instance dictionaries of subclasses. Patch by Peter Ingebretson." +msgstr "" +"`bpo-20637 `__: Key-sharing now also " +"works for instance dictionaries of subclasses. Patch by Peter Ingebretson." + +#: ../../build/NEWS:8820 +msgid "" +"`bpo-8297 `__: Attributes missing from " +"modules now include the module name in the error text. Original patch by " +"ysj.ray." +msgstr "" +"`bpo-8297 `__: Attributes missing from " +"modules now include the module name in the error text. Original patch by " +"ysj.ray." + +#: ../../build/NEWS:8823 +msgid "" +"`bpo-19995 `__: %c, %o, %x, and %X now " +"raise TypeError on non-integer input." +msgstr "" +"`bpo-19995 `__: %c, %o, %x, and %X now " +"raise TypeError on non-integer input." + +#: ../../build/NEWS:8825 +msgid "" +"`bpo-19655 `__: The ASDL parser - used " +"by the build process to generate code for managing the Python AST in C - was " +"rewritten. The new parser is self contained and does not require to carry " +"long the spark.py parser-generator library; spark.py was removed from the " +"source base." +msgstr "" +"`bpo-19655 `__: The ASDL parser - used " +"by the build process to generate code for managing the Python AST in C - was " +"rewritten. The new parser is self contained and does not require to carry " +"long the spark.py parser-generator library; spark.py was removed from the " +"source base." + +#: ../../build/NEWS:8830 +msgid "" +"`bpo-12546 `__: Allow ``\\x00`` to be " +"used as a fill character when using str, int, float, and complex __format__ " +"methods." +msgstr "" +"`bpo-12546 `__: Allow ``\\x00`` to be " +"used as a fill character when using str, int, float, and complex __format__ " +"methods." + +#: ../../build/NEWS:8833 +msgid "" +"`bpo-20480 `__: Add ipaddress." +"reverse_pointer. Patch by Leon Weber." +msgstr "" +"`bpo-20480 `__: Add ipaddress." +"reverse_pointer. Patch by Leon Weber." + +#: ../../build/NEWS:8835 +msgid "" +"`bpo-13598 `__: Modify string.Formatter " +"to support auto-numbering of replacement fields. It now matches the behavior " +"of str.format() in this regard. Patches by Phil Elson and Ramchandra Apte." +msgstr "" +"`bpo-13598 `__: Modify string.Formatter " +"to support auto-numbering of replacement fields. It now matches the behavior " +"of str.format() in this regard. Patches by Phil Elson and Ramchandra Apte." + +#: ../../build/NEWS:8843 +msgid "" +"`bpo-23165 `__: Perform overflow checks " +"before allocating memory in the _Py_char2wchar function." +msgstr "" +"`bpo-23165 `__: Perform overflow checks " +"before allocating memory in the _Py_char2wchar function." + +#: ../../build/NEWS:8849 +msgid "" +"`bpo-23399 `__: pyvenv creates relative " +"symlinks where possible." +msgstr "" +"`bpo-23399 `__: pyvenv creates relative " +"symlinks where possible." + +#: ../../build/NEWS:8851 +msgid "" +"`bpo-20289 `__: cgi.FieldStorage() now " +"supports the context management protocol." +msgstr "" +"`bpo-20289 `__: cgi.FieldStorage() now " +"supports the context management protocol." + +#: ../../build/NEWS:8854 +msgid "" +"`bpo-13128 `__: Print response headers " +"for CONNECT requests when debuglevel > 0. Patch by Demian Brecht." +msgstr "" +"`bpo-13128 `__: Print response headers " +"for CONNECT requests when debuglevel > 0. Patch by Demian Brecht." + +#: ../../build/NEWS:8857 +msgid "" +"`bpo-15381 `__: Optimized io.BytesIO to " +"make less allocations and copyings." +msgstr "" +"`bpo-15381 `__: Optimized io.BytesIO to " +"make less allocations and copyings." + +#: ../../build/NEWS:8859 +msgid "" +"`bpo-22818 `__: Splitting on a pattern " +"that could match an empty string now raises a warning. Patterns that can " +"only match empty strings are now rejected." +msgstr "" +"`bpo-22818 `__: Splitting on a pattern " +"that could match an empty string now raises a warning. Patterns that can " +"only match empty strings are now rejected." + +#: ../../build/NEWS:8863 +msgid "" +"`bpo-23099 `__: Closing io.BytesIO with " +"exported buffer is rejected now to prevent corrupting exported buffer." +msgstr "" +"`bpo-23099 `__: Closing io.BytesIO with " +"exported buffer is rejected now to prevent corrupting exported buffer." + +#: ../../build/NEWS:8866 +msgid "" +"`bpo-23326 `__: Removed __ne__ " +"implementations. Since fixing default __ne__ implementation in `bpo-21408 " +"`__ they are redundant." +msgstr "" +"`bpo-23326 `__: Removed __ne__ " +"implementations. Since fixing default __ne__ implementation in `bpo-21408 " +"`__ they are redundant." + +#: ../../build/NEWS:8869 +msgid "" +"`bpo-23363 `__: Fix possible overflow in " +"itertools.permutations." +msgstr "" +"`bpo-23363 `__: Fix possible overflow in " +"itertools.permutations." + +#: ../../build/NEWS:8871 +msgid "" +"`bpo-23364 `__: Fix possible overflow in " +"itertools.product." +msgstr "" +"`bpo-23364 `__: Fix possible overflow in " +"itertools.product." + +#: ../../build/NEWS:8873 +msgid "" +"`bpo-23366 `__: Fixed possible integer " +"overflow in itertools.combinations." +msgstr "" +"`bpo-23366 `__: Fixed possible integer " +"overflow in itertools.combinations." + +#: ../../build/NEWS:8875 +msgid "" +"`bpo-23369 `__: Fixed possible integer " +"overflow in _json.encode_basestring_ascii." +msgstr "" +"`bpo-23369 `__: Fixed possible integer " +"overflow in _json.encode_basestring_ascii." + +#: ../../build/NEWS:8878 +msgid "" +"`bpo-23353 `__: Fix the exception " +"handling of generators in PyEval_EvalFrameEx(). At entry, save or swap the " +"exception state even if PyEval_EvalFrameEx() is called with throwflag=0. At " +"exit, the exception state is now always restored or swapped, not only if why " +"is WHY_YIELD or WHY_RETURN. Patch co-written with Antoine Pitrou." +msgstr "" +"`bpo-23353 `__: Fix the exception " +"handling of generators in PyEval_EvalFrameEx(). At entry, save or swap the " +"exception state even if PyEval_EvalFrameEx() is called with throwflag=0. At " +"exit, the exception state is now always restored or swapped, not only if why " +"is WHY_YIELD or WHY_RETURN. Patch co-written with Antoine Pitrou." + +#: ../../build/NEWS:8887 +msgid "" +"`bpo-14099 `__: Writing to ZipFile and " +"reading multiple ZipExtFiles is threadsafe now." +msgstr "" +"`bpo-14099 `__: Writing to ZipFile and " +"reading multiple ZipExtFiles is threadsafe now." + +#: ../../build/NEWS:8890 +msgid "" +"`bpo-19361 `__: JSON decoder now raises " +"JSONDecodeError instead of ValueError." +msgstr "" +"`bpo-19361 `__: JSON decoder now raises " +"JSONDecodeError instead of ValueError." + +#: ../../build/NEWS:8892 +msgid "" +"`bpo-18518 `__: timeit now rejects " +"statements which can't be compiled outside a function or a loop (e.g. " +"\"return\" or \"break\")." +msgstr "" +"`bpo-18518 `__: timeit now rejects " +"statements which can't be compiled outside a function or a loop (e.g. " +"\"return\" or \"break\")." + +#: ../../build/NEWS:8895 +msgid "" +"`bpo-23094 `__: Fixed readline with " +"frames in Python implementation of pickle." +msgstr "" +"`bpo-23094 `__: Fixed readline with " +"frames in Python implementation of pickle." + +#: ../../build/NEWS:8897 +msgid "" +"`bpo-23268 `__: Fixed bugs in the " +"comparison of ipaddress classes." +msgstr "" +"`bpo-23268 `__: Fixed bugs in the " +"comparison of ipaddress classes." + +#: ../../build/NEWS:8899 +msgid "" +"`bpo-21408 `__: Removed incorrect " +"implementations of __ne__() which didn't returned NotImplemented if __eq__() " +"returned NotImplemented. The default __ne__() now works correctly." +msgstr "" +"`bpo-21408 `__: Removed incorrect " +"implementations of __ne__() which didn't returned NotImplemented if __eq__() " +"returned NotImplemented. The default __ne__() now works correctly." + +#: ../../build/NEWS:8903 +msgid "" +"`bpo-19996 `__: :class:`email.feedparser." +"FeedParser` now handles (malformed) headers with no key rather than assuming " +"the body has started." +msgstr "" +"`bpo-19996 `__: :class:`email.feedparser." +"FeedParser` now handles (malformed) headers with no key rather than assuming " +"the body has started." + +#: ../../build/NEWS:8906 +msgid "" +"`bpo-20188 `__: Support Application-" +"Layer Protocol Negotiation (ALPN) in the ssl module." +msgstr "" +"`bpo-20188 `__: Support Application-" +"Layer Protocol Negotiation (ALPN) in the ssl module." + +#: ../../build/NEWS:8909 +msgid "" +"`bpo-23133 `__: Pickling of ipaddress " +"objects now produces more compact and portable representation." +msgstr "" +"`bpo-23133 `__: Pickling of ipaddress " +"objects now produces more compact and portable representation." + +#: ../../build/NEWS:8912 +msgid "" +"`bpo-23248 `__: Update ssl error codes " +"from latest OpenSSL git master." +msgstr "" +"`bpo-23248 `__: Update ssl error codes " +"from latest OpenSSL git master." + +#: ../../build/NEWS:8914 +msgid "" +"`bpo-23266 `__: Much faster " +"implementation of ipaddress.collapse_addresses() when there are many non-" +"consecutive addresses." +msgstr "" +"`bpo-23266 `__: Much faster " +"implementation of ipaddress.collapse_addresses() when there are many non-" +"consecutive addresses." + +#: ../../build/NEWS:8917 +msgid "" +"`bpo-23098 `__: 64-bit dev_t is now " +"supported in the os module." +msgstr "" +"`bpo-23098 `__: 64-bit dev_t is now " +"supported in the os module." + +#: ../../build/NEWS:8919 +msgid "" +"`bpo-21817 `__: When an exception is " +"raised in a task submitted to a ProcessPoolExecutor, the remote traceback is " +"now displayed in the parent process. Patch by Claudiu Popa." +msgstr "" +"`bpo-21817 `__: When an exception is " +"raised in a task submitted to a ProcessPoolExecutor, the remote traceback is " +"now displayed in the parent process. Patch by Claudiu Popa." + +#: ../../build/NEWS:8923 +msgid "" +"`bpo-15955 `__: Add an option to limit " +"output size when decompressing LZMA data. Patch by Nikolaus Rath and Martin " +"Panter." +msgstr "" +"`bpo-15955 `__: Add an option to limit " +"output size when decompressing LZMA data. Patch by Nikolaus Rath and Martin " +"Panter." + +#: ../../build/NEWS:8926 +msgid "" +"`bpo-23250 `__: In the http.cookies " +"module, capitalize \"HttpOnly\" and \"Secure\" as they are written in the " +"standard." +msgstr "" +"`bpo-23250 `__: In the http.cookies " +"module, capitalize \"HttpOnly\" and \"Secure\" as they are written in the " +"standard." + +#: ../../build/NEWS:8929 +msgid "" +"`bpo-23063 `__: In the disutils' check " +"command, fix parsing of reST with code or code-block directives." +msgstr "" +"`bpo-23063 `__: In the disutils' check " +"command, fix parsing of reST with code or code-block directives." + +#: ../../build/NEWS:8937 +msgid "" +"`bpo-17911 `__: Provide a way to seed " +"the linecache for a PEP-302 module without actually loading the code." +msgstr "" +"`bpo-17911 `__: Provide a way to seed " +"the linecache for a PEP-302 module without actually loading the code." + +#: ../../build/NEWS:8940 +msgid "" +"`bpo-17911 `__: Provide a new object API " +"for traceback, including the ability to not lookup lines at all until the " +"traceback is actually rendered, without any trace of the original objects " +"being kept alive." +msgstr "" +"`bpo-17911 `__: Provide a new object API " +"for traceback, including the ability to not lookup lines at all until the " +"traceback is actually rendered, without any trace of the original objects " +"being kept alive." + +#: ../../build/NEWS:8944 +msgid "" +"`bpo-19777 `__: Provide a home() " +"classmethod on Path objects. Contributed by Victor Salgado and Mayank " +"Tripathi." +msgstr "" +"`bpo-19777 `__: Provide a home() " +"classmethod on Path objects. Contributed by Victor Salgado and Mayank " +"Tripathi." + +#: ../../build/NEWS:8947 +msgid "" +"`bpo-23206 `__: Make ``json.dumps(..., " +"ensure_ascii=False)`` as fast as the default case of ``ensure_ascii=True``. " +"Patch by Naoki Inada." +msgstr "" +"`bpo-23206 `__: Make ``json.dumps(..., " +"ensure_ascii=False)`` as fast as the default case of ``ensure_ascii=True``. " +"Patch by Naoki Inada." + +#: ../../build/NEWS:8950 +msgid "" +"`bpo-23185 `__: Add math.inf and math." +"nan constants." +msgstr "" +"`bpo-23185 `__: Add math.inf and math." +"nan constants." + +#: ../../build/NEWS:8952 +msgid "" +"`bpo-23186 `__: Add ssl.SSLObject." +"shared_ciphers() and ssl.SSLSocket.shared_ciphers() to fetch the client's " +"list ciphers sent at handshake." +msgstr "" +"`bpo-23186 `__: Add ssl.SSLObject." +"shared_ciphers() and ssl.SSLSocket.shared_ciphers() to fetch the client's " +"list ciphers sent at handshake." + +#: ../../build/NEWS:8956 +msgid "" +"`bpo-23143 `__: Remove compatibility " +"with OpenSSLs older than 0.9.8." +msgstr "" +"`bpo-23143 `__: Remove compatibility " +"with OpenSSLs older than 0.9.8." + +#: ../../build/NEWS:8958 +msgid "" +"`bpo-23132 `__: Improve performance and " +"introspection support of comparison methods created by functool." +"total_ordering." +msgstr "" +"`bpo-23132 `__: Improve performance and " +"introspection support of comparison methods created by functool." +"total_ordering." + +#: ../../build/NEWS:8961 +msgid "" +"`bpo-19776 `__: Add an expanduser() " +"method on Path objects." +msgstr "" +"`bpo-19776 `__: Add an expanduser() " +"method on Path objects." + +#: ../../build/NEWS:8963 +msgid "" +"`bpo-23112 `__: Fix SimpleHTTPServer to " +"correctly carry the query string and fragment when it redirects to add a " +"trailing slash." +msgstr "" +"`bpo-23112 `__: Fix SimpleHTTPServer to " +"correctly carry the query string and fragment when it redirects to add a " +"trailing slash." + +#: ../../build/NEWS:8969 +msgid "" +"`bpo-23093 `__: In the io, module allow " +"more operations to work on detached streams." +msgstr "" +"`bpo-23093 `__: In the io, module allow " +"more operations to work on detached streams." + +#: ../../build/NEWS:8972 +msgid "" +"`bpo-23111 `__: In the ftplib, make ssl." +"PROTOCOL_SSLv23 the default protocol version." +msgstr "" +"`bpo-23111 `__: In the ftplib, make ssl." +"PROTOCOL_SSLv23 the default protocol version." + +#: ../../build/NEWS:8975 +msgid "" +"`bpo-22585 `__: On OpenBSD 5.6 and " +"newer, os.urandom() now calls getentropy(), instead of reading /dev/urandom, " +"to get pseudo-random bytes." +msgstr "" +"`bpo-22585 `__: On OpenBSD 5.6 and " +"newer, os.urandom() now calls getentropy(), instead of reading /dev/urandom, " +"to get pseudo-random bytes." + +#: ../../build/NEWS:8978 +msgid "" +"`bpo-19104 `__: pprint now produces " +"evaluable output for wrapped strings." +msgstr "" +"`bpo-19104 `__: pprint now produces " +"evaluable output for wrapped strings." + +#: ../../build/NEWS:8980 +msgid "" +"`bpo-23071 `__: Added missing names to " +"codecs.__all__. Patch by Martin Panter." +msgstr "" +"`bpo-23071 `__: Added missing names to " +"codecs.__all__. Patch by Martin Panter." + +#: ../../build/NEWS:8982 +msgid "" +"`bpo-22783 `__: Pickling now uses the " +"NEWOBJ opcode instead of the NEWOBJ_EX opcode if possible." +msgstr "" +"`bpo-22783 `__: Pickling now uses the " +"NEWOBJ opcode instead of the NEWOBJ_EX opcode if possible." + +#: ../../build/NEWS:8985 +msgid "" +"`bpo-15513 `__: Added a __sizeof__ " +"implementation for pickle classes." +msgstr "" +"`bpo-15513 `__: Added a __sizeof__ " +"implementation for pickle classes." + +#: ../../build/NEWS:8987 +msgid "" +"`bpo-19858 `__: pickletools.optimize() " +"now aware of the MEMOIZE opcode, can produce more compact result and no " +"longer produces invalid output if input data contains MEMOIZE opcodes " +"together with PUT or BINPUT opcodes." +msgstr "" +"`bpo-19858 `__: pickletools.optimize() " +"now aware of the MEMOIZE opcode, can produce more compact result and no " +"longer produces invalid output if input data contains MEMOIZE opcodes " +"together with PUT or BINPUT opcodes." + +#: ../../build/NEWS:8991 +msgid "" +"`bpo-22095 `__: Fixed HTTPConnection." +"set_tunnel with default port. The port value in the host header was set to " +"\"None\". Patch by Demian Brecht." +msgstr "" +"`bpo-22095 `__: Fixed HTTPConnection." +"set_tunnel with default port. The port value in the host header was set to " +"\"None\". Patch by Demian Brecht." + +#: ../../build/NEWS:8994 +msgid "" +"`bpo-23016 `__: A warning no longer " +"produces an AttributeError when the program is run with pythonw.exe." +msgstr "" +"`bpo-23016 `__: A warning no longer " +"produces an AttributeError when the program is run with pythonw.exe." + +#: ../../build/NEWS:8997 +msgid "" +"`bpo-21775 `__: shutil.copytree(): fix " +"crash when copying to VFAT. An exception handler assumed that OSError " +"objects always have a 'winerror' attribute. That is not the case, so the " +"exception handler itself raised AttributeError when run on Linux (and, " +"presumably, any other non-Windows OS). Patch by Greg Ward." +msgstr "" +"`bpo-21775 `__: shutil.copytree(): fix " +"crash when copying to VFAT. An exception handler assumed that OSError " +"objects always have a 'winerror' attribute. That is not the case, so the " +"exception handler itself raised AttributeError when run on Linux (and, " +"presumably, any other non-Windows OS). Patch by Greg Ward." + +#: ../../build/NEWS:9003 +msgid "" +"`bpo-1218234 `__: Fix inspect." +"getsource() to load updated source of reloaded module. Initial patch by " +"Berker Peksag." +msgstr "" +"`bpo-1218234 `__: Fix inspect." +"getsource() to load updated source of reloaded module. Initial patch by " +"Berker Peksag." + +#: ../../build/NEWS:9006 +msgid "" +"`bpo-21740 `__: Support wrapped " +"callables in doctest. Patch by Claudiu Popa." +msgstr "" +"`bpo-21740 `__: Support wrapped " +"callables in doctest. Patch by Claudiu Popa." + +#: ../../build/NEWS:9008 +msgid "" +"`bpo-23009 `__: Make sure selectors." +"EpollSelecrtor.select() works when no FD is registered." +msgstr "" +"`bpo-23009 `__: Make sure selectors." +"EpollSelecrtor.select() works when no FD is registered." + +#: ../../build/NEWS:9011 +msgid "" +"`bpo-22959 `__: In the constructor of " +"http.client.HTTPSConnection, prefer the context's check_hostname attribute " +"over the *check_hostname* parameter." +msgstr "" +"`bpo-22959 `__: In the constructor of " +"http.client.HTTPSConnection, prefer the context's check_hostname attribute " +"over the *check_hostname* parameter." + +#: ../../build/NEWS:9014 +msgid "" +"`bpo-22696 `__: Add function :func:`sys." +"is_finalizing` to know about interpreter shutdown." +msgstr "" +"`bpo-22696 `__: Add function :func:`sys." +"is_finalizing` to know about interpreter shutdown." + +#: ../../build/NEWS:9017 +msgid "" +"`bpo-16043 `__: Add a default limit for " +"the amount of data xmlrpclib.gzip_decode will return. This resolves " +"CVE-2013-1753." +msgstr "" +"`bpo-16043 `__: Add a default limit for " +"the amount of data xmlrpclib.gzip_decode will return. This resolves " +"CVE-2013-1753." + +#: ../../build/NEWS:9020 +msgid "" +"`bpo-14099 `__: ZipFile.open() no longer " +"reopen the underlying file. Objects returned by ZipFile.open() can now " +"operate independently of the ZipFile even if the ZipFile was created by " +"passing in a file-like object as the first argument to the constructor." +msgstr "" +"`bpo-14099 `__: ZipFile.open() no longer " +"reopen the underlying file. Objects returned by ZipFile.open() can now " +"operate independently of the ZipFile even if the ZipFile was created by " +"passing in a file-like object as the first argument to the constructor." + +#: ../../build/NEWS:9025 +msgid "" +"`bpo-22966 `__: Fix __pycache__ pyc file " +"name clobber when pyc_compile is asked to compile a source file containing " +"multiple dots in the source file name." +msgstr "" +"`bpo-22966 `__: Fix __pycache__ pyc file " +"name clobber when pyc_compile is asked to compile a source file containing " +"multiple dots in the source file name." + +#: ../../build/NEWS:9028 +msgid "" +"`bpo-21971 `__: Update turtledemo doc " +"and add module to the index." +msgstr "" +"`bpo-21971 `__: Update turtledemo doc " +"and add module to the index." + +#: ../../build/NEWS:9030 +msgid "" +"`bpo-21032 `__: Fixed socket leak if " +"HTTPConnection.getresponse() fails. Original patch by Martin Panter." +msgstr "" +"`bpo-21032 `__: Fixed socket leak if " +"HTTPConnection.getresponse() fails. Original patch by Martin Panter." + +#: ../../build/NEWS:9033 +msgid "" +"`bpo-22407 `__: Deprecated the use of re." +"LOCALE flag with str patterns or re.ASCII. It was newer worked." +msgstr "" +"`bpo-22407 `__: Deprecated the use of re." +"LOCALE flag with str patterns or re.ASCII. It was newer worked." + +#: ../../build/NEWS:9036 +msgid "" +"`bpo-22902 `__: The \"ip\" command is " +"now used on Linux to determine MAC address in uuid.getnode(). Pach by Bruno " +"Cauet." +msgstr "" +"`bpo-22902 `__: The \"ip\" command is " +"now used on Linux to determine MAC address in uuid.getnode(). Pach by Bruno " +"Cauet." + +#: ../../build/NEWS:9039 +msgid "" +"`bpo-22960 `__: Add a context argument " +"to xmlrpclib.ServerProxy constructor." +msgstr "" +"`bpo-22960 `__: Add a context argument " +"to xmlrpclib.ServerProxy constructor." + +#: ../../build/NEWS:9041 +msgid "" +"`bpo-22389 `__: Add contextlib." +"redirect_stderr()." +msgstr "" +"`bpo-22389 `__: Add contextlib." +"redirect_stderr()." + +#: ../../build/NEWS:9043 +msgid "" +"`bpo-21356 `__: Make ssl.RAND_egd() " +"optional to support LibreSSL. The availability of the function is checked " +"during the compilation. Patch written by Bernard Spil." +msgstr "" +"`bpo-21356 `__: Make ssl.RAND_egd() " +"optional to support LibreSSL. The availability of the function is checked " +"during the compilation. Patch written by Bernard Spil." + +#: ../../build/NEWS:9047 +msgid "" +"`bpo-22915 `__: SAX parser now supports " +"files opened with file descriptor or bytes path." +msgstr "" +"`bpo-22915 `__: SAX parser now supports " +"files opened with file descriptor or bytes path." + +#: ../../build/NEWS:9050 +msgid "" +"`bpo-22609 `__: Constructors and update " +"methods of mapping classes in the collections module now accept the self " +"keyword argument." +msgstr "" +"`bpo-22609 `__: Constructors and update " +"methods of mapping classes in the collections module now accept the self " +"keyword argument." + +#: ../../build/NEWS:9053 +msgid "" +"`bpo-22940 `__: Add readline." +"append_history_file." +msgstr "" +"`bpo-22940 `__: Add readline." +"append_history_file." + +#: ../../build/NEWS:9055 +msgid "" +"`bpo-19676 `__: Added the \"namereplace" +"\" error handler." +msgstr "" +"`bpo-19676 `__: Added the \"namereplace" +"\" error handler." + +#: ../../build/NEWS:9057 +msgid "" +"`bpo-22788 `__: Add *context* parameter " +"to logging.handlers.HTTPHandler." +msgstr "" +"`bpo-22788 `__: Add *context* parameter " +"to logging.handlers.HTTPHandler." + +#: ../../build/NEWS:9059 +msgid "" +"`bpo-22921 `__: Allow SSLContext to take " +"the *hostname* parameter even if OpenSSL doesn't support SNI." +msgstr "" +"`bpo-22921 `__: Allow SSLContext to take " +"the *hostname* parameter even if OpenSSL doesn't support SNI." + +#: ../../build/NEWS:9062 +msgid "" +"`bpo-22894 `__: TestCase.subTest() would " +"cause the test suite to be stopped when in failfast mode, even in the " +"absence of failures." +msgstr "" +"`bpo-22894 `__: TestCase.subTest() would " +"cause the test suite to be stopped when in failfast mode, even in the " +"absence of failures." + +#: ../../build/NEWS:9065 +msgid "" +"`bpo-22796 `__: HTTP cookie parsing is " +"now stricter, in order to protect against potential injection attacks." +msgstr "" +"`bpo-22796 `__: HTTP cookie parsing is " +"now stricter, in order to protect against potential injection attacks." + +#: ../../build/NEWS:9068 +msgid "" +"`bpo-22370 `__: Windows detection in " +"pathlib is now more robust." +msgstr "" +"`bpo-22370 `__: Windows detection in " +"pathlib is now more robust." + +#: ../../build/NEWS:9070 +msgid "" +"`bpo-22841 `__: Reject coroutines in " +"asyncio add_signal_handler(). Patch by Ludovic.Gasc." +msgstr "" +"`bpo-22841 `__: Reject coroutines in " +"asyncio add_signal_handler(). Patch by Ludovic.Gasc." + +#: ../../build/NEWS:9073 +msgid "" +"`bpo-19494 `__: Added urllib.request." +"HTTPBasicPriorAuthHandler. Patch by Matej Cepl." +msgstr "" +"`bpo-19494 `__: Added urllib.request." +"HTTPBasicPriorAuthHandler. Patch by Matej Cepl." + +#: ../../build/NEWS:9076 +msgid "" +"`bpo-22578 `__: Added attributes to the " +"re.error class." +msgstr "" +"`bpo-22578 `__: Added attributes to the " +"re.error class." + +#: ../../build/NEWS:9078 +msgid "" +"`bpo-22849 `__: Fix possible double free " +"in the io.TextIOWrapper constructor." +msgstr "" +"`bpo-22849 `__: Fix possible double free " +"in the io.TextIOWrapper constructor." + +#: ../../build/NEWS:9080 +msgid "" +"`bpo-12728 `__: Different Unicode " +"characters having the same uppercase but different lowercase are now matched " +"in case-insensitive regular expressions." +msgstr "" +"`bpo-12728 `__: Different Unicode " +"characters having the same uppercase but different lowercase are now matched " +"in case-insensitive regular expressions." + +#: ../../build/NEWS:9084 +msgid "" +"`bpo-22821 `__: Fixed fcntl() with " +"integer argument on 64-bit big-endian platforms." +msgstr "" +"`bpo-22821 `__: Fixed fcntl() with " +"integer argument on 64-bit big-endian platforms." + +#: ../../build/NEWS:9087 +msgid "" +"`bpo-21650 `__: Add an `--sort-keys` " +"option to json.tool CLI." +msgstr "" +"`bpo-21650 `__: Add an `--sort-keys` " +"option to json.tool CLI." + +#: ../../build/NEWS:9089 +msgid "" +"`bpo-22824 `__: Updated reprlib output " +"format for sets to use set literals. Patch contributed by Berker Peksag." +msgstr "" +"`bpo-22824 `__: Updated reprlib output " +"format for sets to use set literals. Patch contributed by Berker Peksag." + +#: ../../build/NEWS:9092 +msgid "" +"`bpo-22824 `__: Updated reprlib output " +"format for arrays to display empty arrays without an unnecessary empty " +"list. Suggested by Serhiy Storchaka." +msgstr "" +"`bpo-22824 `__: Updated reprlib output " +"format for arrays to display empty arrays without an unnecessary empty " +"list. Suggested by Serhiy Storchaka." + +#: ../../build/NEWS:9095 +msgid "" +"`bpo-22406 `__: Fixed the uu_codec codec " +"incorrectly ported to 3.x. Based on patch by Martin Panter." +msgstr "" +"`bpo-22406 `__: Fixed the uu_codec codec " +"incorrectly ported to 3.x. Based on patch by Martin Panter." + +#: ../../build/NEWS:9098 +msgid "" +"`bpo-17293 `__: uuid.getnode() now " +"determines MAC address on AIX using netstat. Based on patch by Aivars " +"Kalvāns." +msgstr "" +"`bpo-17293 `__: uuid.getnode() now " +"determines MAC address on AIX using netstat. Based on patch by Aivars " +"Kalvāns." + +#: ../../build/NEWS:9101 +msgid "" +"`bpo-22769 `__: Fixed ttk.Treeview." +"tag_has() when called without arguments." +msgstr "" +"`bpo-22769 `__: Fixed ttk.Treeview." +"tag_has() when called without arguments." + +#: ../../build/NEWS:9103 +msgid "" +"`bpo-22417 `__: Verify certificates by " +"default in httplib (PEP 476)." +msgstr "" +"`bpo-22417 `__: Verify certificates by " +"default in httplib (PEP 476)." + +#: ../../build/NEWS:9108 +msgid "" +"`bpo-22776 `__: Brought excluded code " +"into the scope of a try block in SysLogHandler.emit()." +msgstr "" +"`bpo-22776 `__: Brought excluded code " +"into the scope of a try block in SysLogHandler.emit()." + +#: ../../build/NEWS:9111 +msgid "" +"`bpo-22665 `__: Add missing " +"get_terminal_size and SameFileError to shutil.__all__." +msgstr "" +"`bpo-22665 `__: Add missing " +"get_terminal_size and SameFileError to shutil.__all__." + +#: ../../build/NEWS:9114 +msgid "" +"`bpo-6623 `__: Remove deprecated Netrc " +"class in the ftplib module. Patch by Matt Chaput." +msgstr "" +"`bpo-6623 `__: Remove deprecated Netrc " +"class in the ftplib module. Patch by Matt Chaput." + +#: ../../build/NEWS:9117 +msgid "" +"`bpo-17381 `__: Fixed handling of case-" +"insensitive ranges in regular expressions." +msgstr "" +"`bpo-17381 `__: Fixed handling of case-" +"insensitive ranges in regular expressions." + +#: ../../build/NEWS:9120 +msgid "" +"`bpo-22410 `__: Module level functions " +"in the re module now cache compiled locale-dependent regular expressions " +"taking into account the locale." +msgstr "" +"`bpo-22410 `__: Module level functions " +"in the re module now cache compiled locale-dependent regular expressions " +"taking into account the locale." + +#: ../../build/NEWS:9123 +msgid "" +"`bpo-22759 `__: Query methods on pathlib." +"Path() (exists(), is_dir(), etc.) now return False when the underlying stat " +"call raises NotADirectoryError." +msgstr "" +"`bpo-22759 `__: Query methods on pathlib." +"Path() (exists(), is_dir(), etc.) now return False when the underlying stat " +"call raises NotADirectoryError." + +#: ../../build/NEWS:9130 +msgid "" +"`bpo-22217 `__: Implemented reprs of " +"classes in the zipfile module." +msgstr "" +"`bpo-22217 `__: Implemented reprs of " +"classes in the zipfile module." + +#: ../../build/NEWS:9132 +msgid "" +"`bpo-22457 `__: Honour load_tests in the " +"start_dir of discovery." +msgstr "" +"`bpo-22457 `__: Honour load_tests in the " +"start_dir of discovery." + +#: ../../build/NEWS:9134 +msgid "" +"`bpo-18216 `__: gettext now raises an " +"error when a .mo file has an unsupported major version number. Patch by " +"Aaron Hill." +msgstr "" +"`bpo-18216 `__: gettext now raises an " +"error when a .mo file has an unsupported major version number. Patch by " +"Aaron Hill." + +#: ../../build/NEWS:9141 +msgid "" +"`bpo-22676 `__: Make the pickling of " +"global objects which don't have a __module__ attribute less slow." +msgstr "" +"`bpo-22676 `__: Make the pickling of " +"global objects which don't have a __module__ attribute less slow." + +#: ../../build/NEWS:9144 +msgid "" +"`bpo-18853 `__: Fixed ResourceWarning in " +"shlex.__nain__." +msgstr "" +"`bpo-18853 `__: Fixed ResourceWarning in " +"shlex.__nain__." + +#: ../../build/NEWS:9146 +msgid "" +"`bpo-9351 `__: Defaults set with " +"set_defaults on an argparse subparser are no longer ignored when also set on " +"the parent parser." +msgstr "" +"`bpo-9351 `__: Defaults set with " +"set_defaults on an argparse subparser are no longer ignored when also set on " +"the parent parser." + +#: ../../build/NEWS:9149 +msgid "" +"`bpo-7559 `__: unittest test loading " +"ImportErrors are reported as import errors with their import exception " +"rather than as attribute errors after the import has already failed." +msgstr "" +"`bpo-7559 `__: unittest test loading " +"ImportErrors are reported as import errors with their import exception " +"rather than as attribute errors after the import has already failed." + +#: ../../build/NEWS:9153 +msgid "" +"`bpo-19746 `__: Make it possible to " +"examine the errors from unittest discovery without executing the test suite. " +"The new `errors` attribute on TestLoader exposes these non-fatal errors " +"encountered during discovery." +msgstr "" +"`bpo-19746 `__: Make it possible to " +"examine the errors from unittest discovery without executing the test suite. " +"The new `errors` attribute on TestLoader exposes these non-fatal errors " +"encountered during discovery." + +#: ../../build/NEWS:9161 +msgid "" +"`bpo-22638 `__: SSLv3 is now disabled " +"throughout the standard library. It can still be enabled by instantiating a " +"SSLContext manually." +msgstr "" +"`bpo-22638 `__: SSLv3 is now disabled " +"throughout the standard library. It can still be enabled by instantiating a " +"SSLContext manually." + +#: ../../build/NEWS:9164 +msgid "" +"`bpo-22641 `__: In asyncio, the default " +"SSL context for client connections is now created using ssl." +"create_default_context(), for stronger security." +msgstr "" +"`bpo-22641 `__: In asyncio, the default " +"SSL context for client connections is now created using ssl." +"create_default_context(), for stronger security." + +#: ../../build/NEWS:9167 +msgid "" +"`bpo-17401 `__: Include closefd in io." +"FileIO repr." +msgstr "" +"`bpo-17401 `__: Include closefd in io." +"FileIO repr." + +#: ../../build/NEWS:9169 +msgid "" +"`bpo-21338 `__: Add silent mode for " +"compileall. quiet parameters of compile_{dir, file, path} functions now have " +"a multilevel value. Also, -q option of the CLI now have a multilevel value. " +"Patch by Thomas Kluyver." +msgstr "" +"`bpo-21338 `__: Add silent mode for " +"compileall. quiet parameters of compile_{dir, file, path} functions now have " +"a multilevel value. Also, -q option of the CLI now have a multilevel value. " +"Patch by Thomas Kluyver." + +#: ../../build/NEWS:9173 +msgid "" +"`bpo-20152 `__: Convert the array and " +"cmath modules to Argument Clinic." +msgstr "" +"`bpo-20152 `__: Convert the array and " +"cmath modules to Argument Clinic." + +#: ../../build/NEWS:9175 +msgid "" +"`bpo-18643 `__: Add socket.socketpair() " +"on Windows." +msgstr "" +"`bpo-18643 `__: Add socket.socketpair() " +"on Windows." + +#: ../../build/NEWS:9177 +msgid "" +"`bpo-22435 `__: Fix a file descriptor " +"leak when socketserver bind fails." +msgstr "" +"`bpo-22435 `__: Fix a file descriptor " +"leak when socketserver bind fails." + +#: ../../build/NEWS:9179 +msgid "" +"`bpo-13096 `__: Fixed segfault in CTypes " +"POINTER handling of large values." +msgstr "" +"`bpo-13096 `__: Fixed segfault in CTypes " +"POINTER handling of large values." + +#: ../../build/NEWS:9181 +msgid "" +"`bpo-11694 `__: Raise ConversionError in " +"xdrlib as documented. Patch by Filip Gruszczyński and Claudiu Popa." +msgstr "" +"`bpo-11694 `__: Raise ConversionError in " +"xdrlib as documented. Patch by Filip Gruszczyński and Claudiu Popa." + +#: ../../build/NEWS:9184 +msgid "" +"`bpo-19380 `__: Optimized parsing of " +"regular expressions." +msgstr "" +"`bpo-19380 `__: Optimized parsing of " +"regular expressions." + +#: ../../build/NEWS:9186 +msgid "" +"`bpo-1519638 `__: Now unmatched groups " +"are replaced with empty strings in re.sub() and re.subn()." +msgstr "" +"`bpo-1519638 `__: Now unmatched groups " +"are replaced with empty strings in re.sub() and re.subn()." + +#: ../../build/NEWS:9189 +msgid "" +"`bpo-18615 `__: sndhdr.what/whathdr now " +"return a namedtuple." +msgstr "" +"`bpo-18615 `__: sndhdr.what/whathdr now " +"return a namedtuple." + +#: ../../build/NEWS:9191 +msgid "" +"`bpo-22462 `__: Fix pyexpat's creation " +"of a dummy frame to make it appear in exception tracebacks." +msgstr "" +"`bpo-22462 `__: Fix pyexpat's creation " +"of a dummy frame to make it appear in exception tracebacks." + +#: ../../build/NEWS:9194 +msgid "" +"`bpo-21965 `__: Add support for in-" +"memory SSL to the ssl module. Patch by Geert Jansen." +msgstr "" +"`bpo-21965 `__: Add support for in-" +"memory SSL to the ssl module. Patch by Geert Jansen." + +#: ../../build/NEWS:9197 +msgid "" +"`bpo-21173 `__: Fix len() on a " +"WeakKeyDictionary when .clear() was called with an iterator alive." +msgstr "" +"`bpo-21173 `__: Fix len() on a " +"WeakKeyDictionary when .clear() was called with an iterator alive." + +#: ../../build/NEWS:9200 +msgid "" +"`bpo-11866 `__: Eliminated race " +"condition in the computation of names for new threads." +msgstr "" +"`bpo-11866 `__: Eliminated race " +"condition in the computation of names for new threads." + +#: ../../build/NEWS:9203 +msgid "" +"`bpo-21905 `__: Avoid RuntimeError in " +"pickle.whichmodule() when sys.modules is mutated while iterating. Patch by " +"Olivier Grisel." +msgstr "" +"`bpo-21905 `__: Avoid RuntimeError in " +"pickle.whichmodule() when sys.modules is mutated while iterating. Patch by " +"Olivier Grisel." + +#: ../../build/NEWS:9206 +msgid "" +"`bpo-11271 `__: concurrent.futures." +"Executor.map() now takes a *chunksize* argument to allow batching of tasks " +"in child processes and improve performance of ProcessPoolExecutor. Patch by " +"Dan O'Reilly." +msgstr "" +"`bpo-11271 `__: concurrent.futures." +"Executor.map() now takes a *chunksize* argument to allow batching of tasks " +"in child processes and improve performance of ProcessPoolExecutor. Patch by " +"Dan O'Reilly." + +#: ../../build/NEWS:9210 +msgid "" +"`bpo-21883 `__: os.path.join() and os." +"path.relpath() now raise a TypeError with more helpful error message for " +"unsupported or mismatched types of arguments." +msgstr "" +"`bpo-21883 `__: os.path.join() and os." +"path.relpath() now raise a TypeError with more helpful error message for " +"unsupported or mismatched types of arguments." + +#: ../../build/NEWS:9214 +msgid "" +"`bpo-22219 `__: The zipfile module CLI " +"now adds entries for directories (including empty directories) in ZIP file." +msgstr "" +"`bpo-22219 `__: The zipfile module CLI " +"now adds entries for directories (including empty directories) in ZIP file." + +#: ../../build/NEWS:9217 +msgid "" +"`bpo-22449 `__: In the ssl.SSLContext." +"load_default_certs, consult the environmental variables SSL_CERT_DIR and " +"SSL_CERT_FILE on Windows." +msgstr "" +"`bpo-22449 `__: In the ssl.SSLContext." +"load_default_certs, consult the environmental variables SSL_CERT_DIR and " +"SSL_CERT_FILE on Windows." + +#: ../../build/NEWS:9220 +msgid "" +"`bpo-22508 `__: The email.__version__ " +"variable has been removed; the email code is no longer shipped separately " +"from the stdlib, and __version__ hasn't been updated in several releases." +msgstr "" +"`bpo-22508 `__: The email.__version__ " +"variable has been removed; the email code is no longer shipped separately " +"from the stdlib, and __version__ hasn't been updated in several releases." + +#: ../../build/NEWS:9224 +msgid "" +"`bpo-20076 `__: Added non derived UTF-8 " +"aliases to locale aliases table." +msgstr "" +"`bpo-20076 `__: Added non derived UTF-8 " +"aliases to locale aliases table." + +#: ../../build/NEWS:9226 +msgid "" +"`bpo-20079 `__: Added locales supported " +"in glibc 2.18 to locale alias table." +msgstr "" +"`bpo-20079 `__: Added locales supported " +"in glibc 2.18 to locale alias table." + +#: ../../build/NEWS:9228 +msgid "" +"`bpo-20218 `__: Added convenience " +"methods read_text/write_text and read_bytes/ write_bytes to pathlib.Path " +"objects." +msgstr "" +"`bpo-20218 `__: Added convenience " +"methods read_text/write_text and read_bytes/ write_bytes to pathlib.Path " +"objects." + +#: ../../build/NEWS:9231 +msgid "" +"`bpo-22396 `__: On 32-bit AIX platform, " +"don't expose os.posix_fadvise() nor os.posix_fallocate() because their " +"prototypes in system headers are wrong." +msgstr "" +"`bpo-22396 `__: On 32-bit AIX platform, " +"don't expose os.posix_fadvise() nor os.posix_fallocate() because their " +"prototypes in system headers are wrong." + +#: ../../build/NEWS:9234 +msgid "" +"`bpo-22517 `__: When an io." +"BufferedRWPair object is deallocated, clear its weakrefs." +msgstr "" +"`bpo-22517 `__: When an io." +"BufferedRWPair object is deallocated, clear its weakrefs." + +#: ../../build/NEWS:9237 +msgid "" +"`bpo-22437 `__: Number of capturing " +"groups in regular expression is no longer limited by 100." +msgstr "" +"`bpo-22437 `__: Number of capturing " +"groups in regular expression is no longer limited by 100." + +#: ../../build/NEWS:9240 +msgid "" +"`bpo-17442 `__: InteractiveInterpreter " +"now displays the full chained traceback in its showtraceback method, to " +"match the built in interactive interpreter." +msgstr "" +"`bpo-17442 `__: InteractiveInterpreter " +"now displays the full chained traceback in its showtraceback method, to " +"match the built in interactive interpreter." + +#: ../../build/NEWS:9244 +msgid "" +"`bpo-23392 `__: Added tests for marshal " +"C API that works with FILE*." +msgstr "" +"`bpo-23392 `__: Added tests for marshal " +"C API that works with FILE*." + +#: ../../build/NEWS:9246 +msgid "" +"`bpo-10510 `__: distutils register and " +"upload methods now use HTML standards compliant CRLF line endings." +msgstr "" +"`bpo-10510 `__: distutils register and " +"upload methods now use HTML standards compliant CRLF line endings." + +#: ../../build/NEWS:9249 +msgid "" +"`bpo-9850 `__: Fixed macpath.join() for " +"empty first component. Patch by Oleg Oshmyan." +msgstr "" +"`bpo-9850 `__: Fixed macpath.join() for " +"empty first component. Patch by Oleg Oshmyan." + +#: ../../build/NEWS:9252 +msgid "" +"`bpo-5309 `__: distutils' build and " +"build_ext commands now accept a ``-j`` option to enable parallel building of " +"extension modules." +msgstr "" +"`bpo-5309 `__: distutils' build and " +"build_ext commands now accept a ``-j`` option to enable parallel building of " +"extension modules." + +#: ../../build/NEWS:9255 +msgid "" +"`bpo-22448 `__: Improve canceled timer " +"handles cleanup to prevent unbound memory usage. Patch by Joshua Moore-Oliva." +msgstr "" +"`bpo-22448 `__: Improve canceled timer " +"handles cleanup to prevent unbound memory usage. Patch by Joshua Moore-Oliva." + +#: ../../build/NEWS:9258 +msgid "" +"`bpo-22427 `__: TemporaryDirectory no " +"longer attempts to clean up twice when used in the with statement in " +"generator." +msgstr "" +"`bpo-22427 `__: TemporaryDirectory no " +"longer attempts to clean up twice when used in the with statement in " +"generator." + +#: ../../build/NEWS:9261 +msgid "" +"`bpo-22362 `__: Forbidden ambiguous " +"octal escapes out of range 0-0o377 in regular expressions." +msgstr "" +"`bpo-22362 `__: Forbidden ambiguous " +"octal escapes out of range 0-0o377 in regular expressions." + +#: ../../build/NEWS:9264 +msgid "" +"`bpo-20912 `__: Now directories added to " +"ZIP file have correct Unix and MS-DOS directory attributes." +msgstr "" +"`bpo-20912 `__: Now directories added to " +"ZIP file have correct Unix and MS-DOS directory attributes." + +#: ../../build/NEWS:9267 +msgid "" +"`bpo-21866 `__: ZipFile.close() no " +"longer writes ZIP64 central directory records if allowZip64 is false." +msgstr "" +"`bpo-21866 `__: ZipFile.close() no " +"longer writes ZIP64 central directory records if allowZip64 is false." + +#: ../../build/NEWS:9270 +msgid "" +"`bpo-22278 `__: Fix urljoin problem with " +"relative urls, a regression observed after changes to issue22118 were " +"submitted." +msgstr "" +"`bpo-22278 `__: Fix urljoin problem with " +"relative urls, a regression observed after changes to issue22118 were " +"submitted." + +#: ../../build/NEWS:9276 +msgid "" +"`bpo-22423 `__: Unhandled exception in " +"thread no longer causes unhandled AttributeError when sys.stderr is None." +msgstr "" +"`bpo-22423 `__: Unhandled exception in " +"thread no longer causes unhandled AttributeError when sys.stderr is None." + +#: ../../build/NEWS:9279 +msgid "" +"`bpo-21332 `__: Ensure that " +"``bufsize=1`` in subprocess.Popen() selects line buffering, rather than " +"block buffering. Patch by Akira Li." +msgstr "" +"`bpo-21332 `__: Ensure that " +"``bufsize=1`` in subprocess.Popen() selects line buffering, rather than " +"block buffering. Patch by Akira Li." + +#: ../../build/NEWS:9282 +msgid "" +"`bpo-21091 `__: Fix API bug: email." +"message.EmailMessage.is_attachment is now a method." +msgstr "" +"`bpo-21091 `__: Fix API bug: email." +"message.EmailMessage.is_attachment is now a method." + +#: ../../build/NEWS:9285 +msgid "" +"`bpo-21079 `__: Fix email.message." +"EmailMessage.is_attachment to return the correct result when the header has " +"parameters as well as a value." +msgstr "" +"`bpo-21079 `__: Fix email.message." +"EmailMessage.is_attachment to return the correct result when the header has " +"parameters as well as a value." + +#: ../../build/NEWS:9288 +msgid "" +"`bpo-22247 `__: Add NNTPError to nntplib." +"__all__." +msgstr "" +"`bpo-22247 `__: Add NNTPError to nntplib." +"__all__." + +#: ../../build/NEWS:9290 +msgid "" +"`bpo-22366 `__: urllib.request.urlopen " +"will accept a context object (SSLContext) as an argument which will then be " +"used for HTTPS connection. Patch by Alex Gaynor." +msgstr "" +"`bpo-22366 `__: urllib.request.urlopen " +"will accept a context object (SSLContext) as an argument which will then be " +"used for HTTPS connection. Patch by Alex Gaynor." + +#: ../../build/NEWS:9294 +msgid "" +"`bpo-4180 `__: The warnings registries " +"are now reset when the filters are modified." +msgstr "" +"`bpo-4180 `__: The warnings registries " +"are now reset when the filters are modified." + +#: ../../build/NEWS:9297 +msgid "" +"`bpo-22419 `__: Limit the length of " +"incoming HTTP request in wsgiref server to 65536 bytes and send a 414 error " +"code for higher lengths. Patch contributed by Devin Cook." +msgstr "" +"`bpo-22419 `__: Limit the length of " +"incoming HTTP request in wsgiref server to 65536 bytes and send a 414 error " +"code for higher lengths. Patch contributed by Devin Cook." + +#: ../../build/NEWS:9301 +msgid "" +"Lax cookie parsing in http.cookies could be a security issue when combined " +"with non-standard cookie handling in some Web browsers. Reported by Sergey " +"Bobrov." +msgstr "" + +#: ../../build/NEWS:9305 +msgid "" +"`bpo-20537 `__: logging methods now " +"accept an exception instance as well as a Boolean value or exception tuple. " +"Thanks to Yury Selivanov for the patch." +msgstr "" +"`bpo-20537 `__: logging methods now " +"accept an exception instance as well as a Boolean value or exception tuple. " +"Thanks to Yury Selivanov for the patch." + +#: ../../build/NEWS:9308 +msgid "" +"`bpo-22384 `__: An exception in Tkinter " +"callback no longer crashes the program when it is run with pythonw.exe." +msgstr "" +"`bpo-22384 `__: An exception in Tkinter " +"callback no longer crashes the program when it is run with pythonw.exe." + +#: ../../build/NEWS:9311 +msgid "" +"`bpo-22168 `__: Prevent turtle " +"AttributeError with non-default Canvas on OS X." +msgstr "" +"`bpo-22168 `__: Prevent turtle " +"AttributeError with non-default Canvas on OS X." + +#: ../../build/NEWS:9313 +msgid "" +"`bpo-21147 `__: sqlite3 now raises an " +"exception if the request contains a null character instead of truncating " +"it. Based on patch by Victor Stinner." +msgstr "" +"`bpo-21147 `__: sqlite3 now raises an " +"exception if the request contains a null character instead of truncating " +"it. Based on patch by Victor Stinner." + +#: ../../build/NEWS:9316 +msgid "" +"`bpo-13968 `__: The glob module now " +"supports recursive search in subdirectories using the ``**`` pattern." +msgstr "" +"`bpo-13968 `__: The glob module now " +"supports recursive search in subdirectories using the ``**`` pattern." + +#: ../../build/NEWS:9319 +msgid "" +"`bpo-21951 `__: Fixed a crash in Tkinter " +"on AIX when called Tcl command with empty string or tuple argument." +msgstr "" +"`bpo-21951 `__: Fixed a crash in Tkinter " +"on AIX when called Tcl command with empty string or tuple argument." + +#: ../../build/NEWS:9322 +msgid "" +"`bpo-21951 `__: Tkinter now most likely " +"raises MemoryError instead of crash if the memory allocation fails." +msgstr "" +"`bpo-21951 `__: Tkinter now most likely " +"raises MemoryError instead of crash if the memory allocation fails." + +#: ../../build/NEWS:9325 +msgid "" +"`bpo-22338 `__: Fix a crash in the json " +"module on memory allocation failure." +msgstr "" +"`bpo-22338 `__: Fix a crash in the json " +"module on memory allocation failure." + +#: ../../build/NEWS:9327 +msgid "" +"`bpo-12410 `__: imaplib.IMAP4 now " +"supports the context management protocol. Original patch by Tarek Ziadé." +msgstr "" +"`bpo-12410 `__: imaplib.IMAP4 now " +"supports the context management protocol. Original patch by Tarek Ziadé." + +#: ../../build/NEWS:9330 +msgid "" +"`bpo-21270 `__: We now override tuple " +"methods in mock.call objects so that they can be used as normal call " +"attributes." +msgstr "" +"`bpo-21270 `__: We now override tuple " +"methods in mock.call objects so that they can be used as normal call " +"attributes." + +#: ../../build/NEWS:9333 +msgid "" +"`bpo-16662 `__: load_tests() is now " +"unconditionally run when it is present in a package's __init__.py. " +"TestLoader.loadTestsFromModule() still accepts use_load_tests, but it is " +"deprecated and ignored. A new keyword-only attribute `pattern` is added and " +"documented. Patch given by Robert Collins, tweaked by Barry Warsaw." +msgstr "" +"`bpo-16662 `__: load_tests() is now " +"unconditionally run when it is present in a package's __init__.py. " +"TestLoader.loadTestsFromModule() still accepts use_load_tests, but it is " +"deprecated and ignored. A new keyword-only attribute `pattern` is added and " +"documented. Patch given by Robert Collins, tweaked by Barry Warsaw." + +#: ../../build/NEWS:9339 +msgid "" +"`bpo-22226 `__: First letter no longer " +"is stripped from the \"status\" key in the result of Treeview.heading()." +msgstr "" +"`bpo-22226 `__: First letter no longer " +"is stripped from the \"status\" key in the result of Treeview.heading()." + +#: ../../build/NEWS:9342 +msgid "" +"`bpo-19524 `__: Fixed resource leak in " +"the HTTP connection when an invalid response is received. Patch by Martin " +"Panter." +msgstr "" +"`bpo-19524 `__: Fixed resource leak in " +"the HTTP connection when an invalid response is received. Patch by Martin " +"Panter." + +#: ../../build/NEWS:9345 +msgid "" +"`bpo-20421 `__: Add a .version() method " +"to SSL sockets exposing the actual protocol version in use." +msgstr "" +"`bpo-20421 `__: Add a .version() method " +"to SSL sockets exposing the actual protocol version in use." + +#: ../../build/NEWS:9352 +msgid "" +"`bpo-22051 `__: turtledemo no longer " +"reloads examples to re-run them. Initialization of variables and gui setup " +"should be done in main(), which is called each time a demo is run, but not " +"on import." +msgstr "" +"`bpo-22051 `__: turtledemo no longer " +"reloads examples to re-run them. Initialization of variables and gui setup " +"should be done in main(), which is called each time a demo is run, but not " +"on import." + +#: ../../build/NEWS:9356 +msgid "" +"`bpo-21933 `__: Turtledemo users can " +"change the code font size with a menu selection or control(command) '-' or " +"'+' or control-mousewheel. Original patch by Lita Cho." +msgstr "" +"`bpo-21933 `__: Turtledemo users can " +"change the code font size with a menu selection or control(command) '-' or " +"'+' or control-mousewheel. Original patch by Lita Cho." + +#: ../../build/NEWS:9360 +msgid "" +"`bpo-21597 `__: The separator between " +"the turtledemo text pane and the drawing canvas can now be grabbed and " +"dragged with a mouse. The code text pane can be widened to easily view or " +"copy the full width of the text. The canvas can be widened on small " +"screens. Original patches by Jan Kanis and Lita Cho." +msgstr "" +"`bpo-21597 `__: The separator between " +"the turtledemo text pane and the drawing canvas can now be grabbed and " +"dragged with a mouse. The code text pane can be widened to easily view or " +"copy the full width of the text. The canvas can be widened on small " +"screens. Original patches by Jan Kanis and Lita Cho." + +#: ../../build/NEWS:9366 +msgid "" +"`bpo-18132 `__: Turtledemo buttons no " +"longer disappear when the window is shrunk. Original patches by Jan Kanis " +"and Lita Cho." +msgstr "" +"`bpo-18132 `__: Turtledemo buttons no " +"longer disappear when the window is shrunk. Original patches by Jan Kanis " +"and Lita Cho." + +#: ../../build/NEWS:9369 +msgid "" +"`bpo-22043 `__: time.monotonic() is now " +"always available. ``threading.Lock.acquire()``, ``threading.RLock." +"acquire()`` and socket operations now use a monotonic clock, instead of the " +"system clock, when a timeout is used." +msgstr "" +"`bpo-22043 `__: time.monotonic() is now " +"always available. ``threading.Lock.acquire()``, ``threading.RLock." +"acquire()`` and socket operations now use a monotonic clock, instead of the " +"system clock, when a timeout is used." + +#: ../../build/NEWS:9374 +msgid "" +"`bpo-21527 `__: Add a default number of " +"workers to ThreadPoolExecutor equal to 5 times the number of CPUs. Patch by " +"Claudiu Popa." +msgstr "" +"`bpo-21527 `__: Add a default number of " +"workers to ThreadPoolExecutor equal to 5 times the number of CPUs. Patch by " +"Claudiu Popa." + +#: ../../build/NEWS:9377 +msgid "" +"`bpo-22216 `__: smtplib now resets its " +"state more completely after a quit. The most obvious consequence of the " +"previous behavior was a STARTTLS failure during a connect/starttls/quit/" +"connect/starttls sequence." +msgstr "" +"`bpo-22216 `__: smtplib now resets its " +"state more completely after a quit. The most obvious consequence of the " +"previous behavior was a STARTTLS failure during a connect/starttls/quit/" +"connect/starttls sequence." + +#: ../../build/NEWS:9385 +msgid "" +"`bpo-22185 `__: Fix an occasional " +"RuntimeError in threading.Condition.wait() caused by mutation of the waiters " +"queue without holding the lock. Patch by Doug Zongker." +msgstr "" +"`bpo-22185 `__: Fix an occasional " +"RuntimeError in threading.Condition.wait() caused by mutation of the waiters " +"queue without holding the lock. Patch by Doug Zongker." + +#: ../../build/NEWS:9389 +msgid "" +"`bpo-22287 `__: On UNIX, " +"_PyTime_gettimeofday() now uses clock_gettime(CLOCK_REALTIME) if available. " +"As a side effect, Python now depends on the librt library on Solaris and on " +"Linux (only with glibc older than 2.17)." +msgstr "" +"`bpo-22287 `__: On UNIX, " +"_PyTime_gettimeofday() now uses clock_gettime(CLOCK_REALTIME) if available. " +"As a side effect, Python now depends on the librt library on Solaris and on " +"Linux (only with glibc older than 2.17)." + +#: ../../build/NEWS:9394 +msgid "" +"`bpo-22182 `__: Use e.args to unpack " +"exceptions correctly in distutils.file_util.move_file. Patch by Claudiu Popa." +msgstr "" +"`bpo-22182 `__: Use e.args to unpack " +"exceptions correctly in distutils.file_util.move_file. Patch by Claudiu Popa." + +#: ../../build/NEWS:9397 +msgid "" +"The webbrowser module now uses subprocess's start_new_session=True rather " +"than a potentially risky preexec_fn=os.setsid call." +msgstr "" + +#: ../../build/NEWS:9400 +msgid "" +"`bpo-22042 `__: signal.set_wakeup_fd(fd) " +"now raises an exception if the file descriptor is in blocking mode." +msgstr "" +"`bpo-22042 `__: signal.set_wakeup_fd(fd) " +"now raises an exception if the file descriptor is in blocking mode." + +#: ../../build/NEWS:9403 +msgid "" +"`bpo-16808 `__: inspect.stack() now " +"returns a named tuple instead of a tuple. Patch by Daniel Shahaf." +msgstr "" +"`bpo-16808 `__: inspect.stack() now " +"returns a named tuple instead of a tuple. Patch by Daniel Shahaf." + +#: ../../build/NEWS:9406 +msgid "" +"`bpo-22236 `__: Fixed Tkinter images " +"copying operations in NoDefaultRoot mode." +msgstr "" +"`bpo-22236 `__: Fixed Tkinter images " +"copying operations in NoDefaultRoot mode." + +#: ../../build/NEWS:9408 +msgid "" +"`bpo-2527 `__: Add a *globals* argument " +"to timeit functions, in order to override the globals namespace in which the " +"timed code is executed. Patch by Ben Roberts." +msgstr "" +"`bpo-2527 `__: Add a *globals* argument " +"to timeit functions, in order to override the globals namespace in which the " +"timed code is executed. Patch by Ben Roberts." + +#: ../../build/NEWS:9412 +msgid "" +"`bpo-22118 `__: Switch urllib.parse to " +"use RFC 3986 semantics for the resolution of relative URLs, rather than RFCs " +"1808 and 2396. Patch by Demian Brecht." +msgstr "" +"`bpo-22118 `__: Switch urllib.parse to " +"use RFC 3986 semantics for the resolution of relative URLs, rather than RFCs " +"1808 and 2396. Patch by Demian Brecht." + +#: ../../build/NEWS:9416 +msgid "" +"`bpo-21549 `__: Added the \"members\" " +"parameter to TarFile.list()." +msgstr "" +"`bpo-21549 `__: Added the \"members\" " +"parameter to TarFile.list()." + +#: ../../build/NEWS:9418 +msgid "" +"`bpo-19628 `__: Allow compileall " +"recursion depth to be specified with a -r option." +msgstr "" +"`bpo-19628 `__: Allow compileall " +"recursion depth to be specified with a -r option." + +#: ../../build/NEWS:9421 +msgid "" +"`bpo-15696 `__: Add a __sizeof__ " +"implementation for mmap objects on Windows." +msgstr "" +"`bpo-15696 `__: Add a __sizeof__ " +"implementation for mmap objects on Windows." + +#: ../../build/NEWS:9423 +msgid "" +"`bpo-22068 `__: Avoided reference loops " +"with Variables and Fonts in Tkinter." +msgstr "" +"`bpo-22068 `__: Avoided reference loops " +"with Variables and Fonts in Tkinter." + +#: ../../build/NEWS:9425 +msgid "" +"`bpo-22165 `__: SimpleHTTPRequestHandler " +"now supports undecodable file names." +msgstr "" +"`bpo-22165 `__: SimpleHTTPRequestHandler " +"now supports undecodable file names." + +#: ../../build/NEWS:9427 +msgid "" +"`bpo-15381 `__: Optimized line reading " +"in io.BytesIO." +msgstr "" +"`bpo-15381 `__: Optimized line reading " +"in io.BytesIO." + +#: ../../build/NEWS:9429 +msgid "" +"`bpo-8797 `__: Raise HTTPError on failed " +"Basic Authentication immediately. Initial patch by Sam Bull." +msgstr "" +"`bpo-8797 `__: Raise HTTPError on failed " +"Basic Authentication immediately. Initial patch by Sam Bull." + +#: ../../build/NEWS:9432 +msgid "" +"`bpo-20729 `__: Restored the use of lazy " +"iterkeys()/itervalues()/iteritems() in the mailbox module." +msgstr "" +"`bpo-20729 `__: Restored the use of lazy " +"iterkeys()/itervalues()/iteritems() in the mailbox module." + +#: ../../build/NEWS:9438 +msgid "" +"`bpo-22184 `__: The functools LRU Cache " +"decorator factory now gives an earlier and clearer error message when the " +"user forgets the required parameters." +msgstr "" +"`bpo-22184 `__: The functools LRU Cache " +"decorator factory now gives an earlier and clearer error message when the " +"user forgets the required parameters." + +#: ../../build/NEWS:9441 +msgid "" +"`bpo-17923 `__: glob() patterns ending " +"with a slash no longer match non-dirs on AIX. Based on patch by Delhallt." +msgstr "" +"`bpo-17923 `__: glob() patterns ending " +"with a slash no longer match non-dirs on AIX. Based on patch by Delhallt." + +#: ../../build/NEWS:9444 +msgid "" +"`bpo-21725 `__: Added support for RFC " +"6531 (SMTPUTF8) in smtpd." +msgstr "" +"`bpo-21725 `__: Added support for RFC " +"6531 (SMTPUTF8) in smtpd." + +#: ../../build/NEWS:9446 +msgid "" +"`bpo-22176 `__: Update the ctypes " +"module's libffi to v3.1. This release adds support for the Linux AArch64 " +"and POWERPC ELF ABIv2 little endian architectures." +msgstr "" +"`bpo-22176 `__: Update the ctypes " +"module's libffi to v3.1. This release adds support for the Linux AArch64 " +"and POWERPC ELF ABIv2 little endian architectures." + +#: ../../build/NEWS:9450 +msgid "" +"`bpo-5411 `__: Added support for the " +"\"xztar\" format in the shutil module." +msgstr "" +"`bpo-5411 `__: Added support for the " +"\"xztar\" format in the shutil module." + +#: ../../build/NEWS:9455 +msgid "" +"`bpo-21975 `__: Fixed crash when using " +"uninitialized sqlite3.Row (in particular when unpickling pickled sqlite3." +"Row). sqlite3.Row is now initialized in the __new__() method." +msgstr "" +"`bpo-21975 `__: Fixed crash when using " +"uninitialized sqlite3.Row (in particular when unpickling pickled sqlite3." +"Row). sqlite3.Row is now initialized in the __new__() method." + +#: ../../build/NEWS:9459 +msgid "" +"`bpo-20170 `__: Convert posixmodule to " +"use Argument Clinic." +msgstr "" +"`bpo-20170 `__: Convert posixmodule to " +"use Argument Clinic." + +#: ../../build/NEWS:9461 +msgid "" +"`bpo-21539 `__: Add an *exists_ok* " +"argument to `Pathlib.mkdir()` to mimic `mkdir -p` and `os.makedirs()` " +"functionality. When true, ignore FileExistsErrors. Patch by Berker Peksag." +msgstr "" +"`bpo-21539 `__: Add an *exists_ok* " +"argument to `Pathlib.mkdir()` to mimic `mkdir -p` and `os.makedirs()` " +"functionality. When true, ignore FileExistsErrors. Patch by Berker Peksag." + +#: ../../build/NEWS:9465 +msgid "" +"`bpo-22127 `__: Bypass IDNA for pure-" +"ASCII host names in the socket module (in particular for numeric IPs)." +msgstr "" +"`bpo-22127 `__: Bypass IDNA for pure-" +"ASCII host names in the socket module (in particular for numeric IPs)." + +#: ../../build/NEWS:9468 +msgid "" +"`bpo-21047 `__: set the default value " +"for the *convert_charrefs* argument of HTMLParser to True. Patch by Berker " +"Peksag." +msgstr "" +"`bpo-21047 `__: set the default value " +"for the *convert_charrefs* argument of HTMLParser to True. Patch by Berker " +"Peksag." + +#: ../../build/NEWS:9471 +msgid "Add an __all__ to html.entities." +msgstr "" + +#: ../../build/NEWS:9473 +msgid "" +"`bpo-15114 `__: the strict mode and " +"argument of HTMLParser, HTMLParser.error, and the HTMLParserError exception " +"have been removed." +msgstr "" +"`bpo-15114 `__: the strict mode and " +"argument of HTMLParser, HTMLParser.error, and the HTMLParserError exception " +"have been removed." + +#: ../../build/NEWS:9476 +msgid "" +"`bpo-22085 `__: Dropped support of Tk " +"8.3 in Tkinter." +msgstr "" +"`bpo-22085 `__: Dropped support of Tk " +"8.3 in Tkinter." + +#: ../../build/NEWS:9478 +msgid "" +"`bpo-21580 `__: Now Tkinter correctly " +"handles bytes arguments passed to Tk. In particular this allows initializing " +"images from binary data." +msgstr "" +"`bpo-21580 `__: Now Tkinter correctly " +"handles bytes arguments passed to Tk. In particular this allows initializing " +"images from binary data." + +#: ../../build/NEWS:9485 +msgid "" +"`bpo-22018 `__: On Windows, signal." +"set_wakeup_fd() now also supports sockets. A side effect is that Python " +"depends to the WinSock library." +msgstr "" +"`bpo-22018 `__: On Windows, signal." +"set_wakeup_fd() now also supports sockets. A side effect is that Python " +"depends to the WinSock library." + +#: ../../build/NEWS:9488 +msgid "" +"`bpo-22054 `__: Add os.get_blocking() " +"and os.set_blocking() functions to get and set the blocking mode of a file " +"descriptor (False if the O_NONBLOCK flag is set, True otherwise). These " +"functions are not available on Windows." +msgstr "" +"`bpo-22054 `__: Add os.get_blocking() " +"and os.set_blocking() functions to get and set the blocking mode of a file " +"descriptor (False if the O_NONBLOCK flag is set, True otherwise). These " +"functions are not available on Windows." + +#: ../../build/NEWS:9499 +msgid "" +"`bpo-20173 `__: Convert sha1, sha256, " +"sha512 and md5 to ArgumentClinic. Patch by Vajrasky Kok." +msgstr "" +"`bpo-20173 `__: Convert sha1, sha256, " +"sha512 and md5 to ArgumentClinic. Patch by Vajrasky Kok." + +#: ../../build/NEWS:9502 +msgid "" +"Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on " +"closed socket. repr(socket.socket) already works fine." +msgstr "" + +#: ../../build/NEWS:9505 +msgid "" +"`bpo-22033 `__: Reprs of most Python " +"implemened classes now contain actual class name instead of hardcoded one." +msgstr "" +"`bpo-22033 `__: Reprs of most Python " +"implemened classes now contain actual class name instead of hardcoded one." + +#: ../../build/NEWS:9508 +msgid "" +"`bpo-21947 `__: The dis module can now " +"disassemble generator-iterator objects based on their gi_code attribute. " +"Patch by Clement Rouault." +msgstr "" +"`bpo-21947 `__: The dis module can now " +"disassemble generator-iterator objects based on their gi_code attribute. " +"Patch by Clement Rouault." + +#: ../../build/NEWS:9511 +msgid "" +"`bpo-16133 `__: The asynchat.async_chat." +"handle_read() method now ignores BlockingIOError exceptions." +msgstr "" +"`bpo-16133 `__: The asynchat.async_chat." +"handle_read() method now ignores BlockingIOError exceptions." + +#: ../../build/NEWS:9514 +msgid "" +"`bpo-22044 `__: Fixed premature DECREF " +"in call_tzinfo_method. Patch by Tom Flanagan." +msgstr "" +"`bpo-22044 `__: Fixed premature DECREF " +"in call_tzinfo_method. Patch by Tom Flanagan." + +#: ../../build/NEWS:9517 +msgid "" +"`bpo-19884 `__: readline: Disable the " +"meta modifier key if stdout is not a terminal to not write the ANSI sequence " +"``\"\\033[1034h\"`` into stdout. This sequence is used on some terminal (ex: " +"TERM=xterm-256color\") to enable support of 8 bit characters." +msgstr "" +"`bpo-19884 `__: readline: Disable the " +"meta modifier key if stdout is not a terminal to not write the ANSI sequence " +"``\"\\033[1034h\"`` into stdout. This sequence is used on some terminal (ex: " +"TERM=xterm-256color\") to enable support of 8 bit characters." + +#: ../../build/NEWS:9522 +msgid "" +"`bpo-4350 `__: Removed a number of out-of-" +"dated and non-working for a long time Tkinter methods." +msgstr "" +"`bpo-4350 `__: Removed a number of out-of-" +"dated and non-working for a long time Tkinter methods." + +#: ../../build/NEWS:9525 +msgid "" +"`bpo-6167 `__: Scrollbar.activate() now " +"returns the name of active element if the argument is not specified. " +"Scrollbar.set() now always accepts only 2 arguments." +msgstr "" +"`bpo-6167 `__: Scrollbar.activate() now " +"returns the name of active element if the argument is not specified. " +"Scrollbar.set() now always accepts only 2 arguments." + +#: ../../build/NEWS:9529 +msgid "" +"`bpo-15275 `__: Clean up and speed up " +"the ntpath module." +msgstr "" +"`bpo-15275 `__: Clean up and speed up " +"the ntpath module." + +#: ../../build/NEWS:9531 +msgid "" +"`bpo-21888 `__: plistlib's load() and " +"loads() now work if the fmt parameter is specified." +msgstr "" +"`bpo-21888 `__: plistlib's load() and " +"loads() now work if the fmt parameter is specified." + +#: ../../build/NEWS:9534 +msgid "" +"`bpo-22032 `__: __qualname__ instead of " +"__name__ is now always used to format fully qualified class names of Python " +"implemented classes." +msgstr "" +"`bpo-22032 `__: __qualname__ instead of " +"__name__ is now always used to format fully qualified class names of Python " +"implemented classes." + +#: ../../build/NEWS:9537 +msgid "" +"`bpo-22031 `__: Reprs now always use " +"hexadecimal format with the \"0x\" prefix when contain an id in form \" at " +"0x...\"." +msgstr "" +"`bpo-22031 `__: Reprs now always use " +"hexadecimal format with the \"0x\" prefix when contain an id in form \" at " +"0x...\"." + +#: ../../build/NEWS:9540 +msgid "" +"`bpo-22018 `__: signal.set_wakeup_fd() " +"now raises an OSError instead of a ValueError on ``fstat()`` failure." +msgstr "" +"`bpo-22018 `__: signal.set_wakeup_fd() " +"now raises an OSError instead of a ValueError on ``fstat()`` failure." + +#: ../../build/NEWS:9543 +msgid "" +"`bpo-21044 `__: tarfile.open() now " +"handles fileobj with an integer 'name' attribute. Based on patch by Antoine " +"Pietri." +msgstr "" +"`bpo-21044 `__: tarfile.open() now " +"handles fileobj with an integer 'name' attribute. Based on patch by Antoine " +"Pietri." + +#: ../../build/NEWS:9546 +msgid "" +"`bpo-21966 `__: Respect -q command-line " +"option when code module is ran." +msgstr "" +"`bpo-21966 `__: Respect -q command-line " +"option when code module is ran." + +#: ../../build/NEWS:9548 +msgid "" +"`bpo-19076 `__: Don't pass the redundant " +"'file' argument to self.error()." +msgstr "" +"`bpo-19076 `__: Don't pass the redundant " +"'file' argument to self.error()." + +#: ../../build/NEWS:9550 +msgid "" +"`bpo-16382 `__: Improve exception " +"message of warnings.warn() for bad category. Initial patch by Phil Elson." +msgstr "" +"`bpo-16382 `__: Improve exception " +"message of warnings.warn() for bad category. Initial patch by Phil Elson." + +#: ../../build/NEWS:9553 +msgid "" +"`bpo-21932 `__: os.read() now uses a :c:" +"func:`Py_ssize_t` type instead of :c:type:`int` for the size to support " +"reading more than 2 GB at once. On Windows, the size is truncted to INT_MAX. " +"As any call to os.read(), the OS may read less bytes than the number of " +"requested bytes." +msgstr "" +"`bpo-21932 `__: os.read() now uses a :c:" +"func:`Py_ssize_t` type instead of :c:type:`int` for the size to support " +"reading more than 2 GB at once. On Windows, the size is truncted to INT_MAX. " +"As any call to os.read(), the OS may read less bytes than the number of " +"requested bytes." + +#: ../../build/NEWS:9558 +msgid "" +"`bpo-21942 `__: Fixed source file " +"viewing in pydoc's server mode on Windows." +msgstr "" +"`bpo-21942 `__: Fixed source file " +"viewing in pydoc's server mode on Windows." + +#: ../../build/NEWS:9560 +msgid "" +"`bpo-11259 `__: asynchat.async_chat()." +"set_terminator() now raises a ValueError if the number of received bytes is " +"negative." +msgstr "" +"`bpo-11259 `__: asynchat.async_chat()." +"set_terminator() now raises a ValueError if the number of received bytes is " +"negative." + +#: ../../build/NEWS:9563 +msgid "" +"`bpo-12523 `__: asynchat.async_chat." +"push() now raises a TypeError if it doesn't get a bytes string" +msgstr "" +"`bpo-12523 `__: asynchat.async_chat." +"push() now raises a TypeError if it doesn't get a bytes string" + +#: ../../build/NEWS:9566 +msgid "" +"`bpo-21707 `__: Add missing " +"kwonlyargcount argument to ModuleFinder.replace_paths_in_code()." +msgstr "" +"`bpo-21707 `__: Add missing " +"kwonlyargcount argument to ModuleFinder.replace_paths_in_code()." + +#: ../../build/NEWS:9572 +msgid "" +"`bpo-21714 `__: Disallow the " +"construction of invalid paths using Path.with_name(). Original patch by " +"Antony Lee." +msgstr "" +"`bpo-21714 `__: Disallow the " +"construction of invalid paths using Path.with_name(). Original patch by " +"Antony Lee." + +#: ../../build/NEWS:9575 +msgid "" +"`bpo-15014 `__: Added 'auth' method to " +"smtplib to make implementing auth mechanisms simpler, and used it internally " +"in the login method." +msgstr "" +"`bpo-15014 `__: Added 'auth' method to " +"smtplib to make implementing auth mechanisms simpler, and used it internally " +"in the login method." + +#: ../../build/NEWS:9578 +msgid "" +"`bpo-21151 `__: Fixed a segfault in the " +"winreg module when ``None`` is passed as a ``REG_BINARY`` value to " +"SetValueEx. Patch by John Ehresman." +msgstr "" +"`bpo-21151 `__: Fixed a segfault in the " +"winreg module when ``None`` is passed as a ``REG_BINARY`` value to " +"SetValueEx. Patch by John Ehresman." + +#: ../../build/NEWS:9581 +msgid "" +"`bpo-21090 `__: io.FileIO.readall() does " +"not ignore I/O errors anymore. Before, it ignored I/O errors if at least the " +"first C call read() succeed." +msgstr "" +"`bpo-21090 `__: io.FileIO.readall() does " +"not ignore I/O errors anymore. Before, it ignored I/O errors if at least the " +"first C call read() succeed." + +#: ../../build/NEWS:9584 +msgid "" +"`bpo-5800 `__: headers parameter of " +"wsgiref.headers.Headers is now optional. Initial patch by Pablo Torres " +"Navarrete and SilentGhost." +msgstr "" +"`bpo-5800 `__: headers parameter of " +"wsgiref.headers.Headers is now optional. Initial patch by Pablo Torres " +"Navarrete and SilentGhost." + +#: ../../build/NEWS:9587 +msgid "" +"`bpo-21781 `__: ssl.RAND_add() now " +"supports strings longer than 2 GB." +msgstr "" +"`bpo-21781 `__: ssl.RAND_add() now " +"supports strings longer than 2 GB." + +#: ../../build/NEWS:9589 +msgid "" +"`bpo-21679 `__: Prevent extraneous " +"fstat() calls during open(). Patch by Bohuslav Kabrda." +msgstr "" +"`bpo-21679 `__: Prevent extraneous " +"fstat() calls during open(). Patch by Bohuslav Kabrda." + +#: ../../build/NEWS:9592 +msgid "" +"`bpo-21863 `__: cProfile now displays " +"the module name of C extension functions, in addition to their own name." +msgstr "" +"`bpo-21863 `__: cProfile now displays " +"the module name of C extension functions, in addition to their own name." + +#: ../../build/NEWS:9595 +msgid "" +"`bpo-11453 `__: asyncore: emit a " +"ResourceWarning when an unclosed file_wrapper object is destroyed. The " +"destructor now closes the file if needed. The close() method can now be " +"called twice: the second call does nothing." +msgstr "" +"`bpo-11453 `__: asyncore: emit a " +"ResourceWarning when an unclosed file_wrapper object is destroyed. The " +"destructor now closes the file if needed. The close() method can now be " +"called twice: the second call does nothing." + +#: ../../build/NEWS:9599 +msgid "" +"`bpo-21858 `__: Better handling of " +"Python exceptions in the sqlite3 module." +msgstr "" +"`bpo-21858 `__: Better handling of " +"Python exceptions in the sqlite3 module." + +#: ../../build/NEWS:9601 +msgid "" +"`bpo-21476 `__: Make sure the email." +"parser.BytesParser TextIOWrapper is discarded after parsing, so the input " +"file isn't unexpectedly closed." +msgstr "" +"`bpo-21476 `__: Make sure the email." +"parser.BytesParser TextIOWrapper is discarded after parsing, so the input " +"file isn't unexpectedly closed." + +#: ../../build/NEWS:9604 +msgid "" +"`bpo-20295 `__: imghdr now recognizes " +"OpenEXR format images." +msgstr "" +"`bpo-20295 `__: imghdr now recognizes " +"OpenEXR format images." + +#: ../../build/NEWS:9609 +msgid "" +"`bpo-21491 `__: socketserver: Fix a race " +"condition in child processes reaping." +msgstr "" +"`bpo-21491 `__: socketserver: Fix a race " +"condition in child processes reaping." + +#: ../../build/NEWS:9611 +msgid "" +"`bpo-21719 `__: Added the " +"``st_file_attributes`` field to os.stat_result on Windows." +msgstr "" +"`bpo-21719 `__: Added the " +"``st_file_attributes`` field to os.stat_result on Windows." + +#: ../../build/NEWS:9614 +msgid "" +"`bpo-21832 `__: Require named tuple " +"inputs to be exact strings." +msgstr "" +"`bpo-21832 `__: Require named tuple " +"inputs to be exact strings." + +#: ../../build/NEWS:9616 +msgid "" +"`bpo-21722 `__: The distutils \"upload\" " +"command now exits with a non-zero return code when uploading fails. Patch " +"by Martin Dengler." +msgstr "" +"`bpo-21722 `__: The distutils \"upload\" " +"command now exits with a non-zero return code when uploading fails. Patch " +"by Martin Dengler." + +#: ../../build/NEWS:9619 +msgid "" +"`bpo-21723 `__: asyncio.Queue: support " +"any type of number (ex: float) for the maximum size. Patch written by " +"Vajrasky Kok." +msgstr "" +"`bpo-21723 `__: asyncio.Queue: support " +"any type of number (ex: float) for the maximum size. Patch written by " +"Vajrasky Kok." + +#: ../../build/NEWS:9622 +msgid "" +"`bpo-21711 `__: support for \"site-python" +"\" directories has now been removed from the site module (it was deprecated " +"in 3.4)." +msgstr "" +"`bpo-21711 `__: support for \"site-python" +"\" directories has now been removed from the site module (it was deprecated " +"in 3.4)." + +#: ../../build/NEWS:9625 +msgid "" +"`bpo-17552 `__: new socket.sendfile() " +"method allowing a file to be sent over a socket by using high-performance os." +"sendfile() on UNIX. Patch by Giampaolo Rodola'." +msgstr "" +"`bpo-17552 `__: new socket.sendfile() " +"method allowing a file to be sent over a socket by using high-performance os." +"sendfile() on UNIX. Patch by Giampaolo Rodola'." + +#: ../../build/NEWS:9629 +msgid "" +"`bpo-18039 `__: dbm.dump.open() now " +"always creates a new database when the flag has the value 'n'. Patch by " +"Claudiu Popa." +msgstr "" +"`bpo-18039 `__: dbm.dump.open() now " +"always creates a new database when the flag has the value 'n'. Patch by " +"Claudiu Popa." + +#: ../../build/NEWS:9632 +msgid "" +"`bpo-21326 `__: Add a new is_closed() " +"method to asyncio.BaseEventLoop. run_forever() and run_until_complete() " +"methods of asyncio.BaseEventLoop now raise an exception if the event loop " +"was closed." +msgstr "" +"`bpo-21326 `__: Add a new is_closed() " +"method to asyncio.BaseEventLoop. run_forever() and run_until_complete() " +"methods of asyncio.BaseEventLoop now raise an exception if the event loop " +"was closed." + +#: ../../build/NEWS:9636 +msgid "" +"`bpo-21766 `__: Prevent a security hole " +"in CGIHTTPServer by URL unquoting paths before checking for a CGI script at " +"that path." +msgstr "" +"`bpo-21766 `__: Prevent a security hole " +"in CGIHTTPServer by URL unquoting paths before checking for a CGI script at " +"that path." + +#: ../../build/NEWS:9639 +msgid "" +"`bpo-21310 `__: Fixed possible resource " +"leak in failed open()." +msgstr "" +"`bpo-21310 `__: Fixed possible resource " +"leak in failed open()." + +#: ../../build/NEWS:9641 +msgid "" +"`bpo-21256 `__: Printout of keyword args " +"should be in deterministic order in a mock function call. This will help to " +"write better doctests." +msgstr "" +"`bpo-21256 `__: Printout of keyword args " +"should be in deterministic order in a mock function call. This will help to " +"write better doctests." + +#: ../../build/NEWS:9644 +msgid "" +"`bpo-21677 `__: Fixed chaining " +"nonnormalized exceptions in io close() methods." +msgstr "" +"`bpo-21677 `__: Fixed chaining " +"nonnormalized exceptions in io close() methods." + +#: ../../build/NEWS:9646 +msgid "" +"`bpo-11709 `__: Fix the pydoc.help " +"function to not fail when sys.stdin is not a valid file." +msgstr "" +"`bpo-11709 `__: Fix the pydoc.help " +"function to not fail when sys.stdin is not a valid file." + +#: ../../build/NEWS:9649 +msgid "" +"`bpo-21515 `__: tempfile.TemporaryFile " +"now uses os.O_TMPFILE flag is available." +msgstr "" +"`bpo-21515 `__: tempfile.TemporaryFile " +"now uses os.O_TMPFILE flag is available." + +#: ../../build/NEWS:9651 +msgid "" +"`bpo-13223 `__: Fix pydoc.writedoc so " +"that the HTML documentation for methods that use 'self' in the example code " +"is generated correctly." +msgstr "" +"`bpo-13223 `__: Fix pydoc.writedoc so " +"that the HTML documentation for methods that use 'self' in the example code " +"is generated correctly." + +#: ../../build/NEWS:9654 +msgid "" +"`bpo-21463 `__: In urllib.request, fix " +"pruning of the FTP cache." +msgstr "" +"`bpo-21463 `__: In urllib.request, fix " +"pruning of the FTP cache." + +#: ../../build/NEWS:9656 +msgid "" +"`bpo-21618 `__: The subprocess module " +"could fail to close open fds that were inherited by the calling process and " +"already higher than POSIX resource limits would otherwise allow. On systems " +"with a functioning /proc/self/fd or /dev/fd interface the max is now ignored " +"and all fds are closed." +msgstr "" +"`bpo-21618 `__: The subprocess module " +"could fail to close open fds that were inherited by the calling process and " +"already higher than POSIX resource limits would otherwise allow. On systems " +"with a functioning /proc/self/fd or /dev/fd interface the max is now ignored " +"and all fds are closed." + +#: ../../build/NEWS:9661 +msgid "" +"`bpo-20383 `__: Introduce importlib.util." +"module_from_spec() as the preferred way to create a new module." +msgstr "" +"`bpo-20383 `__: Introduce importlib.util." +"module_from_spec() as the preferred way to create a new module." + +#: ../../build/NEWS:9664 +msgid "" +"`bpo-21552 `__: Fixed possible integer " +"overflow of too long string lengths in the tkinter module on 64-bit " +"platforms." +msgstr "" +"`bpo-21552 `__: Fixed possible integer " +"overflow of too long string lengths in the tkinter module on 64-bit " +"platforms." + +#: ../../build/NEWS:9667 +msgid "" +"`bpo-14315 `__: The zipfile module now " +"ignores extra fields in the central directory that are too short to be " +"parsed instead of letting a struct.unpack error bubble up as this \"bad data" +"\" appears in many real world zip files in the wild and is ignored by other " +"zip tools." +msgstr "" +"`bpo-14315 `__: The zipfile module now " +"ignores extra fields in the central directory that are too short to be " +"parsed instead of letting a struct.unpack error bubble up as this \"bad data" +"\" appears in many real world zip files in the wild and is ignored by other " +"zip tools." + +#: ../../build/NEWS:9672 +msgid "" +"`bpo-13742 `__: Added \"key\" and " +"\"reverse\" parameters to heapq.merge(). (First draft of patch contributed " +"by Simon Sapin.)" +msgstr "" +"`bpo-13742 `__: Added \"key\" and " +"\"reverse\" parameters to heapq.merge(). (First draft of patch contributed " +"by Simon Sapin.)" + +#: ../../build/NEWS:9675 +msgid "" +"`bpo-21402 `__: tkinter.ttk now works " +"when default root window is not set." +msgstr "" +"`bpo-21402 `__: tkinter.ttk now works " +"when default root window is not set." + +#: ../../build/NEWS:9677 +msgid "" +"`bpo-3015 `__: _tkinter.create() now " +"creates tkapp object with wantobject=1 by default." +msgstr "" +"`bpo-3015 `__: _tkinter.create() now " +"creates tkapp object with wantobject=1 by default." + +#: ../../build/NEWS:9680 +msgid "" +"`bpo-10203 `__: sqlite3.Row now truly " +"supports sequence protocol. In particular it supports reverse() and " +"negative indices. Original patch by Claudiu Popa." +msgstr "" +"`bpo-10203 `__: sqlite3.Row now truly " +"supports sequence protocol. In particular it supports reverse() and " +"negative indices. Original patch by Claudiu Popa." + +#: ../../build/NEWS:9684 +msgid "" +"`bpo-18807 `__: If copying (no symlinks) " +"specified for a venv, then the python interpreter aliases (python, python3) " +"are now created by copying rather than symlinking." +msgstr "" +"`bpo-18807 `__: If copying (no symlinks) " +"specified for a venv, then the python interpreter aliases (python, python3) " +"are now created by copying rather than symlinking." + +#: ../../build/NEWS:9688 +msgid "" +"`bpo-20197 `__: Added support for the " +"WebP image type in the imghdr module. Patch by Fabrice Aneche and Claudiu " +"Popa." +msgstr "" +"`bpo-20197 `__: Added support for the " +"WebP image type in the imghdr module. Patch by Fabrice Aneche and Claudiu " +"Popa." + +#: ../../build/NEWS:9691 +msgid "" +"`bpo-21513 `__: Speedup some properties " +"of IP addresses (IPv4Address, IPv6Address) such as .is_private or ." +"is_multicast." +msgstr "" +"`bpo-21513 `__: Speedup some properties " +"of IP addresses (IPv4Address, IPv6Address) such as .is_private or ." +"is_multicast." + +#: ../../build/NEWS:9694 +msgid "" +"`bpo-21137 `__: Improve the repr for " +"threading.Lock() and its variants by showing the \"locked\" or \"unlocked\" " +"status. Patch by Berker Peksag." +msgstr "" +"`bpo-21137 `__: Improve the repr for " +"threading.Lock() and its variants by showing the \"locked\" or \"unlocked\" " +"status. Patch by Berker Peksag." + +#: ../../build/NEWS:9697 +msgid "" +"`bpo-21538 `__: The plistlib module now " +"supports loading of binary plist files when reference or offset size is not " +"a power of two." +msgstr "" +"`bpo-21538 `__: The plistlib module now " +"supports loading of binary plist files when reference or offset size is not " +"a power of two." + +#: ../../build/NEWS:9700 +msgid "" +"`bpo-21455 `__: Add a default backlog to " +"socket.listen()." +msgstr "" +"`bpo-21455 `__: Add a default backlog to " +"socket.listen()." + +#: ../../build/NEWS:9702 +msgid "" +"`bpo-21525 `__: Most Tkinter methods " +"which accepted tuples now accept lists too." +msgstr "" +"`bpo-21525 `__: Most Tkinter methods " +"which accepted tuples now accept lists too." + +#: ../../build/NEWS:9705 +msgid "" +"`bpo-22166 `__: With the assistance of a " +"new internal _codecs._forget_codec helping function, test_codecs now clears " +"the encoding caches to avoid the appearance of a reference leak" +msgstr "" +"`bpo-22166 `__: With the assistance of a " +"new internal _codecs._forget_codec helping function, test_codecs now clears " +"the encoding caches to avoid the appearance of a reference leak" + +#: ../../build/NEWS:9709 +msgid "" +"`bpo-22236 `__: Tkinter tests now don't " +"reuse default root window. New root window is created for every test class." +msgstr "" +"`bpo-22236 `__: Tkinter tests now don't " +"reuse default root window. New root window is created for every test class." + +#: ../../build/NEWS:9712 +msgid "" +"`bpo-10744 `__: Fix PEP 3118 format " +"strings on ctypes objects with a nontrivial shape." +msgstr "" +"`bpo-10744 `__: Fix PEP 3118 format " +"strings on ctypes objects with a nontrivial shape." + +#: ../../build/NEWS:9715 +msgid "" +"`bpo-20826 `__: Optimize ipaddress." +"collapse_addresses()." +msgstr "" +"`bpo-20826 `__: Optimize ipaddress." +"collapse_addresses()." + +#: ../../build/NEWS:9717 +msgid "" +"`bpo-21487 `__: Optimize ipaddress." +"summarize_address_range() and ipaddress.{IPv4Network,IPv6Network}.subnets()." +msgstr "" +"`bpo-21487 `__: Optimize ipaddress." +"summarize_address_range() and ipaddress.{IPv4Network,IPv6Network}.subnets()." + +#: ../../build/NEWS:9720 +msgid "" +"`bpo-21486 `__: Optimize parsing of " +"netmasks in ipaddress.IPv4Network and ipaddress.IPv6Network." +msgstr "" +"`bpo-21486 `__: Optimize parsing of " +"netmasks in ipaddress.IPv4Network and ipaddress.IPv6Network." + +#: ../../build/NEWS:9723 +msgid "" +"`bpo-13916 `__: Disallowed the " +"surrogatepass error handler for non UTF-\\* encodings." +msgstr "" +"`bpo-13916 `__: Disallowed the " +"surrogatepass error handler for non UTF-\\* encodings." + +#: ../../build/NEWS:9729 +msgid "" +"`bpo-21075 `__: fileinput.FileInput now " +"reads bytes from standard stream if binary mode is specified. Patch by Sam " +"Kimbrel." +msgstr "" +"`bpo-21075 `__: fileinput.FileInput now " +"reads bytes from standard stream if binary mode is specified. Patch by Sam " +"Kimbrel." + +#: ../../build/NEWS:9732 +msgid "" +"`bpo-19775 `__: Add a samefile() method " +"to pathlib Path objects. Initial patch by Vajrasky Kok." +msgstr "" +"`bpo-19775 `__: Add a samefile() method " +"to pathlib Path objects. Initial patch by Vajrasky Kok." + +#: ../../build/NEWS:9735 +msgid "" +"`bpo-21226 `__: Set up modules properly " +"in PyImport_ExecCodeModuleObject (and friends)." +msgstr "" +"`bpo-21226 `__: Set up modules properly " +"in PyImport_ExecCodeModuleObject (and friends)." + +#: ../../build/NEWS:9738 +msgid "" +"`bpo-21398 `__: Fix a unicode error in " +"the pydoc pager when the documentation contains characters not encodable to " +"the stdout encoding." +msgstr "" +"`bpo-21398 `__: Fix a unicode error in " +"the pydoc pager when the documentation contains characters not encodable to " +"the stdout encoding." + +#: ../../build/NEWS:9741 +msgid "" +"`bpo-16531 `__: ipaddress.IPv4Network " +"and ipaddress.IPv6Network now accept an (address, netmask) tuple argument, " +"so as to easily construct network objects from existing addresses." +msgstr "" +"`bpo-16531 `__: ipaddress.IPv4Network " +"and ipaddress.IPv6Network now accept an (address, netmask) tuple argument, " +"so as to easily construct network objects from existing addresses." + +#: ../../build/NEWS:9745 +msgid "" +"`bpo-21156 `__: importlib.abc." +"InspectLoader.source_to_code() is now a staticmethod." +msgstr "" +"`bpo-21156 `__: importlib.abc." +"InspectLoader.source_to_code() is now a staticmethod." + +#: ../../build/NEWS:9748 +msgid "" +"`bpo-21424 `__: Simplified and optimized " +"heaqp.nlargest() and nmsmallest() to make fewer tuple comparisons." +msgstr "" +"`bpo-21424 `__: Simplified and optimized " +"heaqp.nlargest() and nmsmallest() to make fewer tuple comparisons." + +#: ../../build/NEWS:9751 +msgid "" +"`bpo-21396 `__: Fix TextIOWrapper(..., " +"write_through=True) to not force a flush() on the underlying binary stream. " +"Patch by akira." +msgstr "" +"`bpo-21396 `__: Fix TextIOWrapper(..., " +"write_through=True) to not force a flush() on the underlying binary stream. " +"Patch by akira." + +#: ../../build/NEWS:9754 +msgid "" +"`bpo-18314 `__: Unlink now removes " +"junctions on Windows. Patch by Kim Gräsman" +msgstr "" +"`bpo-18314 `__: Unlink now removes " +"junctions on Windows. Patch by Kim Gräsman" + +#: ../../build/NEWS:9756 +msgid "" +"`bpo-21088 `__: Bugfix for curses.window." +"addch() regression in 3.4.0. In porting to Argument Clinic, the first two " +"arguments were reversed." +msgstr "" +"`bpo-21088 `__: Bugfix for curses.window." +"addch() regression in 3.4.0. In porting to Argument Clinic, the first two " +"arguments were reversed." + +#: ../../build/NEWS:9759 +msgid "" +"`bpo-21407 `__: _decimal: The module now " +"supports function signatures." +msgstr "" +"`bpo-21407 `__: _decimal: The module now " +"supports function signatures." + +#: ../../build/NEWS:9761 +msgid "" +"`bpo-10650 `__: Remove the non-standard " +"'watchexp' parameter from the Decimal.quantize() method in the Python " +"version. It had never been present in the C version." +msgstr "" +"`bpo-10650 `__: Remove the non-standard " +"'watchexp' parameter from the Decimal.quantize() method in the Python " +"version. It had never been present in the C version." + +#: ../../build/NEWS:9765 +msgid "" +"`bpo-21469 `__: Reduced the risk of " +"false positives in robotparser by checking to make sure that robots.txt has " +"been read or does not exist prior to returning True in can_fetch()." +msgstr "" +"`bpo-21469 `__: Reduced the risk of " +"false positives in robotparser by checking to make sure that robots.txt has " +"been read or does not exist prior to returning True in can_fetch()." + +#: ../../build/NEWS:9769 +msgid "" +"`bpo-19414 `__: Have the OrderedDict " +"mark deleted links as unusable. This gives an early failure if the link is " +"deleted during iteration." +msgstr "" +"`bpo-19414 `__: Have the OrderedDict " +"mark deleted links as unusable. This gives an early failure if the link is " +"deleted during iteration." + +#: ../../build/NEWS:9772 +msgid "" +"`bpo-21421 `__: Add __slots__ to the " +"MappingViews ABC. Patch by Josh Rosenberg." +msgstr "" +"`bpo-21421 `__: Add __slots__ to the " +"MappingViews ABC. Patch by Josh Rosenberg." + +#: ../../build/NEWS:9774 +msgid "" +"`bpo-21101 `__: Eliminate double hashing " +"in the C speed-up code for collections.Counter()." +msgstr "" +"`bpo-21101 `__: Eliminate double hashing " +"in the C speed-up code for collections.Counter()." + +#: ../../build/NEWS:9777 +msgid "" +"`bpo-21321 `__: itertools.islice() now " +"releases the reference to the source iterator when the slice is exhausted. " +"Patch by Anton Afanasyev." +msgstr "" +"`bpo-21321 `__: itertools.islice() now " +"releases the reference to the source iterator when the slice is exhausted. " +"Patch by Anton Afanasyev." + +#: ../../build/NEWS:9784 +msgid "" +"`bpo-20951 `__: SSLSocket.send() now " +"raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket " +"if the operation would block. Previously, it would return 0. Patch by " +"Nikolaus Rath." +msgstr "" +"`bpo-20951 `__: SSLSocket.send() now " +"raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket " +"if the operation would block. Previously, it would return 0. Patch by " +"Nikolaus Rath." + +#: ../../build/NEWS:9788 +msgid "" +"`bpo-13248 `__: removed previously " +"deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." +msgstr "" +"`bpo-13248 `__: removed previously " +"deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." + +#: ../../build/NEWS:9791 +msgid "" +"`bpo-9815 `__: assertRaises now tries to " +"clear references to local variables in the exception's traceback." +msgstr "" +"`bpo-9815 `__: assertRaises now tries to " +"clear references to local variables in the exception's traceback." + +#: ../../build/NEWS:9794 +msgid "" +"`bpo-19940 `__: ssl." +"cert_time_to_seconds() now interprets the given time string in the UTC " +"timezone (as specified in RFC 5280), not the local timezone." +msgstr "" +"`bpo-19940 `__: ssl." +"cert_time_to_seconds() now interprets the given time string in the UTC " +"timezone (as specified in RFC 5280), not the local timezone." + +#: ../../build/NEWS:9797 +msgid "" +"`bpo-13204 `__: Calling sys.flags." +"__new__ would crash the interpreter, now it raises a TypeError." +msgstr "" +"`bpo-13204 `__: Calling sys.flags." +"__new__ would crash the interpreter, now it raises a TypeError." + +#: ../../build/NEWS:9800 +msgid "" +"`bpo-19385 `__: Make operations on a " +"closed dbm.dumb database always raise the same exception." +msgstr "" +"`bpo-19385 `__: Make operations on a " +"closed dbm.dumb database always raise the same exception." + +#: ../../build/NEWS:9803 +msgid "" +"`bpo-21207 `__: Detect when the os." +"urandom cached fd has been closed or replaced, and open it anew." +msgstr "" +"`bpo-21207 `__: Detect when the os." +"urandom cached fd has been closed or replaced, and open it anew." + +#: ../../build/NEWS:9806 +msgid "" +"`bpo-21291 `__: subprocess's Popen." +"wait() is now thread safe so that multiple threads may be calling wait() or " +"poll() on a Popen instance at the same time without losing the Popen." +"returncode value." +msgstr "" +"`bpo-21291 `__: subprocess's Popen." +"wait() is now thread safe so that multiple threads may be calling wait() or " +"poll() on a Popen instance at the same time without losing the Popen." +"returncode value." + +#: ../../build/NEWS:9810 +msgid "" +"`bpo-21127 `__: Path objects can now be " +"instantiated from str subclass instances (such as ``numpy.str_``)." +msgstr "" +"`bpo-21127 `__: Path objects can now be " +"instantiated from str subclass instances (such as ``numpy.str_``)." + +#: ../../build/NEWS:9813 +msgid "" +"`bpo-15002 `__: urllib.response object " +"to use _TemporaryFileWrapper (and _TemporaryFileCloser) facility. Provides a " +"better way to handle file descriptor close. Patch contributed by Christian " +"Theune." +msgstr "" +"`bpo-15002 `__: urllib.response object " +"to use _TemporaryFileWrapper (and _TemporaryFileCloser) facility. Provides a " +"better way to handle file descriptor close. Patch contributed by Christian " +"Theune." + +#: ../../build/NEWS:9817 +msgid "" +"`bpo-12220 `__: mindom now raises a " +"custom ValueError indicating it doesn't support spaces in URIs instead of " +"letting a 'split' ValueError bubble up." +msgstr "" +"`bpo-12220 `__: mindom now raises a " +"custom ValueError indicating it doesn't support spaces in URIs instead of " +"letting a 'split' ValueError bubble up." + +#: ../../build/NEWS:9820 +msgid "" +"`bpo-21068 `__: The ssl.PROTOCOL* " +"constants are now enum members." +msgstr "" +"`bpo-21068 `__: The ssl.PROTOCOL* " +"constants are now enum members." + +#: ../../build/NEWS:9822 +msgid "" +"`bpo-21276 `__: posixmodule: Don't " +"define USE_XATTRS on KFreeBSD and the Hurd." +msgstr "" +"`bpo-21276 `__: posixmodule: Don't " +"define USE_XATTRS on KFreeBSD and the Hurd." + +#: ../../build/NEWS:9824 +msgid "" +"`bpo-21262 `__: New method " +"assert_not_called for Mock. It raises AssertionError if the mock has been " +"called." +msgstr "" +"`bpo-21262 `__: New method " +"assert_not_called for Mock. It raises AssertionError if the mock has been " +"called." + +#: ../../build/NEWS:9827 +msgid "" +"`bpo-21238 `__: New keyword argument " +"`unsafe` to Mock. It raises `AttributeError` incase of an attribute " +"startswith assert or assret." +msgstr "" +"`bpo-21238 `__: New keyword argument " +"`unsafe` to Mock. It raises `AttributeError` incase of an attribute " +"startswith assert or assret." + +#: ../../build/NEWS:9830 +msgid "" +"`bpo-20896 `__: ssl." +"get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for " +"maximum compatibility." +msgstr "" +"`bpo-20896 `__: ssl." +"get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for " +"maximum compatibility." + +#: ../../build/NEWS:9833 +msgid "" +"`bpo-21239 `__: patch.stopall() didn't " +"work deterministically when the same name was patched more than once." +msgstr "" +"`bpo-21239 `__: patch.stopall() didn't " +"work deterministically when the same name was patched more than once." + +#: ../../build/NEWS:9836 +msgid "" +"`bpo-21203 `__: Updated fileConfig and " +"dictConfig to remove inconsistencies. Thanks to Jure Koren for the patch." +msgstr "" +"`bpo-21203 `__: Updated fileConfig and " +"dictConfig to remove inconsistencies. Thanks to Jure Koren for the patch." + +#: ../../build/NEWS:9839 +msgid "" +"`bpo-21222 `__: Passing name keyword " +"argument to mock.create_autospec now works." +msgstr "" +"`bpo-21222 `__: Passing name keyword " +"argument to mock.create_autospec now works." + +#: ../../build/NEWS:9842 +msgid "" +"`bpo-21197 `__: Add lib64 -> lib symlink " +"in venvs on 64-bit non-OS X POSIX." +msgstr "" +"`bpo-21197 `__: Add lib64 -> lib symlink " +"in venvs on 64-bit non-OS X POSIX." + +#: ../../build/NEWS:9844 +msgid "" +"`bpo-17498 `__: Some SMTP servers " +"disconnect after certain errors, violating strict RFC conformance. Instead " +"of losing the error code when we issue the subsequent RSET, smtplib now " +"returns the error code and defers raising the SMTPServerDisconnected error " +"until the next command is issued." +msgstr "" +"`bpo-17498 `__: Some SMTP servers " +"disconnect after certain errors, violating strict RFC conformance. Instead " +"of losing the error code when we issue the subsequent RSET, smtplib now " +"returns the error code and defers raising the SMTPServerDisconnected error " +"until the next command is issued." + +#: ../../build/NEWS:9849 +msgid "" +"`bpo-17826 `__: setting an iterable " +"side_effect on a mock function created by create_autospec now works. Patch " +"by Kushal Das." +msgstr "" +"`bpo-17826 `__: setting an iterable " +"side_effect on a mock function created by create_autospec now works. Patch " +"by Kushal Das." + +#: ../../build/NEWS:9852 +msgid "" +"`bpo-7776 `__: Fix ``Host:`` header and " +"reconnection when using http.client.HTTPConnection.set_tunnel(). Patch by " +"Nikolaus Rath." +msgstr "" +"`bpo-7776 `__: Fix ``Host:`` header and " +"reconnection when using http.client.HTTPConnection.set_tunnel(). Patch by " +"Nikolaus Rath." + +#: ../../build/NEWS:9855 +msgid "" +"`bpo-20968 `__: unittest.mock.MagicMock " +"now supports division. Patch by Johannes Baiter." +msgstr "" +"`bpo-20968 `__: unittest.mock.MagicMock " +"now supports division. Patch by Johannes Baiter." + +#: ../../build/NEWS:9862 +msgid "" +"`bpo-21169 `__: getpass now handles non-" +"ascii characters that the input stream encoding cannot encode by re-encoding " +"using the replace error handler." +msgstr "" +"`bpo-21169 `__: getpass now handles non-" +"ascii characters that the input stream encoding cannot encode by re-encoding " +"using the replace error handler." + +#: ../../build/NEWS:9865 +msgid "" +"`bpo-21171 `__: Fixed undocumented " +"filter API of the rot13 codec. Patch by Berker Peksag." +msgstr "" +"`bpo-21171 `__: Fixed undocumented " +"filter API of the rot13 codec. Patch by Berker Peksag." + +#: ../../build/NEWS:9868 +msgid "" +"`bpo-20539 `__: Improved math.factorial " +"error message for large positive inputs and changed exception type " +"(OverflowError -> ValueError) for large negative inputs." +msgstr "" +"`bpo-20539 `__: Improved math.factorial " +"error message for large positive inputs and changed exception type " +"(OverflowError -> ValueError) for large negative inputs." + +#: ../../build/NEWS:9872 +msgid "" +"`bpo-21172 `__: isinstance check relaxed " +"from dict to collections.Mapping." +msgstr "" +"`bpo-21172 `__: isinstance check relaxed " +"from dict to collections.Mapping." + +#: ../../build/NEWS:9874 +msgid "" +"`bpo-21155 `__: asyncio.EventLoop." +"create_unix_server() now raises a ValueError if path and sock are specified " +"at the same time." +msgstr "" +"`bpo-21155 `__: asyncio.EventLoop." +"create_unix_server() now raises a ValueError if path and sock are specified " +"at the same time." + +#: ../../build/NEWS:9877 +msgid "" +"`bpo-21136 `__: Avoid unnecessary " +"normalization of Fractions resulting from power and other operations. Patch " +"by Raymond Hettinger." +msgstr "" +"`bpo-21136 `__: Avoid unnecessary " +"normalization of Fractions resulting from power and other operations. Patch " +"by Raymond Hettinger." + +#: ../../build/NEWS:9880 +msgid "" +"`bpo-17621 `__: Introduce importlib.util." +"LazyLoader." +msgstr "" +"`bpo-17621 `__: Introduce importlib.util." +"LazyLoader." + +#: ../../build/NEWS:9882 +msgid "" +"`bpo-21076 `__: signal module constants " +"were turned into enums. Patch by Giampaolo Rodola'." +msgstr "" +"`bpo-21076 `__: signal module constants " +"were turned into enums. Patch by Giampaolo Rodola'." + +#: ../../build/NEWS:9885 +msgid "" +"`bpo-20636 `__: Improved the repr of " +"Tkinter widgets." +msgstr "" +"`bpo-20636 `__: Improved the repr of " +"Tkinter widgets." + +#: ../../build/NEWS:9887 +msgid "" +"`bpo-19505 `__: The items, keys, and " +"values views of OrderedDict now support reverse iteration using reversed()." +msgstr "" +"`bpo-19505 `__: The items, keys, and " +"values views of OrderedDict now support reverse iteration using reversed()." + +#: ../../build/NEWS:9890 +msgid "" +"`bpo-21149 `__: Improved thread-safety " +"in logging cleanup during interpreter shutdown. Thanks to Devin Jeanpierre " +"for the patch." +msgstr "" +"`bpo-21149 `__: Improved thread-safety " +"in logging cleanup during interpreter shutdown. Thanks to Devin Jeanpierre " +"for the patch." + +#: ../../build/NEWS:9893 +msgid "" +"`bpo-21058 `__: Fix a leak of file " +"descriptor in :func:`tempfile.NamedTemporaryFile`, close the file descriptor " +"if :func:`io.open` fails" +msgstr "" +"`bpo-21058 `__: Fix a leak of file " +"descriptor in :func:`tempfile.NamedTemporaryFile`, close the file descriptor " +"if :func:`io.open` fails" + +#: ../../build/NEWS:9897 +msgid "" +"`bpo-21200 `__: Return None from pkgutil." +"get_loader() when __spec__ is missing." +msgstr "" +"`bpo-21200 `__: Return None from pkgutil." +"get_loader() when __spec__ is missing." + +#: ../../build/NEWS:9899 +msgid "" +"`bpo-21013 `__: Enhance ssl." +"create_default_context() when used for server side sockets to provide better " +"security by default." +msgstr "" +"`bpo-21013 `__: Enhance ssl." +"create_default_context() when used for server side sockets to provide better " +"security by default." + +#: ../../build/NEWS:9902 +msgid "" +"`bpo-20145 `__: `assertRaisesRegex` and " +"`assertWarnsRegex` now raise a TypeError if the second argument is not a " +"string or compiled regex." +msgstr "" +"`bpo-20145 `__: `assertRaisesRegex` and " +"`assertWarnsRegex` now raise a TypeError if the second argument is not a " +"string or compiled regex." + +#: ../../build/NEWS:9905 +msgid "" +"`bpo-20633 `__: Replace relative import " +"by absolute import." +msgstr "" +"`bpo-20633 `__: Replace relative import " +"by absolute import." + +#: ../../build/NEWS:9907 +msgid "" +"`bpo-20980 `__: Stop wrapping exception " +"when using ThreadPool." +msgstr "" +"`bpo-20980 `__: Stop wrapping exception " +"when using ThreadPool." + +#: ../../build/NEWS:9909 +msgid "" +"`bpo-21082 `__: In os.makedirs, do not " +"set the process-wide umask. Note this changes behavior of makedirs when " +"exist_ok=True." +msgstr "" +"`bpo-21082 `__: In os.makedirs, do not " +"set the process-wide umask. Note this changes behavior of makedirs when " +"exist_ok=True." + +#: ../../build/NEWS:9912 +msgid "" +"`bpo-20990 `__: Fix issues found by " +"pyflakes for multiprocessing." +msgstr "" +"`bpo-20990 `__: Fix issues found by " +"pyflakes for multiprocessing." + +#: ../../build/NEWS:9914 +msgid "" +"`bpo-21015 `__: SSL contexts will now " +"automatically select an elliptic curve for ECDH key exchange on OpenSSL " +"1.0.2 and later, and otherwise default to \"prime256v1\"." +msgstr "" +"`bpo-21015 `__: SSL contexts will now " +"automatically select an elliptic curve for ECDH key exchange on OpenSSL " +"1.0.2 and later, and otherwise default to \"prime256v1\"." + +#: ../../build/NEWS:9918 +msgid "" +"`bpo-21000 `__: Improve the command-line " +"interface of json.tool." +msgstr "" +"`bpo-21000 `__: Improve the command-line " +"interface of json.tool." + +#: ../../build/NEWS:9920 +msgid "" +"`bpo-20995 `__: Enhance default ciphers " +"used by the ssl module to enable better security and prioritize perfect " +"forward secrecy." +msgstr "" +"`bpo-20995 `__: Enhance default ciphers " +"used by the ssl module to enable better security and prioritize perfect " +"forward secrecy." + +#: ../../build/NEWS:9923 +msgid "" +"`bpo-20884 `__: Don't assume that " +"__file__ is defined on importlib.__init__." +msgstr "" +"`bpo-20884 `__: Don't assume that " +"__file__ is defined on importlib.__init__." + +#: ../../build/NEWS:9925 +msgid "" +"`bpo-21499 `__: Ignore __builtins__ in " +"several test_importlib.test_api tests." +msgstr "" +"`bpo-21499 `__: Ignore __builtins__ in " +"several test_importlib.test_api tests." + +#: ../../build/NEWS:9927 +msgid "" +"`bpo-20627 `__: xmlrpc.client." +"ServerProxy is now a context manager." +msgstr "" +"`bpo-20627 `__: xmlrpc.client." +"ServerProxy is now a context manager." + +#: ../../build/NEWS:9929 +msgid "" +"`bpo-19165 `__: The formatter module now " +"raises DeprecationWarning instead of PendingDeprecationWarning." +msgstr "" +"`bpo-19165 `__: The formatter module now " +"raises DeprecationWarning instead of PendingDeprecationWarning." + +#: ../../build/NEWS:9932 +msgid "" +"`bpo-13936 `__: Remove the ability of " +"datetime.time instances to be considered false in boolean contexts." +msgstr "" +"`bpo-13936 `__: Remove the ability of " +"datetime.time instances to be considered false in boolean contexts." + +#: ../../build/NEWS:9935 +msgid "" +"`bpo-18931 `__: selectors module now " +"supports /dev/poll on Solaris. Patch by Giampaolo Rodola'." +msgstr "" +"`bpo-18931 `__: selectors module now " +"supports /dev/poll on Solaris. Patch by Giampaolo Rodola'." + +#: ../../build/NEWS:9938 +msgid "" +"`bpo-19977 `__: When the ``LC_TYPE`` " +"locale is the POSIX locale (``C`` locale), :py:data:`sys.stdin` and :py:data:" +"`sys.stdout` are now using the ``surrogateescape`` error handler, instead of " +"the ``strict`` error handler." +msgstr "" +"`bpo-19977 `__: When the ``LC_TYPE`` " +"locale is the POSIX locale (``C`` locale), :py:data:`sys.stdin` and :py:data:" +"`sys.stdout` are now using the ``surrogateescape`` error handler, instead of " +"the ``strict`` error handler." + +#: ../../build/NEWS:9943 +msgid "" +"`bpo-20574 `__: Implement incremental " +"decoder for cp65001 code (Windows code page 65001, Microsoft UTF-8)." +msgstr "" +"`bpo-20574 `__: Implement incremental " +"decoder for cp65001 code (Windows code page 65001, Microsoft UTF-8)." + +#: ../../build/NEWS:9946 +msgid "" +"`bpo-20879 `__: Delay the initialization " +"of encoding and decoding tables for base32, ascii85 and base85 codecs in the " +"base64 module, and delay the initialization of the unquote_to_bytes() table " +"of the urllib.parse module, to not waste memory if these modules are not " +"used." +msgstr "" +"`bpo-20879 `__: Delay the initialization " +"of encoding and decoding tables for base32, ascii85 and base85 codecs in the " +"base64 module, and delay the initialization of the unquote_to_bytes() table " +"of the urllib.parse module, to not waste memory if these modules are not " +"used." + +#: ../../build/NEWS:9951 +msgid "" +"`bpo-19157 `__: Include the broadcast " +"address in the usuable hosts for IPv6 in ipaddress." +msgstr "" +"`bpo-19157 `__: Include the broadcast " +"address in the usuable hosts for IPv6 in ipaddress." + +#: ../../build/NEWS:9954 +msgid "" +"`bpo-11599 `__: When an external command " +"(e.g. compiler) fails, distutils now prints out the whole command line " +"(instead of just the command name) if the environment variable " +"DISTUTILS_DEBUG is set." +msgstr "" +"`bpo-11599 `__: When an external command " +"(e.g. compiler) fails, distutils now prints out the whole command line " +"(instead of just the command name) if the environment variable " +"DISTUTILS_DEBUG is set." + +#: ../../build/NEWS:9961 +msgid "" +"`bpo-20875 `__: Prevent possible gzip " +"\"'read' is not defined\" NameError. Patch by Claudiu Popa." +msgstr "" +"`bpo-20875 `__: Prevent possible gzip " +"\"'read' is not defined\" NameError. Patch by Claudiu Popa." + +#: ../../build/NEWS:9964 +msgid "" +"`bpo-11558 `__: ``email.message.Message." +"attach`` now returns a more useful error message if ``attach`` is called on " +"a message for which ``is_multipart`` is False." +msgstr "" +"`bpo-11558 `__: ``email.message.Message." +"attach`` now returns a more useful error message if ``attach`` is called on " +"a message for which ``is_multipart`` is False." + +#: ../../build/NEWS:9972 +msgid "" +"`bpo-20778 `__: Fix modulefinder to work " +"with bytecode-only modules." +msgstr "" +"`bpo-20778 `__: Fix modulefinder to work " +"with bytecode-only modules." + +#: ../../build/NEWS:9977 +msgid "" +"`bpo-19748 `__: On AIX, time.mktime() " +"now raises an OverflowError for year outsize range [1902; 2037]." +msgstr "" +"`bpo-19748 `__: On AIX, time.mktime() " +"now raises an OverflowError for year outsize range [1902; 2037]." + +#: ../../build/NEWS:9980 +msgid "" +"`bpo-19573 `__: inspect.signature: Use " +"enum for parameter kind constants." +msgstr "" +"`bpo-19573 `__: inspect.signature: Use " +"enum for parameter kind constants." + +#: ../../build/NEWS:9982 +msgid "" +"`bpo-20726 `__: inspect.signature: Make " +"Signature and Parameter picklable." +msgstr "" +"`bpo-20726 `__: inspect.signature: Make " +"Signature and Parameter picklable." + +#: ../../build/NEWS:9984 +msgid "" +"`bpo-17373 `__: Add inspect.Signature." +"from_callable method." +msgstr "" +"`bpo-17373 `__: Add inspect.Signature." +"from_callable method." + +#: ../../build/NEWS:9986 +msgid "" +"`bpo-20378 `__: Improve repr of inspect." +"Signature and inspect.Parameter." +msgstr "" +"`bpo-20378 `__: Improve repr of inspect." +"Signature and inspect.Parameter." + +#: ../../build/NEWS:9991 +msgid "" +"`bpo-20817 `__: Fix inspect." +"getcallargs() to fail correctly if more than 3 arguments are missing. Patch " +"by Jeremiah Lowin." +msgstr "" +"`bpo-20817 `__: Fix inspect." +"getcallargs() to fail correctly if more than 3 arguments are missing. Patch " +"by Jeremiah Lowin." + +#: ../../build/NEWS:9994 +msgid "" +"`bpo-6676 `__: Ensure a meaningful " +"exception is raised when attempting to parse more than one XML document per " +"pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto and " +"Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)" +msgstr "" +"`bpo-6676 `__: Ensure a meaningful " +"exception is raised when attempting to parse more than one XML document per " +"pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto and " +"Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)" + +#: ../../build/NEWS:10003 +msgid "" +"`bpo-20334 `__: inspect.Signature and " +"inspect.Parameter are now hashable. Thanks to Antony Lee for bug reports and " +"suggestions." +msgstr "" +"`bpo-20334 `__: inspect.Signature and " +"inspect.Parameter are now hashable. Thanks to Antony Lee for bug reports and " +"suggestions." + +#: ../../build/NEWS:10006 +msgid "" +"`bpo-15916 `__: doctest.DocTestSuite " +"returns an empty unittest.TestSuite instead of raising ValueError if it " +"finds no tests" +msgstr "" +"`bpo-15916 `__: doctest.DocTestSuite " +"returns an empty unittest.TestSuite instead of raising ValueError if it " +"finds no tests" + +#: ../../build/NEWS:10009 +msgid "" +"`bpo-21209 `__: Fix asyncio.tasks." +"CoroWrapper to workaround a bug in yield-from implementation in CPythons " +"prior to 3.4.1." +msgstr "" +"`bpo-21209 `__: Fix asyncio.tasks." +"CoroWrapper to workaround a bug in yield-from implementation in CPythons " +"prior to 3.4.1." + +#: ../../build/NEWS:10012 +msgid "" +"asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream " +"`bpo-163 `__)." +msgstr "" +"asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream " +"`bpo-163 `__)." + +#: ../../build/NEWS:10018 +msgid "" +"`bpo-11571 `__: Ensure that the turtle " +"window becomes the topmost window when launched on OS X." +msgstr "" +"`bpo-11571 `__: Ensure that the turtle " +"window becomes the topmost window when launched on OS X." + +#: ../../build/NEWS:10021 +msgid "" +"`bpo-21801 `__: Validate that " +"__signature__ is None or an instance of Signature." +msgstr "" +"`bpo-21801 `__: Validate that " +"__signature__ is None or an instance of Signature." + +#: ../../build/NEWS:10024 +msgid "" +"`bpo-21923 `__: Prevent AttributeError " +"in distutils.sysconfig.customize_compiler due to possible uninitialized " +"_config_vars." +msgstr "" +"`bpo-21923 `__: Prevent AttributeError " +"in distutils.sysconfig.customize_compiler due to possible uninitialized " +"_config_vars." + +#: ../../build/NEWS:10028 +msgid "" +"`bpo-21323 `__: Fix http.server to again " +"handle scripts in CGI subdirectories, broken by the fix for security " +"`bpo-19435 `__. Patch by Zach Byrne." +msgstr "" +"`bpo-21323 `__: Fix http.server to again " +"handle scripts in CGI subdirectories, broken by the fix for security " +"`bpo-19435 `__. Patch by Zach Byrne." + +#: ../../build/NEWS:10031 +msgid "" +"`bpo-22733 `__: Fix ffi_prep_args not " +"zero-extending argument values correctly on 64-bit Windows." +msgstr "" +"`bpo-22733 `__: Fix ffi_prep_args not " +"zero-extending argument values correctly on 64-bit Windows." + +#: ../../build/NEWS:10034 +msgid "" +"`bpo-23302 `__: Default to TCP_NODELAY=1 " +"upon establishing an HTTPConnection. Removed use of hard-coded MSS as it's " +"an optimization that's no longer needed with Nagle disabled." +msgstr "" +"`bpo-23302 `__: Default to TCP_NODELAY=1 " +"upon establishing an HTTPConnection. Removed use of hard-coded MSS as it's " +"an optimization that's no longer needed with Nagle disabled." + +#: ../../build/NEWS:10041 +msgid "" +"`bpo-20577 `__: Configuration of the max " +"line length for the FormatParagraph extension has been moved from the " +"General tab of the Idle preferences dialog to the FormatParagraph tab of the " +"Config Extensions dialog. Patch by Tal Einat." +msgstr "" +"`bpo-20577 `__: Configuration of the max " +"line length for the FormatParagraph extension has been moved from the " +"General tab of the Idle preferences dialog to the FormatParagraph tab of the " +"Config Extensions dialog. Patch by Tal Einat." + +#: ../../build/NEWS:10046 +msgid "" +"`bpo-16893 `__: Update Idle doc chapter " +"to match current Idle and add new information." +msgstr "" +"`bpo-16893 `__: Update Idle doc chapter " +"to match current Idle and add new information." + +#: ../../build/NEWS:10049 +msgid "" +"`bpo-3068 `__: Add Idle extension " +"configuration dialog to Options menu. Changes are written to HOME/.idlerc/" +"config-extensions.cfg. Original patch by Tal Einat." +msgstr "" +"`bpo-3068 `__: Add Idle extension " +"configuration dialog to Options menu. Changes are written to HOME/.idlerc/" +"config-extensions.cfg. Original patch by Tal Einat." + +#: ../../build/NEWS:10059 +msgid "" +"`bpo-4832 `__: Save As to type Python " +"files automatically adds .py to the name you enter (even if your system does " +"not display it). Some systems automatically add .txt when type is Text " +"files." +msgstr "" +"`bpo-4832 `__: Save As to type Python " +"files automatically adds .py to the name you enter (even if your system does " +"not display it). Some systems automatically add .txt when type is Text " +"files." + +#: ../../build/NEWS:10063 +msgid "" +"`bpo-21986 `__: Code objects are not " +"normally pickled by the pickle module. To match this, they are no longer " +"pickled when running under Idle." +msgstr "" +"`bpo-21986 `__: Code objects are not " +"normally pickled by the pickle module. To match this, they are no longer " +"pickled when running under Idle." + +#: ../../build/NEWS:10066 +msgid "" +"`bpo-17390 `__: Adjust Editor window " +"title; remove 'Python', move version to end." +msgstr "" +"`bpo-17390 `__: Adjust Editor window " +"title; remove 'Python', move version to end." + +#: ../../build/NEWS:10069 +msgid "" +"`bpo-14105 `__: Idle debugger " +"breakpoints no longer disappear when inserting or deleting lines." +msgstr "" +"`bpo-14105 `__: Idle debugger " +"breakpoints no longer disappear when inserting or deleting lines." + +#: ../../build/NEWS:10072 +msgid "" +"`bpo-17172 `__: Turtledemo can now be " +"run from Idle. Currently, the entry is on the Help menu, but it may move to " +"Run. Patch by Ramchandra Apt and Lita Cho." +msgstr "" +"`bpo-17172 `__: Turtledemo can now be " +"run from Idle. Currently, the entry is on the Help menu, but it may move to " +"Run. Patch by Ramchandra Apt and Lita Cho." + +#: ../../build/NEWS:10076 +msgid "" +"`bpo-21765 `__: Add support for non-" +"ascii identifiers to HyperParser." +msgstr "" +"`bpo-21765 `__: Add support for non-" +"ascii identifiers to HyperParser." + +#: ../../build/NEWS:10078 +msgid "" +"`bpo-21940 `__: Add unittest for " +"WidgetRedirector. Initial patch by Saimadhav Heblikar." +msgstr "" +"`bpo-21940 `__: Add unittest for " +"WidgetRedirector. Initial patch by Saimadhav Heblikar." + +#: ../../build/NEWS:10081 +msgid "" +"`bpo-18592 `__: Add unittest for " +"SearchDialogBase. Patch by Phil Webster." +msgstr "" +"`bpo-18592 `__: Add unittest for " +"SearchDialogBase. Patch by Phil Webster." + +#: ../../build/NEWS:10083 +msgid "" +"`bpo-21694 `__: Add unittest for " +"ParenMatch. Patch by Saimadhav Heblikar." +msgstr "" +"`bpo-21694 `__: Add unittest for " +"ParenMatch. Patch by Saimadhav Heblikar." + +#: ../../build/NEWS:10085 +msgid "" +"`bpo-21686 `__: add unittest for " +"HyperParser. Original patch by Saimadhav Heblikar." +msgstr "" +"`bpo-21686 `__: add unittest for " +"HyperParser. Original patch by Saimadhav Heblikar." + +#: ../../build/NEWS:10088 +msgid "" +"`bpo-12387 `__: Add missing " +"upper(lower)case versions of default Windows key bindings for Idle so Caps " +"Lock does not disable them. Patch by Roger Serwy." +msgstr "" +"`bpo-12387 `__: Add missing " +"upper(lower)case versions of default Windows key bindings for Idle so Caps " +"Lock does not disable them. Patch by Roger Serwy." + +#: ../../build/NEWS:10092 +msgid "" +"`bpo-21695 `__: Closing a Find-in-files " +"output window while the search is still in progress no longer closes Idle." +msgstr "" +"`bpo-21695 `__: Closing a Find-in-files " +"output window while the search is still in progress no longer closes Idle." + +#: ../../build/NEWS:10095 +msgid "" +"`bpo-18910 `__: Add unittest for " +"textView. Patch by Phil Webster." +msgstr "" +"`bpo-18910 `__: Add unittest for " +"textView. Patch by Phil Webster." + +#: ../../build/NEWS:10097 +msgid "" +"`bpo-18292 `__: Add unittest for " +"AutoExpand. Patch by Saihadhav Heblikar." +msgstr "" +"`bpo-18292 `__: Add unittest for " +"AutoExpand. Patch by Saihadhav Heblikar." + +#: ../../build/NEWS:10099 +msgid "" +"`bpo-18409 `__: Add unittest for " +"AutoComplete. Patch by Phil Webster." +msgstr "" +"`bpo-18409 `__: Add unittest for " +"AutoComplete. Patch by Phil Webster." + +#: ../../build/NEWS:10101 +msgid "" +"`bpo-21477 `__: htest.py - Improve " +"framework, complete set of tests. Patches by Saimadhav Heblikar" +msgstr "" +"`bpo-21477 `__: htest.py - Improve " +"framework, complete set of tests. Patches by Saimadhav Heblikar" + +#: ../../build/NEWS:10104 +msgid "" +"`bpo-18104 `__: Add idlelib/idle_test/" +"htest.py with a few sample tests to begin consolidating and improving human-" +"validated tests of Idle. Change other files as needed to work with htest. " +"Running the module as __main__ runs all tests." +msgstr "" +"`bpo-18104 `__: Add idlelib/idle_test/" +"htest.py with a few sample tests to begin consolidating and improving human-" +"validated tests of Idle. Change other files as needed to work with htest. " +"Running the module as __main__ runs all tests." + +#: ../../build/NEWS:10109 +msgid "" +"`bpo-21139 `__: Change default paragraph " +"width to 72, the PEP 8 recommendation." +msgstr "" +"`bpo-21139 `__: Change default paragraph " +"width to 72, the PEP 8 recommendation." + +#: ../../build/NEWS:10111 +msgid "" +"`bpo-21284 `__: Paragraph reformat test " +"passes after user changes reformat width." +msgstr "" +"`bpo-21284 `__: Paragraph reformat test " +"passes after user changes reformat width." + +#: ../../build/NEWS:10117 +msgid "" +"`bpo-23180 `__: Rename IDLE \"Windows\" " +"menu item to \"Window\". Patch by Al Sweigart." +msgstr "" +"`bpo-23180 `__: Rename IDLE \"Windows\" " +"menu item to \"Window\". Patch by Al Sweigart." + +#: ../../build/NEWS:10123 +msgid "" +"`bpo-15506 `__: Use standard " +"PKG_PROG_PKG_CONFIG autoconf macro in the configure script." +msgstr "" +"`bpo-15506 `__: Use standard " +"PKG_PROG_PKG_CONFIG autoconf macro in the configure script." + +#: ../../build/NEWS:10126 +msgid "" +"`bpo-22935 `__: Allow the ssl module to " +"be compiled if openssl doesn't support SSL 3." +msgstr "" +"`bpo-22935 `__: Allow the ssl module to " +"be compiled if openssl doesn't support SSL 3." + +#: ../../build/NEWS:10129 +msgid "" +"`bpo-22592 `__: Drop support of the " +"Borland C compiler to build Python. The distutils module still supports it " +"to build extensions." +msgstr "" +"`bpo-22592 `__: Drop support of the " +"Borland C compiler to build Python. The distutils module still supports it " +"to build extensions." + +#: ../../build/NEWS:10135 +msgid "" +"`bpo-16537 `__: Check whether self." +"extensions is empty in setup.py. Patch by Jonathan Hosmer." +msgstr "" +"`bpo-16537 `__: Check whether self." +"extensions is empty in setup.py. Patch by Jonathan Hosmer." + +#: ../../build/NEWS:10138 +msgid "" +"`bpo-22359 `__: Remove incorrect uses of " +"recursive make. Patch by Jonas Wagner." +msgstr "" +"`bpo-22359 `__: Remove incorrect uses of " +"recursive make. Patch by Jonas Wagner." + +#: ../../build/NEWS:10141 +msgid "" +"`bpo-21958 `__: Define HAVE_ROUND when " +"building with Visual Studio 2013 and above. Patch by Zachary Turner." +msgstr "" +"`bpo-21958 `__: Define HAVE_ROUND when " +"building with Visual Studio 2013 and above. Patch by Zachary Turner." + +#: ../../build/NEWS:10144 +msgid "" +"`bpo-18093 `__: the programs that embed " +"the CPython runtime are now in a separate \"Programs\" directory, rather " +"than being kept in the Modules directory." +msgstr "" +"`bpo-18093 `__: the programs that embed " +"the CPython runtime are now in a separate \"Programs\" directory, rather " +"than being kept in the Modules directory." + +#: ../../build/NEWS:10148 +msgid "" +"`bpo-15759 `__: \"make suspicious\", " +"\"make linkcheck\" and \"make doctest\" in Doc/ now display special message " +"when and only when there are failures." +msgstr "" +"`bpo-15759 `__: \"make suspicious\", " +"\"make linkcheck\" and \"make doctest\" in Doc/ now display special message " +"when and only when there are failures." + +#: ../../build/NEWS:10158 +msgid "" +"`bpo-21037 `__: Add a build option to " +"enable AddressSanitizer support." +msgstr "" +"`bpo-21037 `__: Add a build option to " +"enable AddressSanitizer support." + +#: ../../build/NEWS:10160 +msgid "" +"`bpo-19962 `__: The Windows build " +"process now creates \"python.bat\" in the root of the source tree, which " +"passes all arguments through to the most recently built interpreter." +msgstr "" +"`bpo-19962 `__: The Windows build " +"process now creates \"python.bat\" in the root of the source tree, which " +"passes all arguments through to the most recently built interpreter." + +#: ../../build/NEWS:10164 +msgid "" +"`bpo-21285 `__: Refactor and fix curses " +"configure check to always search in a ncursesw directory." +msgstr "" +"`bpo-21285 `__: Refactor and fix curses " +"configure check to always search in a ncursesw directory." + +#: ../../build/NEWS:10167 +msgid "" +"`bpo-15234 `__: For BerkelyDB and " +"Sqlite, only add the found library and include directories if they aren't " +"already being searched. This avoids an explicit runtime library dependency." +msgstr "" +"`bpo-15234 `__: For BerkelyDB and " +"Sqlite, only add the found library and include directories if they aren't " +"already being searched. This avoids an explicit runtime library dependency." + +#: ../../build/NEWS:10171 +msgid "" +"`bpo-17861 `__: Tools/scripts/" +"generate_opcode_h.py automatically regenerates Include/opcode.h from Lib/" +"opcode.py if the latter gets any change." +msgstr "" +"`bpo-17861 `__: Tools/scripts/" +"generate_opcode_h.py automatically regenerates Include/opcode.h from Lib/" +"opcode.py if the latter gets any change." + +#: ../../build/NEWS:10174 +msgid "" +"`bpo-20644 `__: OS X installer build " +"support for documentation build changes in 3.4.1: assume externally supplied " +"sphinx-build is available in /usr/bin." +msgstr "" +"`bpo-20644 `__: OS X installer build " +"support for documentation build changes in 3.4.1: assume externally supplied " +"sphinx-build is available in /usr/bin." + +#: ../../build/NEWS:10177 +msgid "" +"`bpo-20022 `__: Eliminate use of " +"deprecated bundlebuilder in OS X builds." +msgstr "" +"`bpo-20022 `__: Eliminate use of " +"deprecated bundlebuilder in OS X builds." + +#: ../../build/NEWS:10179 +msgid "" +"`bpo-15968 `__: Incorporated Tcl, Tk, " +"and Tix builds into the Windows build solution." +msgstr "" +"`bpo-15968 `__: Incorporated Tcl, Tk, " +"and Tix builds into the Windows build solution." + +#: ../../build/NEWS:10182 +msgid "" +"`bpo-17095 `__: Fix Modules/Setup " +"*shared* support." +msgstr "" +"`bpo-17095 `__: Fix Modules/Setup " +"*shared* support." + +#: ../../build/NEWS:10184 +msgid "" +"`bpo-21811 `__: Anticipated fixes to " +"support OS X versions > 10.9." +msgstr "" +"`bpo-21811 `__: Anticipated fixes to " +"support OS X versions > 10.9." + +#: ../../build/NEWS:10189 +msgid "" +"`bpo-18096 `__: Fix library order " +"returned by python-config." +msgstr "" +"`bpo-18096 `__: Fix library order " +"returned by python-config." + +#: ../../build/NEWS:10191 +msgid "" +"`bpo-17219 `__: Add library build dir " +"for Python extension cross-builds." +msgstr "" +"`bpo-17219 `__: Add library build dir " +"for Python extension cross-builds." + +#: ../../build/NEWS:10193 +msgid "" +"`bpo-22919 `__: Windows build updated to " +"support VC 14.0 (Visual Studio 2015), which will be used for the official " +"release." +msgstr "" +"`bpo-22919 `__: Windows build updated to " +"support VC 14.0 (Visual Studio 2015), which will be used for the official " +"release." + +#: ../../build/NEWS:10196 +msgid "" +"`bpo-21236 `__: Build _msi.pyd with " +"cabinet.lib instead of fci.lib" +msgstr "" +"`bpo-21236 `__: Build _msi.pyd with " +"cabinet.lib instead of fci.lib" + +#: ../../build/NEWS:10198 +msgid "" +"`bpo-17128 `__: Use private version of " +"OpenSSL for OS X 10.5+ installer." +msgstr "" +"`bpo-17128 `__: Use private version of " +"OpenSSL for OS X 10.5+ installer." + +#: ../../build/NEWS:10203 +msgid "" +"`bpo-14203 `__: Remove obsolete support " +"for view==NULL in PyBuffer_FillInfo(), bytearray_getbuffer(), " +"bytesiobuf_getbuffer() and array_buffer_getbuf(). All functions now raise " +"BufferError in that case." +msgstr "" +"`bpo-14203 `__: Remove obsolete support " +"for view==NULL in PyBuffer_FillInfo(), bytearray_getbuffer(), " +"bytesiobuf_getbuffer() and array_buffer_getbuf(). All functions now raise " +"BufferError in that case." + +#: ../../build/NEWS:10207 +msgid "" +"`bpo-22445 `__: PyBuffer_IsContiguous() " +"now implements precise contiguity tests, compatible with NumPy's " +"NPY_RELAXED_STRIDES_CHECKING compilation flag. Previously the function " +"reported false negatives for corner cases." +msgstr "" +"`bpo-22445 `__: PyBuffer_IsContiguous() " +"now implements precise contiguity tests, compatible with NumPy's " +"NPY_RELAXED_STRIDES_CHECKING compilation flag. Previously the function " +"reported false negatives for corner cases." + +#: ../../build/NEWS:10211 +msgid "" +"`bpo-22079 `__: PyType_Ready() now " +"checks that statically allocated type has no dynamically allocated bases." +msgstr "" +"`bpo-22079 `__: PyType_Ready() now " +"checks that statically allocated type has no dynamically allocated bases." + +#: ../../build/NEWS:10214 +msgid "" +"`bpo-22453 `__: Removed non-documented " +"macro PyObject_REPR()." +msgstr "" +"`bpo-22453 `__: Removed non-documented " +"macro PyObject_REPR()." + +#: ../../build/NEWS:10216 +msgid "" +"`bpo-18395 `__: Rename " +"``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename " +"``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document these " +"functions." +msgstr "" +"`bpo-18395 `__: Rename " +"``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename " +"``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document these " +"functions." + +#: ../../build/NEWS:10220 +msgid "" +"`bpo-21233 `__: Add new C functions: " +"PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(), _PyObject_GC_Calloc(). " +"bytes(int) is now using ``calloc()`` instead of ``malloc()`` for large " +"objects which is faster and use less memory." +msgstr "" +"`bpo-21233 `__: Add new C functions: " +"PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(), _PyObject_GC_Calloc(). " +"bytes(int) is now using ``calloc()`` instead of ``malloc()`` for large " +"objects which is faster and use less memory." + +#: ../../build/NEWS:10225 +msgid "" +"`bpo-20942 `__: " +"PyImport_ImportFrozenModuleObject() no longer sets __file__ to match what " +"importlib does; this affects _frozen_importlib as well as any module loaded " +"using imp.init_frozen()." +msgstr "" +"`bpo-20942 `__: " +"PyImport_ImportFrozenModuleObject() no longer sets __file__ to match what " +"importlib does; this affects _frozen_importlib as well as any module loaded " +"using imp.init_frozen()." + +#: ../../build/NEWS:10232 +msgid "" +"`bpo-19548 `__: Update the codecs module " +"documentation to better cover the distinction between text encodings and " +"other codecs, together with other clarifications. Patch by Martin Panter." +msgstr "" +"`bpo-19548 `__: Update the codecs module " +"documentation to better cover the distinction between text encodings and " +"other codecs, together with other clarifications. Patch by Martin Panter." + +#: ../../build/NEWS:10236 +msgid "" +"`bpo-22394 `__: Doc/Makefile now " +"supports ``make venv PYTHON=../python`` to create a venv for generating the " +"documentation, e.g., ``make html PYTHON=venv/bin/python3``." +msgstr "" +"`bpo-22394 `__: Doc/Makefile now " +"supports ``make venv PYTHON=../python`` to create a venv for generating the " +"documentation, e.g., ``make html PYTHON=venv/bin/python3``." + +#: ../../build/NEWS:10240 +msgid "" +"`bpo-21514 `__: The documentation of the " +"json module now refers to new JSON RFC 7159 instead of obsoleted RFC 4627." +msgstr "" +"`bpo-21514 `__: The documentation of the " +"json module now refers to new JSON RFC 7159 instead of obsoleted RFC 4627." + +#: ../../build/NEWS:10243 +msgid "" +"`bpo-21777 `__: The binary sequence " +"methods on bytes and bytearray are now documented explicitly, rather than " +"assuming users will be able to derive the expected behaviour from the " +"behaviour of the corresponding str methods." +msgstr "" +"`bpo-21777 `__: The binary sequence " +"methods on bytes and bytearray are now documented explicitly, rather than " +"assuming users will be able to derive the expected behaviour from the " +"behaviour of the corresponding str methods." + +#: ../../build/NEWS:10248 +msgid "" +"`bpo-6916 `__: undocument deprecated " +"asynchat.fifo class." +msgstr "" +"`bpo-6916 `__: undocument deprecated " +"asynchat.fifo class." + +#: ../../build/NEWS:10250 +msgid "" +"`bpo-17386 `__: Expanded functionality " +"of the ``Doc/make.bat`` script to make it much more comparable to ``Doc/" +"Makefile``." +msgstr "" +"`bpo-17386 `__: Expanded functionality " +"of the ``Doc/make.bat`` script to make it much more comparable to ``Doc/" +"Makefile``." + +#: ../../build/NEWS:10256 +msgid "" +"`bpo-21043 `__: Remove the " +"recommendation for specific CA organizations and to mention the ability to " +"load the OS certificates." +msgstr "" +"`bpo-21043 `__: Remove the " +"recommendation for specific CA organizations and to mention the ability to " +"load the OS certificates." + +#: ../../build/NEWS:10259 +msgid "" +"`bpo-20765 `__: Add missing " +"documentation for PurePath.with_name() and PurePath.with_suffix()." +msgstr "" +"`bpo-20765 `__: Add missing " +"documentation for PurePath.with_name() and PurePath.with_suffix()." + +#: ../../build/NEWS:10262 +msgid "" +"`bpo-19407 `__: New package installation " +"and distribution guides based on the Python Packaging Authority tools. " +"Existing guides have been retained as legacy links from the distutils docs, " +"as they still contain some required reference material for tool developers " +"that isn't recorded anywhere else." +msgstr "" +"`bpo-19407 `__: New package installation " +"and distribution guides based on the Python Packaging Authority tools. " +"Existing guides have been retained as legacy links from the distutils docs, " +"as they still contain some required reference material for tool developers " +"that isn't recorded anywhere else." + +#: ../../build/NEWS:10267 +msgid "" +"`bpo-19697 `__: Document cases where " +"__main__.__spec__ is None." +msgstr "" +"`bpo-19697 `__: Document cases where " +"__main__.__spec__ is None." + +#: ../../build/NEWS:10272 +msgid "" +"`bpo-18982 `__: Add tests for CLI of the " +"calendar module." +msgstr "" +"`bpo-18982 `__: Add tests for CLI of the " +"calendar module." + +#: ../../build/NEWS:10274 +msgid "" +"`bpo-19548 `__: Added some additional " +"checks to test_codecs to ensure that statements in the updated documentation " +"remain accurate. Patch by Martin Panter." +msgstr "" +"`bpo-19548 `__: Added some additional " +"checks to test_codecs to ensure that statements in the updated documentation " +"remain accurate. Patch by Martin Panter." + +#: ../../build/NEWS:10278 +msgid "" +"`bpo-22838 `__: All test_re tests now " +"work with unittest test discovery." +msgstr "" +"`bpo-22838 `__: All test_re tests now " +"work with unittest test discovery." + +#: ../../build/NEWS:10280 +msgid "" +"`bpo-22173 `__: Update lib2to3 tests to " +"use unittest test discovery." +msgstr "" +"`bpo-22173 `__: Update lib2to3 tests to " +"use unittest test discovery." + +#: ../../build/NEWS:10282 +msgid "" +"`bpo-16000 `__: Convert test_curses to " +"use unittest." +msgstr "" +"`bpo-16000 `__: Convert test_curses to " +"use unittest." + +#: ../../build/NEWS:10284 +msgid "" +"`bpo-21456 `__: Skip two tests in " +"test_urllib2net.py if _ssl module not present. Patch by Remi Pointel." +msgstr "" +"`bpo-21456 `__: Skip two tests in " +"test_urllib2net.py if _ssl module not present. Patch by Remi Pointel." + +#: ../../build/NEWS:10287 +msgid "" +"`bpo-20746 `__: Fix test_pdb to run in " +"refleak mode (-R). Patch by Xavier de Gaye." +msgstr "" +"`bpo-20746 `__: Fix test_pdb to run in " +"refleak mode (-R). Patch by Xavier de Gaye." + +#: ../../build/NEWS:10290 +msgid "" +"`bpo-22060 `__: test_ctypes has been " +"somewhat cleaned up and simplified; it now uses unittest test discovery to " +"find its tests." +msgstr "" +"`bpo-22060 `__: test_ctypes has been " +"somewhat cleaned up and simplified; it now uses unittest test discovery to " +"find its tests." + +#: ../../build/NEWS:10293 +msgid "" +"`bpo-22104 `__: regrtest.py no longer " +"holds a reference to the suite of tests loaded from test modules that don't " +"define test_main()." +msgstr "" +"`bpo-22104 `__: regrtest.py no longer " +"holds a reference to the suite of tests loaded from test modules that don't " +"define test_main()." + +#: ../../build/NEWS:10296 +msgid "" +"`bpo-22111 `__: Assorted cleanups in " +"test_imaplib. Patch by Milan Oberkirch." +msgstr "" +"`bpo-22111 `__: Assorted cleanups in " +"test_imaplib. Patch by Milan Oberkirch." + +#: ../../build/NEWS:10298 +msgid "" +"`bpo-22002 `__: Added " +"``load_package_tests`` function to test.support and used it to implement/" +"augment test discovery in test_asyncio, test_email, test_importlib, " +"test_json, and test_tools." +msgstr "" +"`bpo-22002 `__: Added " +"``load_package_tests`` function to test.support and used it to implement/" +"augment test discovery in test_asyncio, test_email, test_importlib, " +"test_json, and test_tools." + +#: ../../build/NEWS:10302 +msgid "" +"`bpo-21976 `__: Fix test_ssl to accept " +"LibreSSL version strings. Thanks to William Orr." +msgstr "" +"`bpo-21976 `__: Fix test_ssl to accept " +"LibreSSL version strings. Thanks to William Orr." + +#: ../../build/NEWS:10305 +msgid "" +"`bpo-21918 `__: Converted test_tools " +"from a module to a package containing separate test files for each tested " +"script." +msgstr "" +"`bpo-21918 `__: Converted test_tools " +"from a module to a package containing separate test files for each tested " +"script." + +#: ../../build/NEWS:10308 +msgid "" +"`bpo-9554 `__: Use modern unittest " +"features in test_argparse. Initial patch by Denver Coneybeare and Radu " +"Voicilas." +msgstr "" +"`bpo-9554 `__: Use modern unittest " +"features in test_argparse. Initial patch by Denver Coneybeare and Radu " +"Voicilas." + +#: ../../build/NEWS:10311 +msgid "" +"`bpo-20155 `__: Changed HTTP method " +"names in failing tests in test_httpservers so that packet filtering software " +"(specifically Windows Base Filtering Engine) does not interfere with the " +"transaction semantics expected by the tests." +msgstr "" +"`bpo-20155 `__: Changed HTTP method " +"names in failing tests in test_httpservers so that packet filtering software " +"(specifically Windows Base Filtering Engine) does not interfere with the " +"transaction semantics expected by the tests." + +#: ../../build/NEWS:10316 +msgid "" +"`bpo-19493 `__: Refactored the ctypes " +"test package to skip tests explicitly rather than silently." +msgstr "" +"`bpo-19493 `__: Refactored the ctypes " +"test package to skip tests explicitly rather than silently." + +#: ../../build/NEWS:10319 +msgid "" +"`bpo-18492 `__: All resources are now " +"allowed when tests are not run by regrtest.py." +msgstr "" +"`bpo-18492 `__: All resources are now " +"allowed when tests are not run by regrtest.py." + +#: ../../build/NEWS:10322 +msgid "" +"`bpo-21634 `__: Fix pystone micro-" +"benchmark: use floor division instead of true division to benchmark integers " +"instead of floating point numbers. Set pystone version to 1.2. Patch written " +"by Lennart Regebro." +msgstr "" +"`bpo-21634 `__: Fix pystone micro-" +"benchmark: use floor division instead of true division to benchmark integers " +"instead of floating point numbers. Set pystone version to 1.2. Patch written " +"by Lennart Regebro." + +#: ../../build/NEWS:10326 +msgid "" +"`bpo-21605 `__: Added tests for Tkinter " +"images." +msgstr "" +"`bpo-21605 `__: Added tests for Tkinter " +"images." + +#: ../../build/NEWS:10328 +msgid "" +"`bpo-21493 `__: Added test for ntpath." +"expanduser(). Original patch by Claudiu Popa." +msgstr "" +"`bpo-21493 `__: Added test for ntpath." +"expanduser(). Original patch by Claudiu Popa." + +#: ../../build/NEWS:10331 +msgid "" +"`bpo-19925 `__: Added tests for the spwd " +"module. Original patch by Vajrasky Kok." +msgstr "" +"`bpo-19925 `__: Added tests for the spwd " +"module. Original patch by Vajrasky Kok." + +#: ../../build/NEWS:10334 +msgid "" +"`bpo-21522 `__: Added Tkinter tests for " +"Listbox.itemconfigure(), PanedWindow.paneconfigure(), and Menu." +"entryconfigure()." +msgstr "" +"`bpo-21522 `__: Added Tkinter tests for " +"Listbox.itemconfigure(), PanedWindow.paneconfigure(), and Menu." +"entryconfigure()." + +#: ../../build/NEWS:10337 +msgid "" +"`bpo-17756 `__: Fix test_code test when " +"run from the installed location." +msgstr "" +"`bpo-17756 `__: Fix test_code test when " +"run from the installed location." + +#: ../../build/NEWS:10339 +msgid "" +"`bpo-17752 `__: Fix distutils tests when " +"run from the installed location." +msgstr "" +"`bpo-17752 `__: Fix distutils tests when " +"run from the installed location." + +#: ../../build/NEWS:10341 +msgid "" +"`bpo-18604 `__: Consolidated checks for " +"GUI availability. All platforms now at least check whether Tk can be " +"instantiated when the GUI resource is requested." +msgstr "" +"`bpo-18604 `__: Consolidated checks for " +"GUI availability. All platforms now at least check whether Tk can be " +"instantiated when the GUI resource is requested." + +#: ../../build/NEWS:10345 +msgid "" +"`bpo-21275 `__: Fix a socket test on " +"KFreeBSD." +msgstr "" +"`bpo-21275 `__: Fix a socket test on " +"KFreeBSD." + +#: ../../build/NEWS:10347 +msgid "" +"`bpo-21223 `__: Pass test_site/" +"test_startup_imports when some of the extensions are built as builtins." +msgstr "" +"`bpo-21223 `__: Pass test_site/" +"test_startup_imports when some of the extensions are built as builtins." + +#: ../../build/NEWS:10350 +msgid "" +"`bpo-20635 `__: Added tests for Tk " +"geometry managers." +msgstr "" +"`bpo-20635 `__: Added tests for Tk " +"geometry managers." + +#: ../../build/NEWS:10352 +msgid "Add test case for freeze." +msgstr "Ajoute un test pour *freeze*." + +#: ../../build/NEWS:10354 +msgid "" +"`bpo-20743 `__: Fix a reference leak in " +"test_tcl." +msgstr "" +"`bpo-20743 `__: Fix a reference leak in " +"test_tcl." + +#: ../../build/NEWS:10356 +msgid "" +"`bpo-21097 `__: Move test_namespace_pkgs " +"into test_importlib." +msgstr "" +"`bpo-21097 `__: Move test_namespace_pkgs " +"into test_importlib." + +#: ../../build/NEWS:10358 +msgid "" +"`bpo-21503 `__: Use test_both() " +"consistently in test_importlib." +msgstr "" +"`bpo-21503 `__: Use test_both() " +"consistently in test_importlib." + +#: ../../build/NEWS:10360 +msgid "" +"`bpo-20939 `__: Avoid various network " +"test failures due to new redirect of http://www.python.org/ to https://www." +"python.org: use http://www.example.com instead." +msgstr "" +"`bpo-20939 `__: Avoid various network " +"test failures due to new redirect of http://www.python.org/ to https://www." +"python.org: use http://www.example.com instead." + +#: ../../build/NEWS:10364 +msgid "" +"`bpo-20668 `__: asyncio tests no longer " +"rely on tests.txt file. (Patch by Vajrasky Kok)" +msgstr "" +"`bpo-20668 `__: asyncio tests no longer " +"rely on tests.txt file. (Patch by Vajrasky Kok)" + +#: ../../build/NEWS:10367 +msgid "" +"`bpo-21093 `__: Prevent failures of " +"ctypes test_macholib on OS X if a copy of libz exists in $HOME/lib or /usr/" +"local/lib." +msgstr "" +"`bpo-21093 `__: Prevent failures of " +"ctypes test_macholib on OS X if a copy of libz exists in $HOME/lib or /usr/" +"local/lib." + +#: ../../build/NEWS:10370 +msgid "" +"`bpo-22770 `__: Prevent some Tk " +"segfaults on OS X when running gui tests." +msgstr "" +"`bpo-22770 `__: Prevent some Tk " +"segfaults on OS X when running gui tests." + +#: ../../build/NEWS:10372 +msgid "" +"`bpo-23211 `__: Workaround test_logging " +"failure on some OS X 10.6 systems." +msgstr "" +"`bpo-23211 `__: Workaround test_logging " +"failure on some OS X 10.6 systems." + +#: ../../build/NEWS:10374 +msgid "" +"`bpo-23345 `__: Prevent test_ssl " +"failures with large OpenSSL patch level values (like 0.9.8zc)." +msgstr "" +"`bpo-23345 `__: Prevent test_ssl " +"failures with large OpenSSL patch level values (like 0.9.8zc)." + +#: ../../build/NEWS:10380 +msgid "" +"`bpo-22314 `__: pydoc now works when the " +"LINES environment variable is set." +msgstr "" +"`bpo-22314 `__: pydoc now works when the " +"LINES environment variable is set." + +#: ../../build/NEWS:10385 +msgid "" +"`bpo-20076 `__: The makelocalealias.py " +"script no longer ignores UTF-8 mapping." +msgstr "" +"`bpo-20076 `__: The makelocalealias.py " +"script no longer ignores UTF-8 mapping." + +#: ../../build/NEWS:10387 +msgid "" +"`bpo-20079 `__: The makelocalealias.py " +"script now can parse the SUPPORTED file from glibc sources and supports " +"command line options for source paths." +msgstr "" +"`bpo-20079 `__: The makelocalealias.py " +"script now can parse the SUPPORTED file from glibc sources and supports " +"command line options for source paths." + +#: ../../build/NEWS:10390 +msgid "" +"`bpo-22201 `__: Command-line interface " +"of the zipfile module now correctly extracts ZIP files with directory " +"entries. Patch by Ryan Wilson." +msgstr "" +"`bpo-22201 `__: Command-line interface " +"of the zipfile module now correctly extracts ZIP files with directory " +"entries. Patch by Ryan Wilson." + +#: ../../build/NEWS:10393 +msgid "" +"`bpo-22120 `__: For functions using an " +"unsigned integer return converter, Argument Clinic now generates a cast to " +"that type for the comparison to -1 in the generated code. (This suppresses " +"a compilation warning.)" +msgstr "" +"`bpo-22120 `__: For functions using an " +"unsigned integer return converter, Argument Clinic now generates a cast to " +"that type for the comparison to -1 in the generated code. (This suppresses " +"a compilation warning.)" + +#: ../../build/NEWS:10397 +msgid "" +"`bpo-18974 `__: Tools/scripts/diff.py " +"now uses argparse instead of optparse." +msgstr "" +"`bpo-18974 `__: Tools/scripts/diff.py " +"now uses argparse instead of optparse." + +#: ../../build/NEWS:10399 +msgid "" +"`bpo-21906 `__: Make Tools/scripts/" +"md5sum.py work in Python 3. Patch by Zachary Ware." +msgstr "" +"`bpo-21906 `__: Make Tools/scripts/" +"md5sum.py work in Python 3. Patch by Zachary Ware." + +#: ../../build/NEWS:10402 +msgid "" +"`bpo-21629 `__: Fix Argument Clinic's " +"\"--converters\" feature." +msgstr "" +"`bpo-21629 `__: Fix Argument Clinic's " +"\"--converters\" feature." + +#: ../../build/NEWS:10404 +msgid "Add support for ``yield from`` to 2to3." +msgstr "Ajoute le support de ``yield from`` à *2to3*." + +#: ../../build/NEWS:10406 +msgid "Add support for the PEP 465 matrix multiplication operator to 2to3." +msgstr "" + +#: ../../build/NEWS:10408 +msgid "" +"`bpo-16047 `__: Fix module exception " +"list and __file__ handling in freeze. Patch by Meador Inge." +msgstr "" +"`bpo-16047 `__: Fix module exception " +"list and __file__ handling in freeze. Patch by Meador Inge." + +#: ../../build/NEWS:10411 +msgid "" +"`bpo-11824 `__: Consider ABI tags in " +"freeze. Patch by Meador Inge." +msgstr "" +"`bpo-11824 `__: Consider ABI tags in " +"freeze. Patch by Meador Inge." + +#: ../../build/NEWS:10413 +msgid "" +"`bpo-20535 `__: PYTHONWARNING no longer " +"affects the run_tests.py script. Patch by Arfrever Frehtes Taifersar " +"Arahesis." +msgstr "" +"`bpo-20535 `__: PYTHONWARNING no longer " +"affects the run_tests.py script. Patch by Arfrever Frehtes Taifersar " +"Arahesis." + +#: ../../build/NEWS:10419 +msgid "" +"`bpo-23260 `__: Update Windows installer" +msgstr "" +"`bpo-23260 `__: Update Windows installer" + +#: ../../build/NEWS:10421 +msgid "" +"The bundled version of Tcl/Tk has been updated to 8.6.3. The most visible " +"result of this change is the addition of new native file dialogs when " +"running on Windows Vista or newer. See Tcl/Tk's TIP 432 for more " +"information. Also, this version of Tcl/Tk includes support for Windows 10." +msgstr "" + +#: ../../build/NEWS:10427 +msgid "" +"`bpo-17896 `__: The Windows build " +"scripts now expect external library sources to be in ``PCbuild\\.." +"\\externals`` rather than ``PCbuild\\..\\..``." +msgstr "" +"`bpo-17896 `__: The Windows build " +"scripts now expect external library sources to be in ``PCbuild\\.." +"\\externals`` rather than ``PCbuild\\..\\..``." + +#: ../../build/NEWS:10430 +msgid "" +"`bpo-17717 `__: The Windows build " +"scripts now use a copy of NASM pulled from svn.python.org to build OpenSSL." +msgstr "" +"`bpo-17717 `__: The Windows build " +"scripts now use a copy of NASM pulled from svn.python.org to build OpenSSL." + +#: ../../build/NEWS:10433 +msgid "" +"`bpo-21907 `__: Improved the batch " +"scripts provided for building Python." +msgstr "" +"`bpo-21907 `__: Improved the batch " +"scripts provided for building Python." + +#: ../../build/NEWS:10435 +msgid "" +"`bpo-22644 `__: The bundled version of " +"OpenSSL has been updated to 1.0.1j." +msgstr "" +"`bpo-22644 `__: The bundled version of " +"OpenSSL has been updated to 1.0.1j." + +#: ../../build/NEWS:10437 +msgid "" +"`bpo-10747 `__: Use versioned labels in " +"the Windows start menu. Patch by Olive Kilburn." +msgstr "" +"`bpo-10747 `__: Use versioned labels in " +"the Windows start menu. Patch by Olive Kilburn." + +#: ../../build/NEWS:10440 +msgid "" +"`bpo-22980 `__: .pyd files with a " +"version and platform tag (for example, \".cp35-win32.pyd\") will now be " +"loaded in preference to those without tags." +msgstr "" +"`bpo-22980 `__: .pyd files with a " +"version and platform tag (for example, \".cp35-win32.pyd\") will now be " +"loaded in preference to those without tags." + +#: ../../build/NEWS:10444 +msgid "**(For information about older versions, consult the HISTORY file.)**" +msgstr "" +"**(Pour des informations sur les versions précédentes, consultez le fichier " +"HISTORY.)**" diff --git a/whatsnew/index.po b/whatsnew/index.po index 730e2085..153e83b0 100644 --- a/whatsnew/index.po +++ b/whatsnew/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-02 22:11+0200\n" +"POT-Creation-Date: 2017-09-21 09:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,9 +32,12 @@ msgstr "" "quiconque souhaitant être à jour suite à une nouvelle sortie." #: ../Doc/whatsnew/index.rst:30 +#, fuzzy msgid "" -"The \"Changelog\" is a HTML version of the file :source:`Misc/NEWS` which " -"contains *all* nontrivial changes to Python for the current version." +"The \"Changelog\" is an HTML version of the `file built `_ from the contents of the :source:`Misc/NEWS.d` directory " +"tree, which contains *all* nontrivial changes to Python for the current " +"version." msgstr "" "Le « Changelog » est une version HTML du fichier :source:`Misc/NEWS` qui " "contient *tous* les changements non-triviaux de Python pour la version "