diff --git a/extending/newtypes.po b/extending/newtypes.po index 662634b0..39b9e7a1 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -681,19 +681,30 @@ msgid "" "has dropped to zero and its value hasn't been set to *NULL*." msgstr "" -#: ../Doc/extending/newtypes.rst:767 +#: ../Doc/extending/newtypes.rst:761 msgid "" "Python provides a :c:func:`Py_CLEAR` that automates the careful decrementing " "of reference counts. With :c:func:`Py_CLEAR`, the :c:func:`Noddy_clear` " "function can be simplified::" msgstr "" -#: ../Doc/extending/newtypes.rst:779 +#: ../Doc/extending/newtypes.rst:773 +msgid "" +"Note that :c:func:`Noddy_dealloc` may call arbitrary functions through " +"``__del__`` method or weakref callback. It means circular GC can be " +"triggered inside the function. Since GC assumes reference count is not " +"zero, we need to untrack the object from GC by calling :c:func:" +"`PyObject_GC_UnTrack` before clearing members. Here is reimplemented " +"deallocator which uses :c:func:`PyObject_GC_UnTrack` and :c:func:" +"`Noddy_clear`." +msgstr "" + +#: ../Doc/extending/newtypes.rst:790 msgid "" "Finally, we add the :const:`Py_TPFLAGS_HAVE_GC` flag to the class flags::" msgstr "" -#: ../Doc/extending/newtypes.rst:783 +#: ../Doc/extending/newtypes.rst:794 msgid "" "That's pretty much it. If we had written custom :c:member:`~PyTypeObject." "tp_alloc` or :c:member:`~PyTypeObject.tp_free` slots, we'd need to modify " @@ -701,11 +712,11 @@ msgid "" "automatically provided." msgstr "" -#: ../Doc/extending/newtypes.rst:789 +#: ../Doc/extending/newtypes.rst:800 msgid "Subclassing other types" msgstr "" -#: ../Doc/extending/newtypes.rst:791 +#: ../Doc/extending/newtypes.rst:802 msgid "" "It is possible to create new extension types that are derived from existing " "types. It is easiest to inherit from the built in types, since an extension " @@ -713,7 +724,7 @@ msgid "" "share these :class:`PyTypeObject` structures between extension modules." msgstr "" -#: ../Doc/extending/newtypes.rst:796 +#: ../Doc/extending/newtypes.rst:807 msgid "" "In this example we will create a :class:`Shoddy` type that inherits from the " "built-in :class:`list` type. The new type will be completely compatible with " @@ -721,33 +732,33 @@ msgid "" "increases an internal counter. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:814 +#: ../Doc/extending/newtypes.rst:825 msgid "" "As you can see, the source code closely resembles the :class:`Noddy` " "examples in previous sections. We will break down the main differences " "between them. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:822 +#: ../Doc/extending/newtypes.rst:833 msgid "" "The primary difference for derived type objects is that the base type's " "object structure must be the first value. The base type will already include " "the :c:func:`PyObject_HEAD` at the beginning of its structure." msgstr "" -#: ../Doc/extending/newtypes.rst:826 +#: ../Doc/extending/newtypes.rst:837 msgid "" "When a Python object is a :class:`Shoddy` instance, its *PyObject\\** " "pointer can be safely cast to both *PyListObject\\** and *Shoddy\\**. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:838 +#: ../Doc/extending/newtypes.rst:849 msgid "" "In the :attr:`__init__` method for our type, we can see how to call through " "to the :attr:`__init__` method of the base type." msgstr "" -#: ../Doc/extending/newtypes.rst:841 +#: ../Doc/extending/newtypes.rst:852 msgid "" "This pattern is important when writing a type with custom :attr:`new` and :" "attr:`dealloc` methods. The :attr:`new` method should not actually create " @@ -756,7 +767,7 @@ msgid "" "tp_new`." msgstr "" -#: ../Doc/extending/newtypes.rst:846 +#: ../Doc/extending/newtypes.rst:857 msgid "" "When filling out the :c:func:`PyTypeObject` for the :class:`Shoddy` type, " "you see a slot for :c:func:`tp_base`. Due to cross platform compiler issues, " @@ -764,7 +775,7 @@ msgid "" "done later in the module's :c:func:`init` function. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:869 +#: ../Doc/extending/newtypes.rst:880 msgid "" "Before calling :c:func:`PyType_Ready`, the type structure must have the :c:" "member:`~PyTypeObject.tp_base` slot filled in. When we are deriving a new " @@ -773,36 +784,36 @@ msgid "" "type will be inherited." msgstr "" -#: ../Doc/extending/newtypes.rst:874 +#: ../Doc/extending/newtypes.rst:885 msgid "" "After that, calling :c:func:`PyType_Ready` and adding the type object to the " "module is the same as with the basic :class:`Noddy` examples." msgstr "" -#: ../Doc/extending/newtypes.rst:881 +#: ../Doc/extending/newtypes.rst:892 msgid "Type Methods" msgstr "" -#: ../Doc/extending/newtypes.rst:883 +#: ../Doc/extending/newtypes.rst:894 msgid "" "This section aims to give a quick fly-by on the various type methods you can " "implement and what they do." msgstr "" -#: ../Doc/extending/newtypes.rst:886 +#: ../Doc/extending/newtypes.rst:897 msgid "" "Here is the definition of :c:type:`PyTypeObject`, with some fields only used " "in debug builds omitted:" msgstr "" -#: ../Doc/extending/newtypes.rst:892 +#: ../Doc/extending/newtypes.rst:903 msgid "" "Now that's a *lot* of methods. Don't worry too much though - if you have a " "type you want to define, the chances are very good that you will only " "implement a handful of these." msgstr "" -#: ../Doc/extending/newtypes.rst:896 +#: ../Doc/extending/newtypes.rst:907 msgid "" "As you probably expect by now, we're going to go over this and give more " "information about the various handlers. We won't go in the order they are " @@ -813,14 +824,14 @@ msgid "" "then change the values to suit your new type. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:906 +#: ../Doc/extending/newtypes.rst:917 msgid "" "The name of the type - as mentioned in the last section, this will appear in " "various places, almost entirely for diagnostic purposes. Try to choose " "something that will be helpful in such a situation! ::" msgstr "" -#: ../Doc/extending/newtypes.rst:912 +#: ../Doc/extending/newtypes.rst:923 msgid "" "These fields tell the runtime how much memory to allocate when new objects " "of this type are created. Python has some built-in support for variable " @@ -829,23 +840,23 @@ msgid "" "later. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:919 +#: ../Doc/extending/newtypes.rst:930 msgid "" "Here you can put a string (or its address) that you want returned when the " "Python script references ``obj.__doc__`` to retrieve the doc string." msgstr "" -#: ../Doc/extending/newtypes.rst:922 +#: ../Doc/extending/newtypes.rst:933 msgid "" "Now we come to the basic type methods---the ones most extension types will " "implement." msgstr "" -#: ../Doc/extending/newtypes.rst:927 +#: ../Doc/extending/newtypes.rst:938 msgid "Finalization and De-allocation" msgstr "" -#: ../Doc/extending/newtypes.rst:939 +#: ../Doc/extending/newtypes.rst:950 msgid "" "This function is called when the reference count of the instance of your " "type is reduced to zero and the Python interpreter wants to reclaim it. If " @@ -854,7 +865,7 @@ msgid "" "of this function::" msgstr "" -#: ../Doc/extending/newtypes.rst:956 +#: ../Doc/extending/newtypes.rst:967 msgid "" "One important requirement of the deallocator function is that it leaves any " "pending exceptions alone. This is important since deallocators are " @@ -869,7 +880,7 @@ msgid "" "c:func:`PyErr_Fetch` and :c:func:`PyErr_Restore` functions::" msgstr "" -#: ../Doc/extending/newtypes.rst:995 +#: ../Doc/extending/newtypes.rst:1006 msgid "" "There are limitations to what you can safely do in a deallocator function. " "First, if your type supports garbage collection (using :c:member:" @@ -882,43 +893,43 @@ msgid "" "tp_dealloc` again, causing a double free and a crash." msgstr "" -#: ../Doc/extending/newtypes.rst:1004 +#: ../Doc/extending/newtypes.rst:1015 msgid "" "Starting with Python 3.4, it is recommended not to put any complex " "finalization code in :c:member:`~PyTypeObject.tp_dealloc`, and instead use " "the new :c:member:`~PyTypeObject.tp_finalize` type method." msgstr "" -#: ../Doc/extending/newtypes.rst:1009 +#: ../Doc/extending/newtypes.rst:1020 msgid ":pep:`442` explains the new finalization scheme." msgstr "" -#: ../Doc/extending/newtypes.rst:1016 +#: ../Doc/extending/newtypes.rst:1027 msgid "Object Presentation" msgstr "" -#: ../Doc/extending/newtypes.rst:1018 +#: ../Doc/extending/newtypes.rst:1029 msgid "" "In Python, there are two ways to generate a textual representation of an " "object: the :func:`repr` function, and the :func:`str` function. (The :func:" "`print` function just calls :func:`str`.) These handlers are both optional." msgstr "" -#: ../Doc/extending/newtypes.rst:1027 +#: ../Doc/extending/newtypes.rst:1038 msgid "" "The :c:member:`~PyTypeObject.tp_repr` handler should return a string object " "containing a representation of the instance for which it is called. Here is " "a simple example::" msgstr "" -#: ../Doc/extending/newtypes.rst:1038 +#: ../Doc/extending/newtypes.rst:1049 msgid "" "If no :c:member:`~PyTypeObject.tp_repr` handler is specified, the " "interpreter will supply a representation that uses the type's :c:member:" "`~PyTypeObject.tp_name` and a uniquely-identifying value for the object." msgstr "" -#: ../Doc/extending/newtypes.rst:1042 +#: ../Doc/extending/newtypes.rst:1053 msgid "" "The :c:member:`~PyTypeObject.tp_str` handler is to :func:`str` what the :c:" "member:`~PyTypeObject.tp_repr` handler described above is to :func:`repr`; " @@ -929,15 +940,15 @@ msgid "" "the :c:member:`~PyTypeObject.tp_repr` handler is used instead." msgstr "" -#: ../Doc/extending/newtypes.rst:1049 +#: ../Doc/extending/newtypes.rst:1060 msgid "Here is a simple example::" msgstr "" -#: ../Doc/extending/newtypes.rst:1061 +#: ../Doc/extending/newtypes.rst:1072 msgid "Attribute Management" msgstr "" -#: ../Doc/extending/newtypes.rst:1063 +#: ../Doc/extending/newtypes.rst:1074 msgid "" "For every object which can support attributes, the corresponding type must " "provide the functions that control how the attributes are resolved. There " @@ -947,7 +958,7 @@ msgid "" "handler is *NULL*." msgstr "" -#: ../Doc/extending/newtypes.rst:1069 +#: ../Doc/extending/newtypes.rst:1080 msgid "" "Python supports two pairs of attribute handlers; a type that supports " "attributes only needs to implement the functions for one pair. The " @@ -956,7 +967,7 @@ msgid "" "use whichever pair makes more sense for the implementation's convenience. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:1081 +#: ../Doc/extending/newtypes.rst:1092 msgid "" "If accessing attributes of an object is always a simple operation (this will " "be explained shortly), there are generic implementations which can be used " @@ -967,35 +978,35 @@ msgid "" "mechanism that is available." msgstr "" -#: ../Doc/extending/newtypes.rst:1092 +#: ../Doc/extending/newtypes.rst:1103 msgid "Generic Attribute Management" msgstr "" -#: ../Doc/extending/newtypes.rst:1094 +#: ../Doc/extending/newtypes.rst:1105 msgid "" "Most extension types only use *simple* attributes. So, what makes the " "attributes simple? There are only a couple of conditions that must be met:" msgstr "" -#: ../Doc/extending/newtypes.rst:1097 +#: ../Doc/extending/newtypes.rst:1108 msgid "" "The name of the attributes must be known when :c:func:`PyType_Ready` is " "called." msgstr "" -#: ../Doc/extending/newtypes.rst:1100 +#: ../Doc/extending/newtypes.rst:1111 msgid "" "No special processing is needed to record that an attribute was looked up or " "set, nor do actions need to be taken based on the value." msgstr "" -#: ../Doc/extending/newtypes.rst:1103 +#: ../Doc/extending/newtypes.rst:1114 msgid "" "Note that this list does not place any restrictions on the values of the " "attributes, when the values are computed, or how relevant data is stored." msgstr "" -#: ../Doc/extending/newtypes.rst:1106 +#: ../Doc/extending/newtypes.rst:1117 msgid "" "When :c:func:`PyType_Ready` is called, it uses three tables referenced by " "the type object to create :term:`descriptor`\\s which are placed in the " @@ -1007,18 +1018,18 @@ msgid "" "*NULL* as well, allowing the base type to handle attributes." msgstr "" -#: ../Doc/extending/newtypes.rst:1114 +#: ../Doc/extending/newtypes.rst:1125 msgid "The tables are declared as three fields of the type object::" msgstr "" -#: ../Doc/extending/newtypes.rst:1120 +#: ../Doc/extending/newtypes.rst:1131 msgid "" "If :c:member:`~PyTypeObject.tp_methods` is not *NULL*, it must refer to an " "array of :c:type:`PyMethodDef` structures. Each entry in the table is an " "instance of this structure::" msgstr "" -#: ../Doc/extending/newtypes.rst:1131 +#: ../Doc/extending/newtypes.rst:1142 msgid "" "One entry should be defined for each method provided by the type; no entries " "are needed for methods inherited from a base type. One additional entry is " @@ -1026,7 +1037,7 @@ msgid "" "attr:`ml_name` field of the sentinel must be *NULL*." msgstr "" -#: ../Doc/extending/newtypes.rst:1136 +#: ../Doc/extending/newtypes.rst:1147 msgid "" "The second table is used to define attributes which map directly to data " "stored in the instance. A variety of primitive C types are supported, and " @@ -1034,7 +1045,7 @@ msgid "" "defined as::" msgstr "" -#: ../Doc/extending/newtypes.rst:1148 +#: ../Doc/extending/newtypes.rst:1159 msgid "" "For each entry in the table, a :term:`descriptor` will be constructed and " "added to the type which will be able to extract a value from the instance " @@ -1045,53 +1056,53 @@ msgid "" "accessed." msgstr "" -#: ../Doc/extending/newtypes.rst:1155 +#: ../Doc/extending/newtypes.rst:1166 msgid "" "The following flag constants are defined in :file:`structmember.h`; they may " "be combined using bitwise-OR." msgstr "" -#: ../Doc/extending/newtypes.rst:1159 +#: ../Doc/extending/newtypes.rst:1170 msgid "Constant" msgstr "" -#: ../Doc/extending/newtypes.rst:1159 +#: ../Doc/extending/newtypes.rst:1170 msgid "Meaning" msgstr "Signification" -#: ../Doc/extending/newtypes.rst:1161 +#: ../Doc/extending/newtypes.rst:1172 msgid ":const:`READONLY`" msgstr "" -#: ../Doc/extending/newtypes.rst:1161 +#: ../Doc/extending/newtypes.rst:1172 msgid "Never writable." msgstr "" -#: ../Doc/extending/newtypes.rst:1163 +#: ../Doc/extending/newtypes.rst:1174 msgid ":const:`READ_RESTRICTED`" msgstr "" -#: ../Doc/extending/newtypes.rst:1163 +#: ../Doc/extending/newtypes.rst:1174 msgid "Not readable in restricted mode." msgstr "" -#: ../Doc/extending/newtypes.rst:1165 +#: ../Doc/extending/newtypes.rst:1176 msgid ":const:`WRITE_RESTRICTED`" msgstr "" -#: ../Doc/extending/newtypes.rst:1165 +#: ../Doc/extending/newtypes.rst:1176 msgid "Not writable in restricted mode." msgstr "" -#: ../Doc/extending/newtypes.rst:1167 +#: ../Doc/extending/newtypes.rst:1178 msgid ":const:`RESTRICTED`" msgstr "" -#: ../Doc/extending/newtypes.rst:1167 +#: ../Doc/extending/newtypes.rst:1178 msgid "Not readable or writable in restricted mode." msgstr "" -#: ../Doc/extending/newtypes.rst:1176 +#: ../Doc/extending/newtypes.rst:1187 msgid "" "An interesting advantage of using the :c:member:`~PyTypeObject.tp_members` " "table to build descriptors that are used at runtime is that any attribute " @@ -1101,17 +1112,17 @@ msgid "" "`__doc__` attribute." msgstr "" -#: ../Doc/extending/newtypes.rst:1182 +#: ../Doc/extending/newtypes.rst:1193 msgid "" "As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry " "with a :attr:`name` value of *NULL* is required." msgstr "" -#: ../Doc/extending/newtypes.rst:1196 +#: ../Doc/extending/newtypes.rst:1207 msgid "Type-specific Attribute Management" msgstr "" -#: ../Doc/extending/newtypes.rst:1198 +#: ../Doc/extending/newtypes.rst:1209 msgid "" "For simplicity, only the :c:type:`char\\*` version will be demonstrated " "here; the type of the name parameter is the only difference between the :c:" @@ -1122,18 +1133,18 @@ msgid "" "functionality, you'll understand what needs to be done." msgstr "" -#: ../Doc/extending/newtypes.rst:1206 +#: ../Doc/extending/newtypes.rst:1217 msgid "" "The :c:member:`~PyTypeObject.tp_getattr` handler is called when the object " "requires an attribute look-up. It is called in the same situations where " "the :meth:`__getattr__` method of a class would be called." msgstr "" -#: ../Doc/extending/newtypes.rst:1210 +#: ../Doc/extending/newtypes.rst:1221 msgid "Here is an example::" msgstr "" -#: ../Doc/extending/newtypes.rst:1226 +#: ../Doc/extending/newtypes.rst:1237 msgid "" "The :c:member:`~PyTypeObject.tp_setattr` handler is called when the :meth:" "`__setattr__` or :meth:`__delattr__` method of a class instance would be " @@ -1143,11 +1154,11 @@ msgid "" "should be set to *NULL*. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:1240 +#: ../Doc/extending/newtypes.rst:1251 msgid "Object Comparison" msgstr "" -#: ../Doc/extending/newtypes.rst:1246 +#: ../Doc/extending/newtypes.rst:1257 msgid "" "The :c:member:`~PyTypeObject.tp_richcompare` handler is called when " "comparisons are needed. It is analogous to the :ref:`rich comparison " @@ -1155,7 +1166,7 @@ msgid "" "`PyObject_RichCompare` and :c:func:`PyObject_RichCompareBool`." msgstr "" -#: ../Doc/extending/newtypes.rst:1251 +#: ../Doc/extending/newtypes.rst:1262 msgid "" "This function is called with two Python objects and the operator as " "arguments, where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, " @@ -1166,23 +1177,23 @@ msgid "" "should be tried, or *NULL* if an exception was set." msgstr "" -#: ../Doc/extending/newtypes.rst:1259 +#: ../Doc/extending/newtypes.rst:1270 msgid "" "Here is a sample implementation, for a datatype that is considered equal if " "the size of an internal pointer is equal::" msgstr "" -#: ../Doc/extending/newtypes.rst:1289 +#: ../Doc/extending/newtypes.rst:1300 msgid "Abstract Protocol Support" msgstr "" -#: ../Doc/extending/newtypes.rst:1291 +#: ../Doc/extending/newtypes.rst:1302 msgid "" "Python supports a variety of *abstract* 'protocols;' the specific interfaces " "provided to use these interfaces are documented in :ref:`abstract`." msgstr "" -#: ../Doc/extending/newtypes.rst:1295 +#: ../Doc/extending/newtypes.rst:1306 msgid "" "A number of these abstract interfaces were defined early in the development " "of the Python implementation. In particular, the number, mapping, and " @@ -1197,7 +1208,7 @@ msgid "" "slot, but a slot may still be unfilled.) ::" msgstr "" -#: ../Doc/extending/newtypes.rst:1310 +#: ../Doc/extending/newtypes.rst:1321 msgid "" "If you wish your object to be able to act like a number, a sequence, or a " "mapping object, then you place the address of a structure that implements " @@ -1208,13 +1219,13 @@ msgid "" "distribution. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:1319 +#: ../Doc/extending/newtypes.rst:1330 msgid "" "This function, if you choose to provide it, should return a hash number for " "an instance of your data type. Here is a moderately pointless example::" msgstr "" -#: ../Doc/extending/newtypes.rst:1335 +#: ../Doc/extending/newtypes.rst:1346 msgid "" "This function is called when an instance of your data type is \"called\", " "for example, if ``obj1`` is an instance of your data type and the Python " @@ -1222,23 +1233,23 @@ msgid "" "handler is invoked." msgstr "" -#: ../Doc/extending/newtypes.rst:1339 +#: ../Doc/extending/newtypes.rst:1350 msgid "This function takes three arguments:" msgstr "" -#: ../Doc/extending/newtypes.rst:1341 +#: ../Doc/extending/newtypes.rst:1352 msgid "" "*arg1* is the instance of the data type which is the subject of the call. If " "the call is ``obj1('hello')``, then *arg1* is ``obj1``." msgstr "" -#: ../Doc/extending/newtypes.rst:1344 +#: ../Doc/extending/newtypes.rst:1355 msgid "" "*arg2* is a tuple containing the arguments to the call. You can use :c:func:" "`PyArg_ParseTuple` to extract the arguments." msgstr "" -#: ../Doc/extending/newtypes.rst:1347 +#: ../Doc/extending/newtypes.rst:1358 msgid "" "*arg3* is a dictionary of keyword arguments that were passed. If this is non-" "*NULL* and you support keyword arguments, use :c:func:" @@ -1247,12 +1258,12 @@ msgid "" "`TypeError` with a message saying that keyword arguments are not supported." msgstr "" -#: ../Doc/extending/newtypes.rst:1353 +#: ../Doc/extending/newtypes.rst:1364 msgid "" "Here is a desultory example of the implementation of the call function. ::" msgstr "" -#: ../Doc/extending/newtypes.rst:1384 +#: ../Doc/extending/newtypes.rst:1395 msgid "" "These functions provide support for the iterator protocol. Any object which " "wishes to support iteration over its contents (which may be generated during " @@ -1263,7 +1274,7 @@ msgid "" "the case of an error, they should set an exception and return *NULL*." msgstr "" -#: ../Doc/extending/newtypes.rst:1392 +#: ../Doc/extending/newtypes.rst:1403 msgid "" "For an object which represents an iterable collection, the ``tp_iter`` " "handler must return an iterator object. The iterator object is responsible " @@ -1276,7 +1287,7 @@ msgid "" "objects are an example of such an iterator." msgstr "" -#: ../Doc/extending/newtypes.rst:1402 +#: ../Doc/extending/newtypes.rst:1413 msgid "" "Iterator objects should implement both handlers. The ``tp_iter`` handler " "should return a new reference to the iterator (this is the same as the " @@ -1289,11 +1300,11 @@ msgid "" "return *NULL*." msgstr "" -#: ../Doc/extending/newtypes.rst:1415 +#: ../Doc/extending/newtypes.rst:1426 msgid "Weak Reference Support" msgstr "" -#: ../Doc/extending/newtypes.rst:1417 +#: ../Doc/extending/newtypes.rst:1428 msgid "" "One of the goals of Python's weak-reference implementation is to allow any " "type to participate in the weak reference mechanism without incurring the " @@ -1301,7 +1312,7 @@ msgid "" "numbers)." msgstr "" -#: ../Doc/extending/newtypes.rst:1421 +#: ../Doc/extending/newtypes.rst:1432 msgid "" "For an object to be weakly referencable, the extension must include a :c:" "type:`PyObject\\*` field in the instance structure for the use of the weak " @@ -1312,28 +1323,28 @@ msgid "" "structure::" msgstr "" -#: ../Doc/extending/newtypes.rst:1435 +#: ../Doc/extending/newtypes.rst:1446 msgid "The statically-declared type object for instances is defined this way::" msgstr "" -#: ../Doc/extending/newtypes.rst:1452 +#: ../Doc/extending/newtypes.rst:1463 msgid "" "The type constructor is responsible for initializing the weak reference list " "to *NULL*::" msgstr "" -#: ../Doc/extending/newtypes.rst:1464 +#: ../Doc/extending/newtypes.rst:1475 msgid "" "The only further addition is that the destructor needs to call the weak " "reference manager to clear any weak references. This is only required if " "the weak reference list is non-*NULL*::" msgstr "" -#: ../Doc/extending/newtypes.rst:1483 +#: ../Doc/extending/newtypes.rst:1494 msgid "More Suggestions" msgstr "" -#: ../Doc/extending/newtypes.rst:1485 +#: ../Doc/extending/newtypes.rst:1496 msgid "" "Remember that you can omit most of these functions, in which case you " "provide ``0`` as a value. There are type definitions for each of the " @@ -1341,7 +1352,7 @@ msgid "" "include directory that comes with the source distribution of Python." msgstr "" -#: ../Doc/extending/newtypes.rst:1490 +#: ../Doc/extending/newtypes.rst:1501 msgid "" "In order to learn how to implement any specific method for your new data " "type, do the following: Download and unpack the Python source distribution. " @@ -1350,24 +1361,24 @@ msgid "" "will find examples of the function you want to implement." msgstr "" -#: ../Doc/extending/newtypes.rst:1496 +#: ../Doc/extending/newtypes.rst:1507 msgid "" "When you need to verify that an object is an instance of the type you are " "implementing, use the :c:func:`PyObject_TypeCheck` function. A sample of its " "use might be something like the following::" msgstr "" -#: ../Doc/extending/newtypes.rst:1506 +#: ../Doc/extending/newtypes.rst:1517 msgid "Footnotes" msgstr "Notes" -#: ../Doc/extending/newtypes.rst:1507 +#: ../Doc/extending/newtypes.rst:1518 msgid "" "This is true when we know that the object is a basic type, like a string or " "a float." msgstr "" -#: ../Doc/extending/newtypes.rst:1510 +#: ../Doc/extending/newtypes.rst:1521 msgid "" "We relied on this in the :c:member:`~PyTypeObject.tp_dealloc` handler in " "this example, because our type doesn't support garbage collection. Even if a " @@ -1376,7 +1387,7 @@ msgid "" "advanced and not covered here." msgstr "" -#: ../Doc/extending/newtypes.rst:1515 +#: ../Doc/extending/newtypes.rst:1526 msgid "" "We now know that the first and last members are strings, so perhaps we could " "be less careful about decrementing their reference counts, however, we " @@ -1386,7 +1397,7 @@ msgid "" "objects." msgstr "" -#: ../Doc/extending/newtypes.rst:1521 +#: ../Doc/extending/newtypes.rst:1532 msgid "" "Even in the third version, we aren't guaranteed to avoid cycles. Instances " "of string subclasses are allowed and string subclasses could allow cycles " diff --git a/faq/general.po b/faq/general.po index ec310b67..11785045 100644 --- a/faq/general.po +++ b/faq/general.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-12 13:37+0200\n" "PO-Revision-Date: 2017-05-28 17:54+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -378,10 +378,11 @@ msgstr "" "fonctionner immédiatement sur la plupart des plateformes UNIX." #: ../Doc/faq/general.rst:169 +#, fuzzy msgid "" "Consult the `Getting Started section of the Python Developer's Guide " -"`__ for more information on " -"getting the source code and compiling it." +"`__ for more information on getting the " +"source code and compiling it." msgstr "" "Consultez `la section Premiers pas du Guide des Développeurs Python `__ pour plus d'informations sur comment " @@ -493,9 +494,10 @@ msgstr "" "python.org/; un flux RSS de *news* est disponible." #: ../Doc/faq/general.rst:225 +#, fuzzy msgid "" "You can also access the development version of Python through Git. See `The " -"Python Developer's Guide `_ for details." +"Python Developer's Guide `_ for details." msgstr "" "Vous pouvez aussi accéder aux de Python en dévloppement grâce à Git. Voir " "`Le Guide du Développeur Python `_ pour " @@ -531,9 +533,10 @@ msgstr "" "@template=forgotten>`_." #: ../Doc/faq/general.rst:241 +#, fuzzy msgid "" "For more information on how Python is developed, consult `the Python " -"Developer's Guide `_." +"Developer's Guide `_." msgstr "" "Pour davantages d'informations sur comment Python est développé, consultez " "`le Guide du Développeur Python `_." diff --git a/faq/programming.po b/faq/programming.po index 2919ccb2..187d6287 100644 --- a/faq/programming.po +++ b/faq/programming.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-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2138,7 +2138,7 @@ msgstr "" msgid "" "Despite the cycle collector, it's still a good idea to define an explicit " "``close()`` method on objects to be called whenever you're done with them. " -"The ``close()`` method can then remove attributes that refer to subobjecs. " +"The ``close()`` method can then remove attributes that refer to subobjects. " "Don't call :meth:`__del__` directly -- :meth:`__del__` should call " "``close()`` and ``close()`` should make sure that it can be called more than " "once for the same object." diff --git a/howto/curses.po b/howto/curses.po index 443c9170..5bbb602a 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-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -702,8 +702,8 @@ msgid "" "Python interface. Often this isn't because they're difficult to implement, " "but because no one has needed them yet. Also, Python doesn't yet support " "the menu library associated with ncurses. Patches adding support for these " -"would be welcome; see `the Python Developer's Guide `_ to learn more about submitting patches to Python." +"would be welcome; see `the Python Developer's Guide `_ to learn more about submitting patches to Python." msgstr "" #: ../Doc/howto/curses.rst:544 diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 84b72d5a..5b39beb8 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-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -717,11 +717,11 @@ msgid "" "the data needed by the handler to create the socket::" msgstr "" -#: ../Doc/howto/logging-cookbook.rst:1286 +#: ../Doc/howto/logging-cookbook.rst:1285 msgid "Subclassing QueueListener - a ZeroMQ example" msgstr "" -#: ../Doc/howto/logging-cookbook.rst:1288 +#: ../Doc/howto/logging-cookbook.rst:1287 msgid "" "You can also subclass :class:`QueueListener` to get messages from other " "kinds of queues, for example a ZeroMQ 'subscribe' socket. Here's an example::" diff --git a/library/abc.po b/library/abc.po index 126d2732..f64f8b85 100644 --- a/library/abc.po +++ b/library/abc.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-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,14 +43,32 @@ msgid "" msgstr "" #: ../Doc/library/abc.rst:27 -msgid "This module provides the following classes:" -msgstr "Le module fournit les classes suivantes :" +msgid "" +"This module provides the metaclass :class:`ABCMeta` for defining ABCs and a " +"helper class :class:`ABC` to alternatively define ABCs through inheritance:" +msgstr "" -#: ../Doc/library/abc.rst:31 +#: ../Doc/library/abc.rst:32 +msgid "" +"A helper class that has :class:`ABCMeta` as its metaclass. With this class, " +"an abstract base class can be created by simply deriving from :class:`ABC` " +"avoiding sometimes confusing metaclass usage, for example::" +msgstr "" + +#: ../Doc/library/abc.rst:41 +msgid "" +"Note that the type of :class:`ABC` is still :class:`ABCMeta`, therefore " +"inheriting from :class:`ABC` requires the usual precautions regarding " +"metaclass usage, as multiple inheritance may lead to metaclass conflicts. " +"One may also define an abstract base class by passing the metaclass keyword " +"and using :class:`ABCMeta` directly, for example::" +msgstr "" + +#: ../Doc/library/abc.rst:57 msgid "Metaclass for defining Abstract Base Classes (ABCs)." msgstr "" -#: ../Doc/library/abc.rst:33 +#: ../Doc/library/abc.rst:59 msgid "" "Use this metaclass to create an ABC. An ABC can be subclassed directly, and " "then acts as a mix-in class. You can also register unrelated concrete " @@ -62,36 +80,36 @@ msgid "" "even via :func:`super`). [#]_" msgstr "" -#: ../Doc/library/abc.rst:42 +#: ../Doc/library/abc.rst:68 msgid "" "Classes created with a metaclass of :class:`ABCMeta` have the following " "method:" msgstr "" -#: ../Doc/library/abc.rst:46 +#: ../Doc/library/abc.rst:72 msgid "" "Register *subclass* as a \"virtual subclass\" of this ABC. For example::" msgstr "" -#: ../Doc/library/abc.rst:59 +#: ../Doc/library/abc.rst:85 msgid "Returns the registered subclass, to allow usage as a class decorator." msgstr "" -#: ../Doc/library/abc.rst:62 +#: ../Doc/library/abc.rst:88 msgid "" "To detect calls to :meth:`register`, you can use the :func:`get_cache_token` " "function." msgstr "" -#: ../Doc/library/abc.rst:66 +#: ../Doc/library/abc.rst:92 msgid "You can also override this method in an abstract base class:" msgstr "" -#: ../Doc/library/abc.rst:70 +#: ../Doc/library/abc.rst:96 msgid "(Must be defined as a class method.)" msgstr "(Doit être définie en temps que méthode de classe.)" -#: ../Doc/library/abc.rst:72 +#: ../Doc/library/abc.rst:98 msgid "" "Check whether *subclass* is considered a subclass of this ABC. This means " "that you can customize the behavior of ``issubclass`` further without the " @@ -100,7 +118,7 @@ msgid "" "method of the ABC.)" msgstr "" -#: ../Doc/library/abc.rst:78 +#: ../Doc/library/abc.rst:104 msgid "" "This method should return ``True``, ``False`` or ``NotImplemented``. If it " "returns ``True``, the *subclass* is considered a subclass of this ABC. If it " @@ -109,12 +127,12 @@ msgid "" "subclass check is continued with the usual mechanism." msgstr "" -#: ../Doc/library/abc.rst:88 +#: ../Doc/library/abc.rst:114 msgid "" "For a demonstration of these concepts, look at this example ABC definition::" msgstr "" -#: ../Doc/library/abc.rst:117 +#: ../Doc/library/abc.rst:143 msgid "" "The ABC ``MyIterable`` defines the standard iterable method, :meth:" "`~iterator.__iter__`, as an abstract method. The implementation given here " @@ -123,7 +141,7 @@ msgid "" "be overridden in non-abstract derived classes." msgstr "" -#: ../Doc/library/abc.rst:123 +#: ../Doc/library/abc.rst:149 msgid "" "The :meth:`__subclasshook__` class method defined here says that any class " "that has an :meth:`~iterator.__iter__` method in its :attr:`~object." @@ -131,7 +149,7 @@ msgid "" "`~class.__mro__` list) is considered a ``MyIterable`` too." msgstr "" -#: ../Doc/library/abc.rst:128 +#: ../Doc/library/abc.rst:154 msgid "" "Finally, the last line makes ``Foo`` a virtual subclass of ``MyIterable``, " "even though it does not define an :meth:`~iterator.__iter__` method (it uses " @@ -140,29 +158,15 @@ msgid "" "available as a method of ``Foo``, so it is provided separately." msgstr "" -#: ../Doc/library/abc.rst:137 -msgid "" -"A helper class that has :class:`ABCMeta` as its metaclass. With this class, " -"an abstract base class can be created by simply deriving from :class:`ABC`, " -"avoiding sometimes confusing metaclass usage." -msgstr "" - -#: ../Doc/library/abc.rst:141 -msgid "" -"Note that the type of :class:`ABC` is still :class:`ABCMeta`, therefore " -"inheriting from :class:`ABC` requires the usual precautions regarding " -"metaclass usage, as multiple inheritance may lead to metaclass conflicts." -msgstr "" - -#: ../Doc/library/abc.rst:148 +#: ../Doc/library/abc.rst:163 msgid "The :mod:`abc` module also provides the following decorators:" msgstr "" -#: ../Doc/library/abc.rst:152 +#: ../Doc/library/abc.rst:167 msgid "A decorator indicating abstract methods." msgstr "Un décorateur marquant les méthodes abstraites." -#: ../Doc/library/abc.rst:154 +#: ../Doc/library/abc.rst:169 msgid "" "Using this decorator requires that the class's metaclass is :class:`ABCMeta` " "or is derived from it. A class that has a metaclass derived from :class:" @@ -172,7 +176,7 @@ msgid "" "declare abstract methods for properties and descriptors." msgstr "" -#: ../Doc/library/abc.rst:161 +#: ../Doc/library/abc.rst:176 msgid "" "Dynamically adding abstract methods to a class, or attempting to modify the " "abstraction status of a method or class once it is created, are not " @@ -181,14 +185,14 @@ msgid "" "`register` method are not affected." msgstr "" -#: ../Doc/library/abc.rst:167 +#: ../Doc/library/abc.rst:182 msgid "" "When :func:`abstractmethod` is applied in combination with other method " "descriptors, it should be applied as the innermost decorator, as shown in " "the following usage examples::" msgstr "" -#: ../Doc/library/abc.rst:201 +#: ../Doc/library/abc.rst:216 msgid "" "In order to correctly interoperate with the abstract base class machinery, " "the descriptor must identify itself as abstract using :attr:" @@ -197,7 +201,7 @@ msgid "" "Python's built-in property does the equivalent of::" msgstr "" -#: ../Doc/library/abc.rst:216 +#: ../Doc/library/abc.rst:231 msgid "" "Unlike Java abstract methods, these abstract methods may have an " "implementation. This implementation can be called via the :func:`super` " @@ -206,48 +210,48 @@ msgid "" "inheritance." msgstr "" -#: ../Doc/library/abc.rst:226 +#: ../Doc/library/abc.rst:241 msgid "" "A subclass of the built-in :func:`classmethod`, indicating an abstract " "classmethod. Otherwise it is similar to :func:`abstractmethod`." msgstr "" -#: ../Doc/library/abc.rst:229 +#: ../Doc/library/abc.rst:244 msgid "" "This special case is deprecated, as the :func:`classmethod` decorator is now " "correctly identified as abstract when applied to an abstract method::" msgstr "" -#: ../Doc/library/abc.rst:240 +#: ../Doc/library/abc.rst:255 msgid "" "It is now possible to use :class:`classmethod` with :func:`abstractmethod`, " "making this decorator redundant." msgstr "" -#: ../Doc/library/abc.rst:247 +#: ../Doc/library/abc.rst:262 msgid "" "A subclass of the built-in :func:`staticmethod`, indicating an abstract " "staticmethod. Otherwise it is similar to :func:`abstractmethod`." msgstr "" -#: ../Doc/library/abc.rst:250 +#: ../Doc/library/abc.rst:265 msgid "" "This special case is deprecated, as the :func:`staticmethod` decorator is " "now correctly identified as abstract when applied to an abstract method::" msgstr "" -#: ../Doc/library/abc.rst:261 +#: ../Doc/library/abc.rst:276 msgid "" "It is now possible to use :class:`staticmethod` with :func:`abstractmethod`, " "making this decorator redundant." msgstr "" -#: ../Doc/library/abc.rst:268 +#: ../Doc/library/abc.rst:283 msgid "" "A subclass of the built-in :func:`property`, indicating an abstract property." msgstr "" -#: ../Doc/library/abc.rst:271 +#: ../Doc/library/abc.rst:286 msgid "" "Using this function requires that the class's metaclass is :class:`ABCMeta` " "or is derived from it. A class that has a metaclass derived from :class:" @@ -256,53 +260,56 @@ msgid "" "of the normal 'super' call mechanisms." msgstr "" -#: ../Doc/library/abc.rst:277 +#: ../Doc/library/abc.rst:292 msgid "" "This special case is deprecated, as the :func:`property` decorator is now " "correctly identified as abstract when applied to an abstract method::" msgstr "" -#: ../Doc/library/abc.rst:287 +#: ../Doc/library/abc.rst:302 msgid "" "The above example defines a read-only property; you can also define a read-" "write abstract property by appropriately marking one or more of the " "underlying methods as abstract::" msgstr "" -#: ../Doc/library/abc.rst:301 +#: ../Doc/library/abc.rst:316 msgid "" "If only some components are abstract, only those components need to be " "updated to create a concrete property in a subclass::" msgstr "" -#: ../Doc/library/abc.rst:310 +#: ../Doc/library/abc.rst:325 msgid "" "It is now possible to use :class:`property`, :meth:`property.getter`, :meth:" "`property.setter` and :meth:`property.deleter` with :func:`abstractmethod`, " "making this decorator redundant." msgstr "" -#: ../Doc/library/abc.rst:316 +#: ../Doc/library/abc.rst:331 msgid "The :mod:`abc` module also provides the following functions:" msgstr "" -#: ../Doc/library/abc.rst:320 +#: ../Doc/library/abc.rst:335 msgid "Returns the current abstract base class cache token." msgstr "" -#: ../Doc/library/abc.rst:322 +#: ../Doc/library/abc.rst:337 msgid "" "The token is an opaque object (that supports equality testing) identifying " "the current version of the abstract base class cache for virtual subclasses. " "The token changes with every call to :meth:`ABCMeta.register` on any ABC." msgstr "" -#: ../Doc/library/abc.rst:330 +#: ../Doc/library/abc.rst:345 msgid "Footnotes" msgstr "Notes" -#: ../Doc/library/abc.rst:331 +#: ../Doc/library/abc.rst:346 msgid "" "C++ programmers should note that Python's virtual base class concept is not " "the same as C++'s." msgstr "" + +#~ msgid "This module provides the following classes:" +#~ msgstr "Le module fournit les classes suivantes :" diff --git a/library/aifc.po b/library/aifc.po index 391bd0c4..02a0b08b 100644 --- a/library/aifc.po +++ b/library/aifc.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-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,14 +33,7 @@ msgid "" "the ability to compress the audio data." msgstr "" -#: ../Doc/library/aifc.rst:23 -msgid "" -"Some operations may only work under IRIX; these will raise :exc:" -"`ImportError` when attempting to import the :mod:`cl` module, which is only " -"available on IRIX." -msgstr "" - -#: ../Doc/library/aifc.rst:27 +#: ../Doc/library/aifc.rst:21 msgid "" "Audio files have a number of parameters that describe the audio data. The " "sampling rate or frame rate is the number of times per second the sound is " @@ -51,7 +44,7 @@ msgid "" "samplesize * framerate`` bytes." msgstr "" -#: ../Doc/library/aifc.rst:35 +#: ../Doc/library/aifc.rst:29 msgid "" "For example, CD quality audio has a sample size of two bytes (16 bits), uses " "two channels (stereo) and has a frame rate of 44,100 frames/second. This " @@ -59,11 +52,11 @@ msgid "" "2\\*2\\*44100 bytes (176,400 bytes)." msgstr "" -#: ../Doc/library/aifc.rst:40 +#: ../Doc/library/aifc.rst:34 msgid "Module :mod:`aifc` defines the following function:" msgstr "Le module :mod:`aifc` définit les fonctions suivantes :" -#: ../Doc/library/aifc.rst:45 +#: ../Doc/library/aifc.rst:39 msgid "" "Open an AIFF or AIFF-C file and return an object instance with methods that " "are described below. The argument *file* is either a string naming a file " @@ -77,53 +70,53 @@ msgid "" "keyword:`with` block completes, the :meth:`~aifc.close` method is called." msgstr "" -#: ../Doc/library/aifc.rst:56 +#: ../Doc/library/aifc.rst:50 msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: ../Doc/library/aifc.rst:59 +#: ../Doc/library/aifc.rst:53 msgid "" "Objects returned by :func:`.open` when a file is opened for reading have the " "following methods:" msgstr "" -#: ../Doc/library/aifc.rst:65 +#: ../Doc/library/aifc.rst:59 msgid "Return the number of audio channels (1 for mono, 2 for stereo)." msgstr "" -#: ../Doc/library/aifc.rst:70 +#: ../Doc/library/aifc.rst:64 msgid "Return the size in bytes of individual samples." msgstr "Donne la taille en octets des échantillons, individuellement." -#: ../Doc/library/aifc.rst:75 +#: ../Doc/library/aifc.rst:69 msgid "Return the sampling rate (number of audio frames per second)." msgstr "" -#: ../Doc/library/aifc.rst:80 +#: ../Doc/library/aifc.rst:74 msgid "Return the number of audio frames in the file." msgstr "Donne le nombre de trames (*frames*) audio du fichier." -#: ../Doc/library/aifc.rst:85 +#: ../Doc/library/aifc.rst:79 msgid "" "Return a bytes array of length 4 describing the type of compression used in " "the audio file. For AIFF files, the returned value is ``b'NONE'``." msgstr "" -#: ../Doc/library/aifc.rst:92 +#: ../Doc/library/aifc.rst:86 msgid "" "Return a bytes array convertible to a human-readable description of the type " "of compression used in the audio file. For AIFF files, the returned value " "is ``b'not compressed'``." msgstr "" -#: ../Doc/library/aifc.rst:99 +#: ../Doc/library/aifc.rst:93 msgid "" "Returns a :func:`~collections.namedtuple` ``(nchannels, sampwidth, " "framerate, nframes, comptype, compname)``, equivalent to output of the :meth:" "`get\\*` methods." msgstr "" -#: ../Doc/library/aifc.rst:106 +#: ../Doc/library/aifc.rst:100 msgid "" "Return a list of markers in the audio file. A marker consists of a tuple of " "three elements. The first is the mark ID (an integer), the second is the " @@ -131,40 +124,40 @@ msgid "" "third is the name of the mark (a string)." msgstr "" -#: ../Doc/library/aifc.rst:114 +#: ../Doc/library/aifc.rst:108 msgid "" "Return the tuple as described in :meth:`getmarkers` for the mark with the " "given *id*." msgstr "" -#: ../Doc/library/aifc.rst:120 +#: ../Doc/library/aifc.rst:114 msgid "" "Read and return the next *nframes* frames from the audio file. The returned " "data is a string containing for each frame the uncompressed samples of all " "channels." msgstr "" -#: ../Doc/library/aifc.rst:127 +#: ../Doc/library/aifc.rst:121 msgid "" "Rewind the read pointer. The next :meth:`readframes` will start from the " "beginning." msgstr "" -#: ../Doc/library/aifc.rst:133 +#: ../Doc/library/aifc.rst:127 msgid "Seek to the specified frame number." msgstr "Va à la trame de numéro donné." -#: ../Doc/library/aifc.rst:138 +#: ../Doc/library/aifc.rst:132 msgid "Return the current frame number." msgstr "Donne le numéro de la trame courante." -#: ../Doc/library/aifc.rst:143 +#: ../Doc/library/aifc.rst:137 msgid "" "Close the AIFF file. After calling this method, the object can no longer be " "used." msgstr "" -#: ../Doc/library/aifc.rst:146 +#: ../Doc/library/aifc.rst:140 msgid "" "Objects returned by :func:`.open` when a file is opened for writing have all " "the above methods, except for :meth:`readframes` and :meth:`setpos`. In " @@ -174,40 +167,40 @@ msgid "" "parameters except for the number of frames must be filled in." msgstr "" -#: ../Doc/library/aifc.rst:156 +#: ../Doc/library/aifc.rst:150 msgid "" "Create an AIFF file. The default is that an AIFF-C file is created, unless " "the name of the file ends in ``'.aiff'`` in which case the default is an " "AIFF file." msgstr "" -#: ../Doc/library/aifc.rst:162 +#: ../Doc/library/aifc.rst:156 msgid "" "Create an AIFF-C file. The default is that an AIFF-C file is created, " "unless the name of the file ends in ``'.aiff'`` in which case the default is " "an AIFF file." msgstr "" -#: ../Doc/library/aifc.rst:169 +#: ../Doc/library/aifc.rst:163 msgid "Specify the number of channels in the audio file." msgstr "Définit le nombre de canaux du fichier audio." -#: ../Doc/library/aifc.rst:174 +#: ../Doc/library/aifc.rst:168 msgid "Specify the size in bytes of audio samples." msgstr "Définit la taille en octets des échantillons audio." -#: ../Doc/library/aifc.rst:179 +#: ../Doc/library/aifc.rst:173 msgid "Specify the sampling frequency in frames per second." msgstr "" -#: ../Doc/library/aifc.rst:184 +#: ../Doc/library/aifc.rst:178 msgid "" "Specify the number of frames that are to be written to the audio file. If " "this parameter is not set, or not set correctly, the file needs to support " "seeking." msgstr "" -#: ../Doc/library/aifc.rst:195 +#: ../Doc/library/aifc.rst:189 msgid "" "Specify the compression type. If not specified, the audio data will not be " "compressed. In AIFF files, compression is not possible. The name parameter " @@ -217,42 +210,42 @@ msgid "" "``b'ALAW'``, ``b'G722'``." msgstr "" -#: ../Doc/library/aifc.rst:205 +#: ../Doc/library/aifc.rst:199 msgid "" "Set all the above parameters at once. The argument is a tuple consisting of " "the various parameters. This means that it is possible to use the result of " "a :meth:`getparams` call as argument to :meth:`setparams`." msgstr "" -#: ../Doc/library/aifc.rst:212 +#: ../Doc/library/aifc.rst:206 msgid "" "Add a mark with the given id (larger than 0), and the given name at the " "given position. This method can be called at any time before :meth:`close`." msgstr "" -#: ../Doc/library/aifc.rst:218 +#: ../Doc/library/aifc.rst:212 msgid "" "Return the current write position in the output file. Useful in combination " "with :meth:`setmark`." msgstr "" -#: ../Doc/library/aifc.rst:224 +#: ../Doc/library/aifc.rst:218 msgid "" "Write data to the output file. This method can only be called after the " "audio file parameters have been set." msgstr "" -#: ../Doc/library/aifc.rst:227 ../Doc/library/aifc.rst:236 +#: ../Doc/library/aifc.rst:221 ../Doc/library/aifc.rst:230 msgid "Any :term:`bytes-like object` is now accepted." msgstr "N'importe quel :term:`bytes-like object` est maintenant accepté." -#: ../Doc/library/aifc.rst:233 +#: ../Doc/library/aifc.rst:227 msgid "" "Like :meth:`writeframes`, except that the header of the audio file is not " "updated." msgstr "" -#: ../Doc/library/aifc.rst:242 +#: ../Doc/library/aifc.rst:236 msgid "" "Close the AIFF file. The header of the file is updated to reflect the " "actual size of the audio data. After calling this method, the object can no " diff --git a/library/argparse.po b/library/argparse.po index 03df61fe..5d4d06fe 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-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -217,7 +217,7 @@ msgstr "" msgid "*allow_abbrev* parameter was added." msgstr "Le paramètre *allow_abbrev* est ajouté." -#: ../Doc/library/argparse.rst:185 ../Doc/library/argparse.rst:681 +#: ../Doc/library/argparse.rst:185 ../Doc/library/argparse.rst:683 msgid "The following sections describe how each of these are used." msgstr "" @@ -369,27 +369,29 @@ msgstr "" #: ../Doc/library/argparse.rst:428 msgid "" ":class:`RawTextHelpFormatter` maintains whitespace for all sorts of help " -"text, including argument descriptions." +"text, including argument descriptions. However, multiple new lines are " +"replaced with one. If you wish to preserve multiple blank lines, add spaces " +"between the newlines." msgstr "" -#: ../Doc/library/argparse.rst:431 +#: ../Doc/library/argparse.rst:433 msgid "" ":class:`ArgumentDefaultsHelpFormatter` automatically adds information about " "default values to each of the argument help messages::" msgstr "" -#: ../Doc/library/argparse.rst:449 +#: ../Doc/library/argparse.rst:451 msgid "" ":class:`MetavarTypeHelpFormatter` uses the name of the type_ argument for " "each argument as the display name for its values (rather than using the " "dest_ as the regular formatter does)::" msgstr "" -#: ../Doc/library/argparse.rst:470 +#: ../Doc/library/argparse.rst:472 msgid "prefix_chars" msgstr "préfixe_chars" -#: ../Doc/library/argparse.rst:472 +#: ../Doc/library/argparse.rst:474 msgid "" "Most command-line options will use ``-`` as the prefix, e.g. ``-f/--foo``. " "Parsers that need to support different or additional prefix characters, e.g. " @@ -397,18 +399,18 @@ msgid "" "``prefix_chars=`` argument to the ArgumentParser constructor::" msgstr "" -#: ../Doc/library/argparse.rst:484 +#: ../Doc/library/argparse.rst:486 msgid "" "The ``prefix_chars=`` argument defaults to ``'-'``. Supplying a set of " "characters that does not include ``-`` will cause ``-f/--foo`` options to be " "disallowed." msgstr "" -#: ../Doc/library/argparse.rst:490 +#: ../Doc/library/argparse.rst:492 msgid "fromfile_prefix_chars" msgstr "fromfile_préfixe_chars" -#: ../Doc/library/argparse.rst:492 +#: ../Doc/library/argparse.rst:494 msgid "" "Sometimes, for example when dealing with a particularly long argument lists, " "it may make sense to keep the list of arguments in a file rather than typing " @@ -418,7 +420,7 @@ msgid "" "replaced by the arguments they contain. For example::" msgstr "" -#: ../Doc/library/argparse.rst:506 +#: ../Doc/library/argparse.rst:508 msgid "" "Arguments read from a file must by default be one per line (but see also :" "meth:`~ArgumentParser.convert_arg_line_to_args`) and are treated as if they " @@ -428,17 +430,17 @@ msgid "" "f', 'bar']``." msgstr "" -#: ../Doc/library/argparse.rst:512 +#: ../Doc/library/argparse.rst:514 msgid "" "The ``fromfile_prefix_chars=`` argument defaults to ``None``, meaning that " "arguments will never be treated as file references." msgstr "" -#: ../Doc/library/argparse.rst:517 +#: ../Doc/library/argparse.rst:519 msgid "argument_default" msgstr "argument_default" -#: ../Doc/library/argparse.rst:519 +#: ../Doc/library/argparse.rst:521 msgid "" "Generally, argument defaults are specified either by passing a default to :" "meth:`~ArgumentParser.add_argument` or by calling the :meth:`~ArgumentParser." @@ -450,26 +452,26 @@ msgid "" "supply ``argument_default=SUPPRESS``::" msgstr "" -#: ../Doc/library/argparse.rst:539 +#: ../Doc/library/argparse.rst:541 msgid "allow_abbrev" msgstr "allow_abbrev" -#: ../Doc/library/argparse.rst:541 +#: ../Doc/library/argparse.rst:543 msgid "" "Normally, when you pass an argument list to the :meth:`~ArgumentParser." "parse_args` method of an :class:`ArgumentParser`, it :ref:`recognizes " "abbreviations ` of long options." msgstr "" -#: ../Doc/library/argparse.rst:545 +#: ../Doc/library/argparse.rst:547 msgid "This feature can be disabled by setting ``allow_abbrev`` to ``False``::" msgstr "" -#: ../Doc/library/argparse.rst:558 +#: ../Doc/library/argparse.rst:560 msgid "conflict_handler" msgstr "conflict_handler" -#: ../Doc/library/argparse.rst:560 +#: ../Doc/library/argparse.rst:562 msgid "" ":class:`ArgumentParser` objects do not allow two actions with the same " "option string. By default, :class:`ArgumentParser` objects raise an " @@ -477,7 +479,7 @@ msgid "" "that is already in use::" msgstr "" -#: ../Doc/library/argparse.rst:572 +#: ../Doc/library/argparse.rst:574 msgid "" "Sometimes (e.g. when using parents_) it may be useful to simply override any " "older arguments with the same option string. To get this behavior, the " @@ -485,7 +487,7 @@ msgid "" "of :class:`ArgumentParser`::" msgstr "" -#: ../Doc/library/argparse.rst:588 +#: ../Doc/library/argparse.rst:590 msgid "" "Note that :class:`ArgumentParser` objects only remove an action if all of " "its option strings are overridden. So, in the example above, the old ``-f/--" @@ -493,31 +495,31 @@ msgid "" "option string was overridden." msgstr "" -#: ../Doc/library/argparse.rst:595 +#: ../Doc/library/argparse.rst:597 msgid "add_help" msgstr "add_help" -#: ../Doc/library/argparse.rst:597 +#: ../Doc/library/argparse.rst:599 msgid "" "By default, ArgumentParser objects add an option which simply displays the " "parser's help message. For example, consider a file named ``myprogram.py`` " "containing the following code::" msgstr "" -#: ../Doc/library/argparse.rst:606 +#: ../Doc/library/argparse.rst:608 msgid "" "If ``-h`` or ``--help`` is supplied at the command line, the ArgumentParser " "help will be printed:" msgstr "" -#: ../Doc/library/argparse.rst:618 +#: ../Doc/library/argparse.rst:620 msgid "" "Occasionally, it may be useful to disable the addition of this help option. " "This can be achieved by passing ``False`` as the ``add_help=`` argument to :" "class:`ArgumentParser`::" msgstr "" -#: ../Doc/library/argparse.rst:630 +#: ../Doc/library/argparse.rst:632 msgid "" "The help option is typically ``-h/--help``. The exception to this is if the " "``prefix_chars=`` is specified and does not include ``-``, in which case ``-" @@ -525,77 +527,77 @@ msgid "" "in ``prefix_chars`` is used to prefix the help options::" msgstr "" -#: ../Doc/library/argparse.rst:645 +#: ../Doc/library/argparse.rst:647 msgid "The add_argument() method" msgstr "La méthode add_argument()" -#: ../Doc/library/argparse.rst:651 +#: ../Doc/library/argparse.rst:653 msgid "" "Define how a single command-line argument should be parsed. Each parameter " "has its own more detailed description below, but in short they are:" msgstr "" -#: ../Doc/library/argparse.rst:654 +#: ../Doc/library/argparse.rst:656 msgid "" "`name or flags`_ - Either a name or a list of option strings, e.g. ``foo`` " "or ``-f, --foo``." msgstr "" -#: ../Doc/library/argparse.rst:657 +#: ../Doc/library/argparse.rst:659 msgid "" "action_ - The basic type of action to be taken when this argument is " "encountered at the command line." msgstr "" -#: ../Doc/library/argparse.rst:660 +#: ../Doc/library/argparse.rst:662 msgid "nargs_ - The number of command-line arguments that should be consumed." msgstr "" -#: ../Doc/library/argparse.rst:662 +#: ../Doc/library/argparse.rst:664 msgid "" "const_ - A constant value required by some action_ and nargs_ selections." msgstr "" -#: ../Doc/library/argparse.rst:664 +#: ../Doc/library/argparse.rst:666 msgid "" "default_ - The value produced if the argument is absent from the command " "line." msgstr "" -#: ../Doc/library/argparse.rst:667 +#: ../Doc/library/argparse.rst:669 msgid "" "type_ - The type to which the command-line argument should be converted." msgstr "" -#: ../Doc/library/argparse.rst:669 +#: ../Doc/library/argparse.rst:671 msgid "choices_ - A container of the allowable values for the argument." msgstr "" -#: ../Doc/library/argparse.rst:671 +#: ../Doc/library/argparse.rst:673 msgid "" "required_ - Whether or not the command-line option may be omitted (optionals " "only)." msgstr "" -#: ../Doc/library/argparse.rst:674 +#: ../Doc/library/argparse.rst:676 msgid "help_ - A brief description of what the argument does." msgstr "" -#: ../Doc/library/argparse.rst:676 +#: ../Doc/library/argparse.rst:678 msgid "metavar_ - A name for the argument in usage messages." msgstr "" -#: ../Doc/library/argparse.rst:678 +#: ../Doc/library/argparse.rst:680 msgid "" "dest_ - The name of the attribute to be added to the object returned by :" "meth:`parse_args`." msgstr "" -#: ../Doc/library/argparse.rst:685 +#: ../Doc/library/argparse.rst:687 msgid "name or flags" msgstr "nom ou option" -#: ../Doc/library/argparse.rst:687 +#: ../Doc/library/argparse.rst:689 msgid "" "The :meth:`~ArgumentParser.add_argument` method must know whether an " "optional argument, like ``-f`` or ``--foo``, or a positional argument, like " @@ -605,22 +607,22 @@ msgid "" "created like::" msgstr "" -#: ../Doc/library/argparse.rst:696 +#: ../Doc/library/argparse.rst:698 msgid "while a positional argument could be created like::" msgstr "" -#: ../Doc/library/argparse.rst:700 +#: ../Doc/library/argparse.rst:702 msgid "" "When :meth:`~ArgumentParser.parse_args` is called, optional arguments will " "be identified by the ``-`` prefix, and the remaining arguments will be " "assumed to be positional::" msgstr "" -#: ../Doc/library/argparse.rst:717 +#: ../Doc/library/argparse.rst:719 msgid "action" msgstr "action" -#: ../Doc/library/argparse.rst:719 +#: ../Doc/library/argparse.rst:721 msgid "" ":class:`ArgumentParser` objects associate command-line arguments with " "actions. These actions can do just about anything with the command-line " @@ -630,20 +632,20 @@ msgid "" "be handled. The supplied actions are:" msgstr "" -#: ../Doc/library/argparse.rst:725 +#: ../Doc/library/argparse.rst:727 msgid "" "``'store'`` - This just stores the argument's value. This is the default " "action. For example::" msgstr "" -#: ../Doc/library/argparse.rst:733 +#: ../Doc/library/argparse.rst:735 msgid "" "``'store_const'`` - This stores the value specified by the const_ keyword " "argument. The ``'store_const'`` action is most commonly used with optional " "arguments that specify some sort of flag. For example::" msgstr "" -#: ../Doc/library/argparse.rst:742 +#: ../Doc/library/argparse.rst:744 msgid "" "``'store_true'`` and ``'store_false'`` - These are special cases of " "``'store_const'`` used for storing the values ``True`` and ``False`` " @@ -651,14 +653,14 @@ msgid "" "``True`` respectively. For example::" msgstr "" -#: ../Doc/library/argparse.rst:754 +#: ../Doc/library/argparse.rst:756 msgid "" "``'append'`` - This stores a list, and appends each argument value to the " "list. This is useful to allow an option to be specified multiple times. " "Example usage::" msgstr "" -#: ../Doc/library/argparse.rst:763 +#: ../Doc/library/argparse.rst:765 msgid "" "``'append_const'`` - This stores a list, and appends the value specified by " "the const_ keyword argument to the list. (Note that the const_ keyword " @@ -667,13 +669,13 @@ msgid "" "example::" msgstr "" -#: ../Doc/library/argparse.rst:775 +#: ../Doc/library/argparse.rst:777 msgid "" "``'count'`` - This counts the number of times a keyword argument occurs. For " "example, this is useful for increasing verbosity levels::" msgstr "" -#: ../Doc/library/argparse.rst:783 +#: ../Doc/library/argparse.rst:785 msgid "" "``'help'`` - This prints a complete help message for all the options in the " "current parser and then exits. By default a help action is automatically " @@ -681,14 +683,14 @@ msgid "" "output is created." msgstr "" -#: ../Doc/library/argparse.rst:788 +#: ../Doc/library/argparse.rst:790 msgid "" "``'version'`` - This expects a ``version=`` keyword argument in the :meth:" "`~ArgumentParser.add_argument` call, and prints version information and " "exits when invoked::" msgstr "" -#: ../Doc/library/argparse.rst:798 +#: ../Doc/library/argparse.rst:800 msgid "" "You may also specify an arbitrary action by passing an Action subclass or " "other object that implements the same interface. The recommended way to do " @@ -696,19 +698,19 @@ msgid "" "optionally the ``__init__`` method." msgstr "" -#: ../Doc/library/argparse.rst:803 +#: ../Doc/library/argparse.rst:805 msgid "An example of a custom action::" msgstr "Un exemple d'action personnalisée : ::" -#: ../Doc/library/argparse.rst:823 +#: ../Doc/library/argparse.rst:825 msgid "For more details, see :class:`Action`." msgstr "Pour plus d'information, voir :class:`Action`." -#: ../Doc/library/argparse.rst:826 +#: ../Doc/library/argparse.rst:828 msgid "nargs" msgstr "nargs" -#: ../Doc/library/argparse.rst:828 +#: ../Doc/library/argparse.rst:830 msgid "" "ArgumentParser objects usually associate a single command-line argument with " "a single action to be taken. The ``nargs`` keyword argument associates a " @@ -716,19 +718,19 @@ msgid "" "supported values are:" msgstr "" -#: ../Doc/library/argparse.rst:833 +#: ../Doc/library/argparse.rst:835 msgid "" "``N`` (an integer). ``N`` arguments from the command line will be gathered " "together into a list. For example::" msgstr "" -#: ../Doc/library/argparse.rst:842 +#: ../Doc/library/argparse.rst:844 msgid "" "Note that ``nargs=1`` produces a list of one item. This is different from " "the default, in which the item is produced by itself." msgstr "" -#: ../Doc/library/argparse.rst:845 +#: ../Doc/library/argparse.rst:847 msgid "" "``'?'``. One argument will be consumed from the command line if possible, " "and produced as a single item. If no command-line argument is present, the " @@ -738,13 +740,13 @@ msgid "" "produced. Some examples to illustrate this::" msgstr "" -#: ../Doc/library/argparse.rst:862 +#: ../Doc/library/argparse.rst:864 msgid "" "One of the more common uses of ``nargs='?'`` is to allow optional input and " "output files::" msgstr "" -#: ../Doc/library/argparse.rst:877 +#: ../Doc/library/argparse.rst:879 msgid "" "``'*'``. All command-line arguments present are gathered into a list. Note " "that it generally doesn't make much sense to have more than one positional " @@ -752,21 +754,21 @@ msgid "" "``nargs='*'`` is possible. For example::" msgstr "" -#: ../Doc/library/argparse.rst:889 +#: ../Doc/library/argparse.rst:891 msgid "" "``'+'``. Just like ``'*'``, all command-line args present are gathered into " "a list. Additionally, an error message will be generated if there wasn't at " "least one command-line argument present. For example::" msgstr "" -#: ../Doc/library/argparse.rst:901 +#: ../Doc/library/argparse.rst:905 msgid "" "``argparse.REMAINDER``. All the remaining command-line arguments are " "gathered into a list. This is commonly useful for command line utilities " "that dispatch to other command line utilities::" msgstr "" -#: ../Doc/library/argparse.rst:912 +#: ../Doc/library/argparse.rst:916 msgid "" "If the ``nargs`` keyword argument is not provided, the number of arguments " "consumed is determined by the action_. Generally this means a single " @@ -774,11 +776,11 @@ msgid "" "be produced." msgstr "" -#: ../Doc/library/argparse.rst:918 +#: ../Doc/library/argparse.rst:922 msgid "const" msgstr "const" -#: ../Doc/library/argparse.rst:920 +#: ../Doc/library/argparse.rst:924 msgid "" "The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to " "hold constant values that are not read from the command line but are " @@ -786,7 +788,7 @@ msgid "" "common uses of it are:" msgstr "" -#: ../Doc/library/argparse.rst:924 +#: ../Doc/library/argparse.rst:928 msgid "" "When :meth:`~ArgumentParser.add_argument` is called with " "``action='store_const'`` or ``action='append_const'``. These actions add " @@ -794,7 +796,7 @@ msgid "" "`~ArgumentParser.parse_args`. See the action_ description for examples." msgstr "" -#: ../Doc/library/argparse.rst:929 +#: ../Doc/library/argparse.rst:933 msgid "" "When :meth:`~ArgumentParser.add_argument` is called with option strings " "(like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional " @@ -804,17 +806,17 @@ msgid "" "instead. See the nargs_ description for examples." msgstr "" -#: ../Doc/library/argparse.rst:936 +#: ../Doc/library/argparse.rst:940 msgid "" "With the ``'store_const'`` and ``'append_const'`` actions, the ``const`` " "keyword argument must be given. For other actions, it defaults to ``None``." msgstr "" -#: ../Doc/library/argparse.rst:941 +#: ../Doc/library/argparse.rst:945 msgid "default" msgstr "default" -#: ../Doc/library/argparse.rst:943 +#: ../Doc/library/argparse.rst:947 msgid "" "All optional arguments and some positional arguments may be omitted at the " "command line. The ``default`` keyword argument of :meth:`~ArgumentParser." @@ -824,7 +826,7 @@ msgid "" "command line::" msgstr "" -#: ../Doc/library/argparse.rst:957 +#: ../Doc/library/argparse.rst:961 msgid "" "If the ``default`` value is a string, the parser parses the value as if it " "were a command-line argument. In particular, the parser applies any type_ " @@ -832,23 +834,23 @@ msgid "" "`Namespace` return value. Otherwise, the parser uses the value as is::" msgstr "" -#: ../Doc/library/argparse.rst:968 +#: ../Doc/library/argparse.rst:972 msgid "" "For positional arguments with nargs_ equal to ``?`` or ``*``, the " "``default`` value is used when no command-line argument was present::" msgstr "" -#: ../Doc/library/argparse.rst:979 +#: ../Doc/library/argparse.rst:983 msgid "" "Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if " "the command-line argument was not present.::" msgstr "" -#: ../Doc/library/argparse.rst:991 +#: ../Doc/library/argparse.rst:995 msgid "type" msgstr "type" -#: ../Doc/library/argparse.rst:993 +#: ../Doc/library/argparse.rst:997 msgid "" "By default, :class:`ArgumentParser` objects read command-line arguments in " "as simple strings. However, quite often the command-line string should " @@ -859,13 +861,13 @@ msgid "" "value of the ``type`` argument::" msgstr "" -#: ../Doc/library/argparse.rst:1006 +#: ../Doc/library/argparse.rst:1010 msgid "" "See the section on the default_ keyword argument for information on when the " "``type`` argument is applied to default arguments." msgstr "" -#: ../Doc/library/argparse.rst:1009 +#: ../Doc/library/argparse.rst:1013 msgid "" "To ease the use of various types of files, the argparse module provides the " "factory FileType which takes the ``mode=``, ``bufsize=``, ``encoding=`` and " @@ -873,27 +875,27 @@ msgid "" "``FileType('w')`` can be used to create a writable file::" msgstr "" -#: ../Doc/library/argparse.rst:1019 +#: ../Doc/library/argparse.rst:1023 msgid "" "``type=`` can take any callable that takes a single string argument and " "returns the converted value::" msgstr "" -#: ../Doc/library/argparse.rst:1038 +#: ../Doc/library/argparse.rst:1042 msgid "" "The choices_ keyword argument may be more convenient for type checkers that " "simply check against a range of values::" msgstr "" -#: ../Doc/library/argparse.rst:1049 +#: ../Doc/library/argparse.rst:1053 msgid "See the choices_ section for more details." msgstr "Voir la section choices_ pour plus de détails." -#: ../Doc/library/argparse.rst:1053 +#: ../Doc/library/argparse.rst:1057 msgid "choices" msgstr "choices" -#: ../Doc/library/argparse.rst:1055 +#: ../Doc/library/argparse.rst:1059 msgid "" "Some command-line arguments should be selected from a restricted set of " "values. These can be handled by passing a container object as the *choices* " @@ -902,25 +904,25 @@ msgid "" "be displayed if the argument was not one of the acceptable values::" msgstr "" -#: ../Doc/library/argparse.rst:1070 +#: ../Doc/library/argparse.rst:1074 msgid "" "Note that inclusion in the *choices* container is checked after any type_ " "conversions have been performed, so the type of the objects in the *choices* " "container should match the type_ specified::" msgstr "" -#: ../Doc/library/argparse.rst:1082 +#: ../Doc/library/argparse.rst:1086 msgid "" "Any object that supports the ``in`` operator can be passed as the *choices* " "value, so :class:`dict` objects, :class:`set` objects, custom containers, " "etc. are all supported." msgstr "" -#: ../Doc/library/argparse.rst:1088 +#: ../Doc/library/argparse.rst:1092 msgid "required" msgstr "required" -#: ../Doc/library/argparse.rst:1090 +#: ../Doc/library/argparse.rst:1094 msgid "" "In general, the :mod:`argparse` module assumes that flags like ``-f`` and " "``--bar`` indicate *optional* arguments, which can always be omitted at the " @@ -928,24 +930,24 @@ msgid "" "the ``required=`` keyword argument to :meth:`~ArgumentParser.add_argument`::" msgstr "" -#: ../Doc/library/argparse.rst:1103 +#: ../Doc/library/argparse.rst:1107 msgid "" "As the example shows, if an option is marked as ``required``, :meth:" "`~ArgumentParser.parse_args` will report an error if that option is not " "present at the command line." msgstr "" -#: ../Doc/library/argparse.rst:1109 +#: ../Doc/library/argparse.rst:1113 msgid "" "Required options are generally considered bad form because users expect " "*options* to be *optional*, and thus they should be avoided when possible." msgstr "" -#: ../Doc/library/argparse.rst:1114 +#: ../Doc/library/argparse.rst:1118 msgid "help" msgstr "help" -#: ../Doc/library/argparse.rst:1116 +#: ../Doc/library/argparse.rst:1120 msgid "" "The ``help`` value is a string containing a brief description of the " "argument. When a user requests help (usually by using ``-h`` or ``--help`` " @@ -953,7 +955,7 @@ msgid "" "each argument::" msgstr "" -#: ../Doc/library/argparse.rst:1136 +#: ../Doc/library/argparse.rst:1140 msgid "" "The ``help`` strings can include various format specifiers to avoid " "repetition of things like the program name or the argument default_. The " @@ -962,23 +964,23 @@ msgid "" "%(type)s``, etc.::" msgstr "" -#: ../Doc/library/argparse.rst:1153 +#: ../Doc/library/argparse.rst:1157 msgid "" "As the help string supports %-formatting, if you want a literal ``%`` to " "appear in the help string, you must escape it as ``%%``." msgstr "" -#: ../Doc/library/argparse.rst:1156 +#: ../Doc/library/argparse.rst:1160 msgid "" ":mod:`argparse` supports silencing the help entry for certain options, by " "setting the ``help`` value to ``argparse.SUPPRESS``::" msgstr "" -#: ../Doc/library/argparse.rst:1169 +#: ../Doc/library/argparse.rst:1173 msgid "metavar" msgstr "metavar" -#: ../Doc/library/argparse.rst:1171 +#: ../Doc/library/argparse.rst:1175 msgid "" "When :class:`ArgumentParser` generates help messages, it needs some way to " "refer to each expected argument. By default, ArgumentParser objects use the " @@ -990,29 +992,29 @@ msgid "" "argument will be referred to as ``FOO``. An example::" msgstr "" -#: ../Doc/library/argparse.rst:1195 +#: ../Doc/library/argparse.rst:1199 msgid "An alternative name can be specified with ``metavar``::" msgstr "" -#: ../Doc/library/argparse.rst:1212 +#: ../Doc/library/argparse.rst:1216 msgid "" "Note that ``metavar`` only changes the *displayed* name - the name of the " "attribute on the :meth:`~ArgumentParser.parse_args` object is still " "determined by the dest_ value." msgstr "" -#: ../Doc/library/argparse.rst:1216 +#: ../Doc/library/argparse.rst:1220 msgid "" "Different values of ``nargs`` may cause the metavar to be used multiple " "times. Providing a tuple to ``metavar`` specifies a different display for " "each of the arguments::" msgstr "" -#: ../Doc/library/argparse.rst:1233 +#: ../Doc/library/argparse.rst:1237 msgid "dest" msgstr "dest" -#: ../Doc/library/argparse.rst:1235 +#: ../Doc/library/argparse.rst:1239 msgid "" "Most :class:`ArgumentParser` actions add some value as an attribute of the " "object returned by :meth:`~ArgumentParser.parse_args`. The name of this " @@ -1022,7 +1024,7 @@ msgid "" "add_argument`::" msgstr "" -#: ../Doc/library/argparse.rst:1247 +#: ../Doc/library/argparse.rst:1251 msgid "" "For optional argument actions, the value of ``dest`` is normally inferred " "from the option strings. :class:`ArgumentParser` generates the value of " @@ -1034,22 +1036,22 @@ msgid "" "below illustrate this behavior::" msgstr "" -#: ../Doc/library/argparse.rst:1264 +#: ../Doc/library/argparse.rst:1268 msgid "``dest`` allows a custom attribute name to be provided::" msgstr "" -#: ../Doc/library/argparse.rst:1272 +#: ../Doc/library/argparse.rst:1276 msgid "Action classes" msgstr "Classes Action" -#: ../Doc/library/argparse.rst:1274 +#: ../Doc/library/argparse.rst:1278 msgid "" "Action classes implement the Action API, a callable which returns a callable " "which processes arguments from the command-line. Any object which follows " "this API may be passed as the ``action`` parameter to :meth:`add_argument`." msgstr "" -#: ../Doc/library/argparse.rst:1283 +#: ../Doc/library/argparse.rst:1287 msgid "" "Action objects are used by an ArgumentParser to represent the information " "needed to parse a single argument from one or more strings from the command " @@ -1058,7 +1060,7 @@ msgid "" "the ``action`` itself." msgstr "" -#: ../Doc/library/argparse.rst:1289 +#: ../Doc/library/argparse.rst:1293 msgid "" "Instances of Action (or return value of any callable to the ``action`` " "parameter) should have attributes \"dest\", \"option_strings\", \"default\", " @@ -1066,101 +1068,107 @@ msgid "" "these attributes are defined is to call ``Action.__init__``." msgstr "" -#: ../Doc/library/argparse.rst:1294 +#: ../Doc/library/argparse.rst:1298 msgid "" "Action instances should be callable, so subclasses must override the " "``__call__`` method, which should accept four parameters:" msgstr "" -#: ../Doc/library/argparse.rst:1297 +#: ../Doc/library/argparse.rst:1301 msgid "``parser`` - The ArgumentParser object which contains this action." msgstr "" -#: ../Doc/library/argparse.rst:1299 +#: ../Doc/library/argparse.rst:1303 msgid "" "``namespace`` - The :class:`Namespace` object that will be returned by :meth:" "`~ArgumentParser.parse_args`. Most actions add an attribute to this object " "using :func:`setattr`." msgstr "" -#: ../Doc/library/argparse.rst:1303 +#: ../Doc/library/argparse.rst:1307 msgid "" "``values`` - The associated command-line arguments, with any type " "conversions applied. Type conversions are specified with the type_ keyword " "argument to :meth:`~ArgumentParser.add_argument`." msgstr "" -#: ../Doc/library/argparse.rst:1307 +#: ../Doc/library/argparse.rst:1311 msgid "" "``option_string`` - The option string that was used to invoke this action. " "The ``option_string`` argument is optional, and will be absent if the action " "is associated with a positional argument." msgstr "" -#: ../Doc/library/argparse.rst:1311 +#: ../Doc/library/argparse.rst:1315 msgid "" "The ``__call__`` method may perform arbitrary actions, but will typically " "set attributes on the ``namespace`` based on ``dest`` and ``values``." msgstr "" -#: ../Doc/library/argparse.rst:1316 +#: ../Doc/library/argparse.rst:1320 msgid "The parse_args() method" msgstr "La méthode parse_args()" -#: ../Doc/library/argparse.rst:1320 +#: ../Doc/library/argparse.rst:1324 msgid "" "Convert argument strings to objects and assign them as attributes of the " "namespace. Return the populated namespace." msgstr "" -#: ../Doc/library/argparse.rst:1323 +#: ../Doc/library/argparse.rst:1327 msgid "" "Previous calls to :meth:`add_argument` determine exactly what objects are " "created and how they are assigned. See the documentation for :meth:" "`add_argument` for details." msgstr "" -#: ../Doc/library/argparse.rst:1327 +#: ../Doc/library/argparse.rst:1331 msgid "" -"By default, the argument strings are taken from :data:`sys.argv`, and a new " -"empty :class:`Namespace` object is created for the attributes." -msgstr "" - -#: ../Doc/library/argparse.rst:1332 -msgid "Option value syntax" +"args_ - List of strings to parse. The default is taken from :data:`sys." +"argv`." msgstr "" #: ../Doc/library/argparse.rst:1334 msgid "" +"namespace_ - An object to take the attributes. The default is a new empty :" +"class:`Namespace` object." +msgstr "" + +#: ../Doc/library/argparse.rst:1339 +msgid "Option value syntax" +msgstr "" + +#: ../Doc/library/argparse.rst:1341 +msgid "" "The :meth:`~ArgumentParser.parse_args` method supports several ways of " "specifying the value of an option (if it takes one). In the simplest case, " "the option and its value are passed as two separate arguments::" msgstr "" -#: ../Doc/library/argparse.rst:1346 +#: ../Doc/library/argparse.rst:1353 msgid "" "For long options (options with names longer than a single character), the " "option and value can also be passed as a single command-line argument, using " "``=`` to separate them::" msgstr "" -#: ../Doc/library/argparse.rst:1353 +#: ../Doc/library/argparse.rst:1360 msgid "" "For short options (options only one character long), the option and its " "value can be concatenated::" msgstr "" -#: ../Doc/library/argparse.rst:1359 +#: ../Doc/library/argparse.rst:1366 msgid "" "Several short options can be joined together, using only a single ``-`` " "prefix, as long as only the last option (or none of them) requires a value::" msgstr "" -#: ../Doc/library/argparse.rst:1371 +#: ../Doc/library/argparse.rst:1378 msgid "Invalid arguments" msgstr "Arguments invalides" -#: ../Doc/library/argparse.rst:1373 +#: ../Doc/library/argparse.rst:1380 msgid "" "While parsing the command line, :meth:`~ArgumentParser.parse_args` checks " "for a variety of errors, including ambiguous options, invalid types, invalid " @@ -1168,11 +1176,11 @@ msgid "" "an error, it exits and prints the error along with a usage message::" msgstr "" -#: ../Doc/library/argparse.rst:1399 +#: ../Doc/library/argparse.rst:1406 msgid "Arguments containing ``-``" msgstr "Arguments contenant ``-``" -#: ../Doc/library/argparse.rst:1401 +#: ../Doc/library/argparse.rst:1408 msgid "" "The :meth:`~ArgumentParser.parse_args` method attempts to give errors " "whenever the user has clearly made a mistake, but some situations are " @@ -1184,7 +1192,7 @@ msgid "" "negative numbers::" msgstr "" -#: ../Doc/library/argparse.rst:1439 +#: ../Doc/library/argparse.rst:1446 msgid "" "If you have positional arguments that must begin with ``-`` and don't look " "like negative numbers, you can insert the pseudo-argument ``'--'`` which " @@ -1192,28 +1200,28 @@ msgid "" "positional argument::" msgstr "" -#: ../Doc/library/argparse.rst:1450 +#: ../Doc/library/argparse.rst:1457 msgid "Argument abbreviations (prefix matching)" msgstr "Arguments abrégés (Part comparaison de leur préfixes)" -#: ../Doc/library/argparse.rst:1452 +#: ../Doc/library/argparse.rst:1459 msgid "" "The :meth:`~ArgumentParser.parse_args` method :ref:`by default " "` allows long options to be abbreviated to a prefix, if the " "abbreviation is unambiguous (the prefix matches a unique option)::" msgstr "" -#: ../Doc/library/argparse.rst:1467 +#: ../Doc/library/argparse.rst:1474 msgid "" "An error is produced for arguments that could produce more than one options. " "This feature can be disabled by setting :ref:`allow_abbrev` to ``False``." msgstr "" -#: ../Doc/library/argparse.rst:1472 +#: ../Doc/library/argparse.rst:1480 msgid "Beyond ``sys.argv``" msgstr "Au delà de ``sys.argv``" -#: ../Doc/library/argparse.rst:1474 +#: ../Doc/library/argparse.rst:1482 msgid "" "Sometimes it may be useful to have an ArgumentParser parse arguments other " "than those of :data:`sys.argv`. This can be accomplished by passing a list " @@ -1221,39 +1229,39 @@ msgid "" "testing at the interactive prompt::" msgstr "" -#: ../Doc/library/argparse.rst:1493 +#: ../Doc/library/argparse.rst:1502 msgid "The Namespace object" msgstr "L'objet Namespace" -#: ../Doc/library/argparse.rst:1497 +#: ../Doc/library/argparse.rst:1506 msgid "" "Simple class used by default by :meth:`~ArgumentParser.parse_args` to create " "an object holding attributes and return it." msgstr "" -#: ../Doc/library/argparse.rst:1500 +#: ../Doc/library/argparse.rst:1509 msgid "" "This class is deliberately simple, just an :class:`object` subclass with a " "readable string representation. If you prefer to have dict-like view of the " "attributes, you can use the standard Python idiom, :func:`vars`::" msgstr "" -#: ../Doc/library/argparse.rst:1510 +#: ../Doc/library/argparse.rst:1519 msgid "" "It may also be useful to have an :class:`ArgumentParser` assign attributes " "to an already existing object, rather than a new :class:`Namespace` object. " "This can be achieved by specifying the ``namespace=`` keyword argument::" msgstr "" -#: ../Doc/library/argparse.rst:1526 +#: ../Doc/library/argparse.rst:1535 msgid "Other utilities" msgstr "Autres outils" -#: ../Doc/library/argparse.rst:1529 +#: ../Doc/library/argparse.rst:1538 msgid "Sub-commands" msgstr "Sous commandes" -#: ../Doc/library/argparse.rst:1536 +#: ../Doc/library/argparse.rst:1545 msgid "" "Many programs split up their functionality into a number of sub-commands, " "for example, the ``svn`` program can invoke sub-commands like ``svn " @@ -1269,63 +1277,63 @@ msgid "" "can be modified as usual." msgstr "" -#: ../Doc/library/argparse.rst:1548 +#: ../Doc/library/argparse.rst:1557 msgid "Description of parameters:" msgstr "Description des paramètres" -#: ../Doc/library/argparse.rst:1550 +#: ../Doc/library/argparse.rst:1559 msgid "" "title - title for the sub-parser group in help output; by default " "\"subcommands\" if description is provided, otherwise uses title for " "positional arguments" msgstr "" -#: ../Doc/library/argparse.rst:1554 +#: ../Doc/library/argparse.rst:1563 msgid "" "description - description for the sub-parser group in help output, by " "default ``None``" msgstr "" -#: ../Doc/library/argparse.rst:1557 +#: ../Doc/library/argparse.rst:1566 msgid "" "prog - usage information that will be displayed with sub-command help, by " "default the name of the program and any positional arguments before the " "subparser argument" msgstr "" -#: ../Doc/library/argparse.rst:1561 +#: ../Doc/library/argparse.rst:1570 msgid "" "parser_class - class which will be used to create sub-parser instances, by " "default the class of the current parser (e.g. ArgumentParser)" msgstr "" -#: ../Doc/library/argparse.rst:1564 +#: ../Doc/library/argparse.rst:1573 msgid "" "action_ - the basic type of action to be taken when this argument is " "encountered at the command line" msgstr "" -#: ../Doc/library/argparse.rst:1567 +#: ../Doc/library/argparse.rst:1576 msgid "" "dest_ - name of the attribute under which sub-command name will be stored; " "by default ``None`` and no value is stored" msgstr "" -#: ../Doc/library/argparse.rst:1570 +#: ../Doc/library/argparse.rst:1579 msgid "help_ - help for sub-parser group in help output, by default ``None``" msgstr "" -#: ../Doc/library/argparse.rst:1572 +#: ../Doc/library/argparse.rst:1581 msgid "" "metavar_ - string presenting available sub-commands in help; by default it " "is ``None`` and presents sub-commands in form {cmd1, cmd2, ..}" msgstr "" -#: ../Doc/library/argparse.rst:1575 +#: ../Doc/library/argparse.rst:1584 msgid "Some example usage::" msgstr "Quelques exemples d'utilisation : ::" -#: ../Doc/library/argparse.rst:1596 +#: ../Doc/library/argparse.rst:1605 msgid "" "Note that the object returned by :meth:`parse_args` will only contain " "attributes for the main parser and the subparser that was selected by the " @@ -1335,7 +1343,7 @@ msgid "" "``baz`` attributes are present." msgstr "" -#: ../Doc/library/argparse.rst:1603 +#: ../Doc/library/argparse.rst:1612 msgid "" "Similarly, when a help message is requested from a subparser, only the help " "for that particular parser will be printed. The help message will not " @@ -1344,21 +1352,21 @@ msgid "" "to :meth:`add_parser` as above.)" msgstr "" -#: ../Doc/library/argparse.rst:1639 +#: ../Doc/library/argparse.rst:1648 msgid "" "The :meth:`add_subparsers` method also supports ``title`` and " "``description`` keyword arguments. When either is present, the subparser's " "commands will appear in their own group in the help output. For example::" msgstr "" -#: ../Doc/library/argparse.rst:1660 +#: ../Doc/library/argparse.rst:1669 msgid "" "Furthermore, ``add_parser`` supports an additional ``aliases`` argument, " "which allows multiple strings to refer to the same subparser. This example, " "like ``svn``, aliases ``co`` as a shorthand for ``checkout``::" msgstr "" -#: ../Doc/library/argparse.rst:1671 +#: ../Doc/library/argparse.rst:1680 msgid "" "One particularly effective way of handling sub-commands is to combine the " "use of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` " @@ -1366,7 +1374,7 @@ msgid "" "example::" msgstr "" -#: ../Doc/library/argparse.rst:1708 +#: ../Doc/library/argparse.rst:1717 msgid "" "This way, you can let :meth:`parse_args` do the job of calling the " "appropriate function after argument parsing is complete. Associating " @@ -1376,11 +1384,11 @@ msgid "" "argument to the :meth:`add_subparsers` call will work::" msgstr "" -#: ../Doc/library/argparse.rst:1726 +#: ../Doc/library/argparse.rst:1735 msgid "FileType objects" msgstr "Objets ``FileType``" -#: ../Doc/library/argparse.rst:1730 +#: ../Doc/library/argparse.rst:1739 msgid "" "The :class:`FileType` factory creates objects that can be passed to the type " "argument of :meth:`ArgumentParser.add_argument`. Arguments that have :class:" @@ -1389,22 +1397,22 @@ msgid "" "the :func:`open` function for more details)::" msgstr "" -#: ../Doc/library/argparse.rst:1742 +#: ../Doc/library/argparse.rst:1751 msgid "" "FileType objects understand the pseudo-argument ``'-'`` and automatically " "convert this into ``sys.stdin`` for readable :class:`FileType` objects and " "``sys.stdout`` for writable :class:`FileType` objects::" msgstr "" -#: ../Doc/library/argparse.rst:1751 +#: ../Doc/library/argparse.rst:1760 msgid "The *encodings* and *errors* keyword arguments." msgstr "Les arguments nommés ``encodings`` et ``errors``." -#: ../Doc/library/argparse.rst:1756 +#: ../Doc/library/argparse.rst:1765 msgid "Argument groups" msgstr "Groupes d'arguments" -#: ../Doc/library/argparse.rst:1760 +#: ../Doc/library/argparse.rst:1769 msgid "" "By default, :class:`ArgumentParser` groups command-line arguments into " "\"positional arguments\" and \"optional arguments\" when displaying help " @@ -1413,7 +1421,7 @@ msgid "" "`add_argument_group` method::" msgstr "" -#: ../Doc/library/argparse.rst:1777 +#: ../Doc/library/argparse.rst:1786 msgid "" "The :meth:`add_argument_group` method returns an argument group object which " "has an :meth:`~ArgumentParser.add_argument` method just like a regular :" @@ -1424,42 +1432,42 @@ msgid "" "this display::" msgstr "" -#: ../Doc/library/argparse.rst:1803 +#: ../Doc/library/argparse.rst:1812 msgid "" "Note that any arguments not in your user-defined groups will end up back in " "the usual \"positional arguments\" and \"optional arguments\" sections." msgstr "" -#: ../Doc/library/argparse.rst:1808 +#: ../Doc/library/argparse.rst:1817 msgid "Mutual exclusion" msgstr "Exclusion mutuelle" -#: ../Doc/library/argparse.rst:1812 +#: ../Doc/library/argparse.rst:1821 msgid "" "Create a mutually exclusive group. :mod:`argparse` will make sure that only " "one of the arguments in the mutually exclusive group was present on the " "command line::" msgstr "" -#: ../Doc/library/argparse.rst:1828 +#: ../Doc/library/argparse.rst:1837 msgid "" "The :meth:`add_mutually_exclusive_group` method also accepts a *required* " "argument, to indicate that at least one of the mutually exclusive arguments " "is required::" msgstr "" -#: ../Doc/library/argparse.rst:1840 +#: ../Doc/library/argparse.rst:1849 msgid "" "Note that currently mutually exclusive argument groups do not support the " "*title* and *description* arguments of :meth:`~ArgumentParser." "add_argument_group`." msgstr "" -#: ../Doc/library/argparse.rst:1846 +#: ../Doc/library/argparse.rst:1855 msgid "Parser defaults" msgstr "Valeurs par défaut du parseur" -#: ../Doc/library/argparse.rst:1850 +#: ../Doc/library/argparse.rst:1859 msgid "" "Most of the time, the attributes of the object returned by :meth:" "`parse_args` will be fully determined by inspecting the command-line " @@ -1468,72 +1476,72 @@ msgid "" "command line to be added::" msgstr "" -#: ../Doc/library/argparse.rst:1862 +#: ../Doc/library/argparse.rst:1871 msgid "" "Note that parser-level defaults always override argument-level defaults::" msgstr "" -#: ../Doc/library/argparse.rst:1870 +#: ../Doc/library/argparse.rst:1879 msgid "" "Parser-level defaults can be particularly useful when working with multiple " "parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an " "example of this type." msgstr "" -#: ../Doc/library/argparse.rst:1876 +#: ../Doc/library/argparse.rst:1885 msgid "" "Get the default value for a namespace attribute, as set by either :meth:" "`~ArgumentParser.add_argument` or by :meth:`~ArgumentParser.set_defaults`::" msgstr "" -#: ../Doc/library/argparse.rst:1887 +#: ../Doc/library/argparse.rst:1896 msgid "Printing help" msgstr "Afficher l'aide" -#: ../Doc/library/argparse.rst:1889 +#: ../Doc/library/argparse.rst:1898 msgid "" "In most typical applications, :meth:`~ArgumentParser.parse_args` will take " "care of formatting and printing any usage or error messages. However, " "several formatting methods are available:" msgstr "" -#: ../Doc/library/argparse.rst:1895 +#: ../Doc/library/argparse.rst:1904 msgid "" "Print a brief description of how the :class:`ArgumentParser` should be " "invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is " "assumed." msgstr "" -#: ../Doc/library/argparse.rst:1901 +#: ../Doc/library/argparse.rst:1910 msgid "" "Print a help message, including the program usage and information about the " "arguments registered with the :class:`ArgumentParser`. If *file* is " "``None``, :data:`sys.stdout` is assumed." msgstr "" -#: ../Doc/library/argparse.rst:1905 +#: ../Doc/library/argparse.rst:1914 msgid "" "There are also variants of these methods that simply return a string instead " "of printing it:" msgstr "" -#: ../Doc/library/argparse.rst:1910 +#: ../Doc/library/argparse.rst:1919 msgid "" "Return a string containing a brief description of how the :class:" "`ArgumentParser` should be invoked on the command line." msgstr "" -#: ../Doc/library/argparse.rst:1915 +#: ../Doc/library/argparse.rst:1924 msgid "" "Return a string containing a help message, including the program usage and " "information about the arguments registered with the :class:`ArgumentParser`." msgstr "" -#: ../Doc/library/argparse.rst:1920 +#: ../Doc/library/argparse.rst:1929 msgid "Partial parsing" msgstr "*Parsing* partiel" -#: ../Doc/library/argparse.rst:1924 +#: ../Doc/library/argparse.rst:1933 msgid "" "Sometimes a script may only parse a few of the command-line arguments, " "passing the remaining arguments on to another script or program. In these " @@ -1544,7 +1552,7 @@ msgid "" "remaining argument strings." msgstr "" -#: ../Doc/library/argparse.rst:1940 +#: ../Doc/library/argparse.rst:1949 msgid "" ":ref:`Prefix matching ` rules apply to :meth:" "`parse_known_args`. The parser may consume an option even if it's just a " @@ -1552,11 +1560,11 @@ msgid "" "arguments list." msgstr "" -#: ../Doc/library/argparse.rst:1947 +#: ../Doc/library/argparse.rst:1956 msgid "Customizing file parsing" msgstr "Personnaliser le *parsing* de fichiers" -#: ../Doc/library/argparse.rst:1951 +#: ../Doc/library/argparse.rst:1960 msgid "" "Arguments that are read from a file (see the *fromfile_prefix_chars* keyword " "argument to the :class:`ArgumentParser` constructor) are read one argument " @@ -1564,40 +1572,40 @@ msgid "" "reading." msgstr "" -#: ../Doc/library/argparse.rst:1956 +#: ../Doc/library/argparse.rst:1965 msgid "" "This method takes a single argument *arg_line* which is a string read from " "the argument file. It returns a list of arguments parsed from this string. " "The method is called once per line read from the argument file, in order." msgstr "" -#: ../Doc/library/argparse.rst:1960 +#: ../Doc/library/argparse.rst:1969 msgid "" "A useful override of this method is one that treats each space-separated " "word as an argument. The following example demonstrates how to do this::" msgstr "" -#: ../Doc/library/argparse.rst:1969 +#: ../Doc/library/argparse.rst:1978 msgid "Exiting methods" msgstr "" -#: ../Doc/library/argparse.rst:1973 +#: ../Doc/library/argparse.rst:1982 msgid "" "This method terminates the program, exiting with the specified *status* and, " "if given, it prints a *message* before that." msgstr "" -#: ../Doc/library/argparse.rst:1978 +#: ../Doc/library/argparse.rst:1987 msgid "" "This method prints a usage message including the *message* to the standard " "error and terminates the program with a status code of 2." msgstr "" -#: ../Doc/library/argparse.rst:1984 +#: ../Doc/library/argparse.rst:1993 msgid "Upgrading optparse code" msgstr "Mettre à jour du code ``optparse``" -#: ../Doc/library/argparse.rst:1986 +#: ../Doc/library/argparse.rst:1995 msgid "" "Originally, the :mod:`argparse` module had attempted to maintain " "compatibility with :mod:`optparse`. However, :mod:`optparse` was difficult " @@ -1608,80 +1616,88 @@ msgid "" "compatibility." msgstr "" -#: ../Doc/library/argparse.rst:1993 +#: ../Doc/library/argparse.rst:2002 msgid "" "The :mod:`argparse` module improves on the standard library :mod:`optparse` " "module in a number of ways including:" msgstr "" -#: ../Doc/library/argparse.rst:1996 +#: ../Doc/library/argparse.rst:2005 msgid "Handling positional arguments." msgstr "Gérer les arguments positionnels" -#: ../Doc/library/argparse.rst:1997 +#: ../Doc/library/argparse.rst:2006 msgid "Supporting sub-commands." msgstr "Gérer les sous commandes." -#: ../Doc/library/argparse.rst:1998 +#: ../Doc/library/argparse.rst:2007 msgid "Allowing alternative option prefixes like ``+`` and ``/``." msgstr "" -#: ../Doc/library/argparse.rst:1999 +#: ../Doc/library/argparse.rst:2008 msgid "Handling zero-or-more and one-or-more style arguments." msgstr "" -#: ../Doc/library/argparse.rst:2000 +#: ../Doc/library/argparse.rst:2009 msgid "Producing more informative usage messages." msgstr "Fournir des message d'aide plus complets." -#: ../Doc/library/argparse.rst:2001 +#: ../Doc/library/argparse.rst:2010 msgid "Providing a much simpler interface for custom ``type`` and ``action``." msgstr "" -#: ../Doc/library/argparse.rst:2003 +#: ../Doc/library/argparse.rst:2012 msgid "A partial upgrade path from :mod:`optparse` to :mod:`argparse`:" msgstr "" -#: ../Doc/library/argparse.rst:2005 +#: ../Doc/library/argparse.rst:2014 msgid "" "Replace all :meth:`optparse.OptionParser.add_option` calls with :meth:" "`ArgumentParser.add_argument` calls." msgstr "" -#: ../Doc/library/argparse.rst:2008 +#: ../Doc/library/argparse.rst:2017 msgid "" "Replace ``(options, args) = parser.parse_args()`` with ``args = parser." "parse_args()`` and add additional :meth:`ArgumentParser.add_argument` calls " "for the positional arguments. Keep in mind that what was previously called " -"``options``, now in :mod:`argparse` context is called ``args``." +"``options``, now in the :mod:`argparse` context is called ``args``." msgstr "" -#: ../Doc/library/argparse.rst:2013 +#: ../Doc/library/argparse.rst:2022 +msgid "" +"Replace :meth:`optparse.OptionParser.disable_interspersed_args` by setting " +"``nargs`` of a positional argument to `argparse.REMAINDER`_, or use :meth:" +"`~ArgumentParser.parse_known_args` to collect unparsed argument strings in a " +"separate list." +msgstr "" + +#: ../Doc/library/argparse.rst:2027 msgid "" "Replace callback actions and the ``callback_*`` keyword arguments with " "``type`` or ``action`` arguments." msgstr "" -#: ../Doc/library/argparse.rst:2016 +#: ../Doc/library/argparse.rst:2030 msgid "" "Replace string names for ``type`` keyword arguments with the corresponding " "type objects (e.g. int, float, complex, etc)." msgstr "" -#: ../Doc/library/argparse.rst:2019 +#: ../Doc/library/argparse.rst:2033 msgid "" "Replace :class:`optparse.Values` with :class:`Namespace` and :exc:`optparse." "OptionError` and :exc:`optparse.OptionValueError` with :exc:`ArgumentError`." msgstr "" -#: ../Doc/library/argparse.rst:2023 +#: ../Doc/library/argparse.rst:2037 msgid "" "Replace strings with implicit arguments such as ``%default`` or ``%prog`` " "with the standard Python syntax to use dictionaries to format strings, that " "is, ``%(default)s`` and ``%(prog)s``." msgstr "" -#: ../Doc/library/argparse.rst:2027 +#: ../Doc/library/argparse.rst:2041 msgid "" "Replace the OptionParser constructor ``version`` argument with a call to " "``parser.add_argument('--version', action='version', version='\n" "Language-Team: LANGUAGE \n" @@ -1185,42 +1185,7 @@ msgstr "" 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 default " -"extensions are currently:" -msgstr "" - -#: ../Doc/library/idle.rst:678 -msgid "FormatParagraph" -msgstr "" - -#: ../Doc/library/idle.rst:680 -msgid "AutoExpand" -msgstr "" - -#: ../Doc/library/idle.rst:682 -msgid "ZoomHeight" -msgstr "" - -#: ../Doc/library/idle.rst:684 -msgid "ScriptBinding" -msgstr "" - -#: ../Doc/library/idle.rst:686 -msgid "CallTips" -msgstr "" - -#: ../Doc/library/idle.rst:688 -msgid "ParenMatch" -msgstr "" - -#: ../Doc/library/idle.rst:690 -msgid "AutoComplete" -msgstr "" - -#: ../Doc/library/idle.rst:692 -msgid "CodeContext" -msgstr "" - -#: ../Doc/library/idle.rst:694 -msgid "RstripExtension" +"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." msgstr "" diff --git a/library/importlib.po b/library/importlib.po index b656bfbf..acb608be 100644 --- a/library/importlib.po +++ b/library/importlib.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-12 13:37+0200\n" "PO-Revision-Date: 2017-08-10 01:00+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -57,8 +57,7 @@ msgstr "" #: ../Doc/library/importlib.rst:38 msgid "" -"`Packages specification `__" +"`Packages specification `__" msgstr "" #: ../Doc/library/importlib.rst:36 diff --git a/library/re.po b/library/re.po index 5b4086e2..1fc3904e 100644 --- a/library/re.po +++ b/library/re.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-29 14:32+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: 2017-08-29 14:37+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -1252,15 +1252,13 @@ msgstr "Affiche des informations de debug à propos de l'expression compilée." #: ../Doc/library/re.rst:545 msgid "" -"Perform case-insensitive matching; expressions like ``[A-Z]`` will match " -"lowercase letters, too. This is not affected by the current locale and " -"works for Unicode characters as expected." +"Perform case-insensitive matching; expressions like ``[A-Z]`` will also " +"match lowercase letters. The current locale does not change the effect of " +"this flag. Full Unicode matching (such as ``Ü`` matching ``ü``) also works " +"unless the :const:`re.ASCII` flag is also used to disable non-ASCII matches." msgstr "" -"Réalise une analyse insensible à la classe ; les expressions comme ``[A-Z]`` " -"valideront aussi les lettres minuscules. Cela n'est pas affecté par la " -"locale courante et fonctionne comme convenu avec les caractères Unicode." -#: ../Doc/library/re.rst:553 +#: ../Doc/library/re.rst:555 msgid "" "Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\s`` and ``\\S`` dependent on " "the current locale. The use of this flag is discouraged as the locale " @@ -1276,7 +1274,7 @@ msgstr "" "en Python 3 pour les motifs Unicode (str). Cette option ne peut être " "utilisée qu'avec les motifs 8-bit." -#: ../Doc/library/re.rst:559 +#: ../Doc/library/re.rst:561 msgid "" ":const:`re.LOCALE` can be used only with bytes patterns and is not " "compatible with :const:`re.ASCII`." @@ -1284,7 +1282,7 @@ msgstr "" ":const:`re.LOCALE`` ne peut être utilisée qu'avec les motifs 8-bit et n'est " "pas compatible avec :const:`re.ASCII`." -#: ../Doc/library/re.rst:567 +#: ../Doc/library/re.rst:569 msgid "" "When specified, the pattern character ``'^'`` matches at the beginning of " "the string and at the beginning of each line (immediately following each " @@ -1301,7 +1299,7 @@ msgstr "" "au début de la chaîne, et ``'$'`` uniquement à la fin de la chaîne, ou " "immédiatement avant le saut de ligne (s'il y a) à la fin de la chaîne." -#: ../Doc/library/re.rst:578 +#: ../Doc/library/re.rst:580 msgid "" "Make the ``'.'`` special character match any character at all, including a " "newline; without this flag, ``'.'`` will match anything *except* a newline." @@ -1310,7 +1308,7 @@ msgstr "" "de ligne ; sans cette option, ``'.'`` correspondrait à tout caractère à " "l'exception du saut de ligne." -#: ../Doc/library/re.rst:585 +#: ../Doc/library/re.rst:587 msgid "" "This flag allows you to write regular expressions that look nicer and are " "more readable by allowing you to visually separate logical sections of the " @@ -1329,7 +1327,7 @@ msgstr "" "caractères ou précédé d'un *backslash* non échappé, tous les caractères " "depuis le ``#`` le plus à gauche jusqu'à la fin de la ligne sont ignorés." -#: ../Doc/library/re.rst:593 +#: ../Doc/library/re.rst:595 msgid "" "This means that the two following regular expression objects that match a " "decimal number are functionally equal::" @@ -1337,7 +1335,7 @@ msgstr "" "Cela signifie que les deux expressions rationnelles suivantes qui valident " "un nombre décimal sont fonctionnellement égales : ::" -#: ../Doc/library/re.rst:606 +#: ../Doc/library/re.rst:608 msgid "" "Scan through *string* looking for the first location where the regular " "expression *pattern* produces a match, and return a corresponding :ref:" @@ -1351,7 +1349,7 @@ msgstr "" "dans la chaîne ne valide le motif ; notez que cela est différent de trouver " "une correspondance avec une chaîne vide à un certain endroit de la chaîne." -#: ../Doc/library/re.rst:615 +#: ../Doc/library/re.rst:617 msgid "" "If zero or more characters at the beginning of *string* match the regular " "expression *pattern*, return a corresponding :ref:`match object `. Return ``None`` if the " @@ -1392,7 +1390,7 @@ msgstr "" "Renvoie ``None`` si la chaîne ne correspond pas au motif ; notez que cela " "est différent d'une correspondance avec une chaîne vide." -#: ../Doc/library/re.rst:639 +#: ../Doc/library/re.rst:641 msgid "" "Split *string* by the occurrences of *pattern*. If capturing parentheses " "are used in *pattern*, then the text of all groups in the pattern are also " @@ -1407,7 +1405,7 @@ msgstr "" "séparations, et le reste de la chaîne sera renvoyé comme le dernier élément " "de la liste. : ::" -#: ../Doc/library/re.rst:654 +#: ../Doc/library/re.rst:656 msgid "" "If there are capturing groups in the separator and it matches at the start " "of the string, the result will start with an empty string. The same holds " @@ -1417,7 +1415,7 @@ msgstr "" "correspondance au début de la chaîne, le résultat commencera par une chaîne " "vide. La même chose se produit pour la fin de la chaîne :" -#: ../Doc/library/re.rst:661 +#: ../Doc/library/re.rst:663 msgid "" "That way, separator components are always found at the same relative indices " "within the result list." @@ -1425,7 +1423,7 @@ msgstr "" "De cette manière, les séparateurs sont toujours trouvés aux mêmes indices " "relatifs dans la liste résultante." -#: ../Doc/library/re.rst:666 +#: ../Doc/library/re.rst:668 msgid "" ":func:`split` doesn't currently split a string on an empty pattern match. " "For example:" @@ -1433,7 +1431,7 @@ msgstr "" ":func:`split` ne sépare actuellement pas une chaîne sur une correspondance " "vide. Par exemple :" -#: ../Doc/library/re.rst:672 +#: ../Doc/library/re.rst:674 msgid "" "Even though ``'x*'`` also matches 0 'x' before 'a', between 'b' and 'c', and " "after 'c', currently these matches are ignored. The correct behavior (i.e. " @@ -1449,7 +1447,7 @@ msgstr "" "Python, mais comme cela constitue un changement incompatible avec les " "précédentes, une :exc:`FutureWarning` sera levée pendant la transition." -#: ../Doc/library/re.rst:679 +#: ../Doc/library/re.rst:681 msgid "" "Patterns that can only match empty strings currently never split the " "string. Since this doesn't match the expected behavior, a :exc:`ValueError` " @@ -1460,12 +1458,12 @@ msgstr "" "comportement voulu, une :exc:`ValueError` sera levée à partir de Python " "3.5 : ::" -#: ../Doc/library/re.rst:689 ../Doc/library/re.rst:761 -#: ../Doc/library/re.rst:781 +#: ../Doc/library/re.rst:691 ../Doc/library/re.rst:763 +#: ../Doc/library/re.rst:783 msgid "Added the optional flags argument." msgstr "Ajout de l'argument optionnel *flags*" -#: ../Doc/library/re.rst:692 +#: ../Doc/library/re.rst:694 msgid "" "Splitting on a pattern that could match an empty string now raises a " "warning. Patterns that can only match empty strings are now rejected." @@ -1474,7 +1472,7 @@ msgstr "" "maintenant un avertissement. Les motifs qui ne peuvent correspondre qu'à " "des chaînes vides sont maintenant rejetés." -#: ../Doc/library/re.rst:698 +#: ../Doc/library/re.rst:700 msgid "" "Return all non-overlapping matches of *pattern* in *string*, as a list of " "strings. The *string* is scanned left-to-right, and matches are returned in " @@ -1492,7 +1490,7 @@ msgstr "" "inclues dans le résultat sauf si elles touchent le début d'une autre " "correspondance." -#: ../Doc/library/re.rst:708 +#: ../Doc/library/re.rst:710 msgid "" "Return an :term:`iterator` yielding :ref:`match objects ` " "over all non-overlapping matches for the RE *pattern* in *string*. The " @@ -1507,7 +1505,7 @@ msgstr "" "dans l'ordre où elles sont trouvées. Les correspondances vides sont inclues " "dans le résultat sauf si elles touchent le début d'une autre correspondance." -#: ../Doc/library/re.rst:717 +#: ../Doc/library/re.rst:719 msgid "" "Return the string obtained by replacing the leftmost non-overlapping " "occurrences of *pattern* in *string* by the replacement *repl*. If the " @@ -1528,7 +1526,7 @@ msgstr "" "intactes. Les références arrières, telles que ``\\6``, sont remplacées par " "la sous-chaîne correspondant au groupe 6 dans le motif. Par exemple :" -#: ../Doc/library/re.rst:731 +#: ../Doc/library/re.rst:733 msgid "" "If *repl* is a function, it is called for every non-overlapping occurrence " "of *pattern*. The function takes a single match object argument, and " @@ -1538,13 +1536,13 @@ msgstr "" "chevauchante de *pattern*. La fonction prend comme argument un objet de " "correspondance, et renvoie la chaîne de remplacement. Par exemple :" -#: ../Doc/library/re.rst:743 +#: ../Doc/library/re.rst:745 msgid "The pattern may be a string or an RE object." msgstr "" "Le motif peut être une chaîne de caractères ou un objet expression " "rationnelle." -#: ../Doc/library/re.rst:745 +#: ../Doc/library/re.rst:747 msgid "" "The optional argument *count* is the maximum number of pattern occurrences " "to be replaced; *count* must be a non-negative integer. If omitted or zero, " @@ -1559,7 +1557,7 @@ msgstr "" "précédente correspondance, ainsi ``sub('x*', '-', 'abc')`` renvoie ``'-a-b-" "c-'``." -#: ../Doc/library/re.rst:751 +#: ../Doc/library/re.rst:753 msgid "" "In string-type *repl* arguments, in addition to the character escapes and " "backreferences described above, ``\\g`` will use the substring matched " @@ -1581,12 +1579,12 @@ msgstr "" "par un caractère littéral ``'0'``. La référence arrière ``\\g<0>`` est " "remplacée par la sous-chaîne entière validée par l'expression rationnelle." -#: ../Doc/library/re.rst:764 ../Doc/library/re.rst:784 -#: ../Doc/library/re.rst:996 +#: ../Doc/library/re.rst:766 ../Doc/library/re.rst:786 +#: ../Doc/library/re.rst:998 msgid "Unmatched groups are replaced with an empty string." msgstr "Les groupes sans correspondance sont remplacés par une chaîne vide." -#: ../Doc/library/re.rst:767 +#: ../Doc/library/re.rst:769 msgid "" "Unknown escapes in *pattern* consisting of ``'\\'`` and an ASCII letter now " "are errors." @@ -1594,7 +1592,7 @@ msgstr "" "Les séquences d'échappement inconnues dans *pattern* formées par ``'\\'`` et " "une lettre ASCII sont maintenant des erreurs." -#: ../Doc/library/re.rst:773 +#: ../Doc/library/re.rst:775 msgid "" "Deprecated since version 3.5, will be removed in version 3.7: Unknown " "escapes in repl consisting of '\\' and an ASCII letter now raise a " @@ -1605,7 +1603,7 @@ msgstr "" "maintenant un avertissement de dépréciation et seront interdites en Python " "3.7." -#: ../Doc/library/re.rst:773 +#: ../Doc/library/re.rst:775 msgid "" "Unknown escapes in *repl* consisting of ``'\\'`` and an ASCII letter now " "raise a deprecation warning and will be forbidden in Python 3.7." @@ -1614,7 +1612,7 @@ msgstr "" "lettre ASCII lèvent maintenant un avertissement de dépréciation et seront " "interdites en Python 3.7." -#: ../Doc/library/re.rst:778 +#: ../Doc/library/re.rst:780 msgid "" "Perform the same operation as :func:`sub`, but return a tuple ``(new_string, " "number_of_subs_made)``." @@ -1622,7 +1620,7 @@ msgstr "" "Réalise la même opération que :func:`sub`, mais renvoie un *tuple* " "``(nouvelle_chaîne, nombre_de_substitutions_réalisées)``." -#: ../Doc/library/re.rst:790 +#: ../Doc/library/re.rst:792 msgid "" "Escape all the characters in *pattern* except ASCII letters, numbers and " "``'_'``. This is useful if you want to match an arbitrary literal string " @@ -1633,15 +1631,15 @@ msgstr "" "quelconque chaîne littérale qui pourrait contenir des métacaractères " "d'expressions rationnelles. Par exemple : ::" -#: ../Doc/library/re.rst:805 +#: ../Doc/library/re.rst:807 msgid "The ``'_'`` character is no longer escaped." msgstr "Le caractère ``'_'`` n'est plus échappé." -#: ../Doc/library/re.rst:811 +#: ../Doc/library/re.rst:813 msgid "Clear the regular expression cache." msgstr "Vide le cache d'expressions rationnelles." -#: ../Doc/library/re.rst:816 +#: ../Doc/library/re.rst:818 msgid "" "Exception raised when a string passed to one of the functions here is not a " "valid regular expression (for example, it might contain unmatched " @@ -1656,36 +1654,36 @@ msgstr "" "contient aucune correspondance pour un motif. Les instances de l'erreur ont " "les attributs additionnels suivants :" -#: ../Doc/library/re.rst:824 +#: ../Doc/library/re.rst:826 msgid "The unformatted error message." msgstr "Le message d'erreur non formaté." -#: ../Doc/library/re.rst:828 +#: ../Doc/library/re.rst:830 msgid "The regular expression pattern." msgstr "Le motif d'expression rationnelle." -#: ../Doc/library/re.rst:832 +#: ../Doc/library/re.rst:834 msgid "The index in *pattern* where compilation failed (may be ``None``)." msgstr "" "L'index dans *pattern* où la compilation a échoué (peut valoir ``None``)." -#: ../Doc/library/re.rst:836 +#: ../Doc/library/re.rst:838 msgid "The line corresponding to *pos* (may be ``None``)." msgstr "La ligne correspondant à *pos* (peut valoir ``None``)." -#: ../Doc/library/re.rst:840 +#: ../Doc/library/re.rst:842 msgid "The column corresponding to *pos* (may be ``None``)." msgstr "La colonne correspondant à *pos* (peut valoir ``None``)." -#: ../Doc/library/re.rst:842 +#: ../Doc/library/re.rst:844 msgid "Added additional attributes." msgstr "Ajout des attributs additionnels." -#: ../Doc/library/re.rst:848 +#: ../Doc/library/re.rst:850 msgid "Regular Expression Objects" msgstr "Objets d'expressions rationnelles" -#: ../Doc/library/re.rst:850 +#: ../Doc/library/re.rst:852 msgid "" "Compiled regular expression objects support the following methods and " "attributes:" @@ -1693,7 +1691,7 @@ msgstr "" "Les expressions rationnelles compilées supportent les méthodes et attributs " "suivants :" -#: ../Doc/library/re.rst:855 +#: ../Doc/library/re.rst:857 msgid "" "Scan through *string* looking for the first location where this regular " "expression produces a match, and return a corresponding :ref:`match object " @@ -1707,7 +1705,7 @@ msgstr "" "dans la chaîne ne satisfait le motif ; notez que cela est différent que de " "trouver une correspondance vide dans la chaîne." -#: ../Doc/library/re.rst:861 +#: ../Doc/library/re.rst:863 msgid "" "The optional second parameter *pos* gives an index in the string where the " "search is to start; it defaults to ``0``. This is not completely equivalent " @@ -1721,7 +1719,7 @@ msgstr "" "``'^'`` correspond au début réel de la chaîne et aux positions juste après " "un saut de ligne, mais pas nécessairement à l'index où la recherche commence." -#: ../Doc/library/re.rst:867 +#: ../Doc/library/re.rst:869 msgid "" "The optional parameter *endpos* limits how far the string will be searched; " "it will be as if the string is *endpos* characters long, so only the " @@ -1738,7 +1736,7 @@ msgstr "" "expression rationnelle compilée, ``rx.search(string, 0, 50)`` est équivalent " "à ``rx.search(string[:50], 0)``." -#: ../Doc/library/re.rst:882 +#: ../Doc/library/re.rst:884 msgid "" "If zero or more characters at the *beginning* of *string* match this regular " "expression, return a corresponding :ref:`match object `. " @@ -1750,7 +1748,7 @@ msgstr "" "objects>` trouvé. Renvoie ``None`` si la chaîne ne correspond pas au motif ; " "notez que cela est différent d'une correspondance vide." -#: ../Doc/library/re.rst:887 ../Doc/library/re.rst:905 +#: ../Doc/library/re.rst:889 ../Doc/library/re.rst:907 msgid "" "The optional *pos* and *endpos* parameters have the same meaning as for the :" "meth:`~regex.search` method." @@ -1758,7 +1756,7 @@ msgstr "" "Les paramètres optionnels *pos* et *endpos* ont le même sens que pour la " "méthode :meth:`~regex.search`." -#: ../Doc/library/re.rst:895 +#: ../Doc/library/re.rst:897 msgid "" "If you want to locate a match anywhere in *string*, use :meth:`~regex." "search` instead (see also :ref:`search-vs-match`)." @@ -1766,7 +1764,7 @@ msgstr "" "Si vous voulez une recherche n'importe où dans *string*, utilisez plutôt :" "meth:`~regex.search` (voir aussi :ref:`search-vs-match`)." -#: ../Doc/library/re.rst:901 +#: ../Doc/library/re.rst:903 msgid "" "If the whole *string* matches this regular expression, return a " "corresponding :ref:`match object `. Return ``None`` if the " @@ -1778,11 +1776,11 @@ msgstr "" "la chaîne ne correspond pas au motif ; notez que cela est différent d'une " "correspondance vide." -#: ../Doc/library/re.rst:919 +#: ../Doc/library/re.rst:921 msgid "Identical to the :func:`split` function, using the compiled pattern." msgstr "Identique à la fonction :func:`split`, en utilisant le motif compilé." -#: ../Doc/library/re.rst:924 +#: ../Doc/library/re.rst:926 msgid "" "Similar to the :func:`findall` function, using the compiled pattern, but " "also accepts optional *pos* and *endpos* parameters that limit the search " @@ -1792,7 +1790,7 @@ msgstr "" "accepte aussi des paramètres *pos* et *endpos* optionnels qui limitent la " "région de recherche comme pour :meth:`match`." -#: ../Doc/library/re.rst:931 +#: ../Doc/library/re.rst:933 msgid "" "Similar to the :func:`finditer` function, using the compiled pattern, but " "also accepts optional *pos* and *endpos* parameters that limit the search " @@ -1802,15 +1800,15 @@ msgstr "" "mais accepte aussi des paramètres *pos* et *endpos* optionnels qui limitent " "la région de recherche comme pour :meth:`match`." -#: ../Doc/library/re.rst:938 +#: ../Doc/library/re.rst:940 msgid "Identical to the :func:`sub` function, using the compiled pattern." msgstr "Identique à la fonction :func:`sub`, en utilisant le motif compilé." -#: ../Doc/library/re.rst:943 +#: ../Doc/library/re.rst:945 msgid "Identical to the :func:`subn` function, using the compiled pattern." msgstr "Identique à la fonction :func:`subn`, en utilisant le motif compilé." -#: ../Doc/library/re.rst:948 +#: ../Doc/library/re.rst:950 msgid "" "The regex matching flags. This is a combination of the flags given to :func:" "`.compile`, any ``(?...)`` inline flags in the pattern, and implicit flags " @@ -1821,11 +1819,11 @@ msgstr "" "``(?...)`` dans le motif, et des options implicites comme :data:`UNICODE` si " "le motif est une chaîne Unicode." -#: ../Doc/library/re.rst:955 +#: ../Doc/library/re.rst:957 msgid "The number of capturing groups in the pattern." msgstr "Le nombre de groupes capturants dans le motif." -#: ../Doc/library/re.rst:960 +#: ../Doc/library/re.rst:962 msgid "" "A dictionary mapping any symbolic group names defined by ``(?P)`` to " "group numbers. The dictionary is empty if no symbolic groups were used in " @@ -1835,17 +1833,17 @@ msgstr "" "P)`` aux groupes numérotés. Le dictionnaire est vide si aucun groupe " "symbolique n'est utilisé dans le motif." -#: ../Doc/library/re.rst:967 +#: ../Doc/library/re.rst:969 msgid "The pattern string from which the RE object was compiled." msgstr "" "La chaîne de motif depuis laquelle l'objet expression rationnelle a été " "compilé." -#: ../Doc/library/re.rst:973 +#: ../Doc/library/re.rst:975 msgid "Match Objects" msgstr "Objets de correspondance" -#: ../Doc/library/re.rst:975 +#: ../Doc/library/re.rst:977 msgid "" "Match objects always have a boolean value of ``True``. Since :meth:`~regex." "match` and :meth:`~regex.search` return ``None`` when there is no match, you " @@ -1856,12 +1854,12 @@ msgstr "" "quand il n'y a pas de correspondance, vous pouvez tester s'il y a eu " "correspondance avec une simple instruction ``if`` : ::" -#: ../Doc/library/re.rst:984 +#: ../Doc/library/re.rst:986 msgid "Match objects support the following methods and attributes:" msgstr "" "Les objets de correspondance supportent les méthodes et attributs suivants :" -#: ../Doc/library/re.rst:989 +#: ../Doc/library/re.rst:991 msgid "" "Return the string obtained by doing backslash substitution on the template " "string *template*, as done by the :meth:`~regex.sub` method. Escapes such as " @@ -1876,7 +1874,7 @@ msgstr "" "\\g<1>``, ``\\g``) sont remplacées par les contenus des groupes " "correspondant." -#: ../Doc/library/re.rst:1001 +#: ../Doc/library/re.rst:1003 msgid "" "Returns one or more subgroups of the match. If there is a single argument, " "the result is a single string; if there are multiple arguments, the result " @@ -1903,7 +1901,7 @@ msgstr "" "sera ``None``. Si un groupe est contenu dans une partie du motif qui a " "plusieurs correspondances, seule la dernière correspondance est renvoyée." -#: ../Doc/library/re.rst:1023 +#: ../Doc/library/re.rst:1025 msgid "" "If the regular expression uses the ``(?P...)`` syntax, the *groupN* " "arguments may also be strings identifying groups by their group name. If a " @@ -1915,20 +1913,20 @@ msgstr "" "groupes par leurs noms. Si une chaîne donnée en argument n'est pas utilisée " "comme nom de groupe dans le motif, une exception :exc:`IndexError` est levée." -#: ../Doc/library/re.rst:1028 +#: ../Doc/library/re.rst:1030 msgid "A moderately complicated example:" msgstr "Un exemple modérément compliqué :" -#: ../Doc/library/re.rst:1036 +#: ../Doc/library/re.rst:1038 msgid "Named groups can also be referred to by their index:" msgstr "Les groupes nommés peuvent aussi être référencés par leur index :" -#: ../Doc/library/re.rst:1043 +#: ../Doc/library/re.rst:1045 msgid "If a group matches multiple times, only the last match is accessible:" msgstr "" "Si un groupe a plusieurs correspondances, seule la dernière est accessible :" -#: ../Doc/library/re.rst:1052 +#: ../Doc/library/re.rst:1054 msgid "" "This is identical to ``m.group(g)``. This allows easier access to an " "individual group from a match:" @@ -1936,7 +1934,7 @@ msgstr "" "Cela est identique à ``m.group(g)``. Cela permet un accès plus facile à un " "groupe individuel depuis une correspondance :" -#: ../Doc/library/re.rst:1068 +#: ../Doc/library/re.rst:1070 msgid "" "Return a tuple containing all the subgroups of the match, from 1 up to " "however many groups are in the pattern. The *default* argument is used for " @@ -1946,11 +1944,11 @@ msgstr "" "1 jusqu'au nombre de groupes dans le motif. L'argument *default* est " "utilisé pour les groupes sans correspondance ; il vaut ``None`` par défaut." -#: ../Doc/library/re.rst:1072 +#: ../Doc/library/re.rst:1074 msgid "For example:" msgstr "Par exemple : ::" -#: ../Doc/library/re.rst:1078 +#: ../Doc/library/re.rst:1080 msgid "" "If we make the decimal place and everything after it optional, not all " "groups might participate in the match. These groups will default to " @@ -1961,7 +1959,7 @@ msgstr "" "correspondance vaudront ``None`` sauf si une autre valeur est donnée à " "l'argument *default* :" -#: ../Doc/library/re.rst:1091 +#: ../Doc/library/re.rst:1093 msgid "" "Return a dictionary containing all the *named* subgroups of the match, keyed " "by the subgroup name. The *default* argument is used for groups that did " @@ -1972,7 +1970,7 @@ msgstr "" "utilisé pour les groupes qui ne figurent pas dans la correspondance ; il " "vaut ``None`` par défaut. Par exemple :" -#: ../Doc/library/re.rst:1103 +#: ../Doc/library/re.rst:1105 msgid "" "Return the indices of the start and end of the substring matched by *group*; " "*group* defaults to zero (meaning the whole matched substring). Return " @@ -1987,7 +1985,7 @@ msgstr "" "groupe *g* qui y figure, la sous-chaîne correspondant au groupe *g* " "(équivalente à ``m.group(g)``) est : ::" -#: ../Doc/library/re.rst:1111 +#: ../Doc/library/re.rst:1113 msgid "" "Note that ``m.start(group)`` will equal ``m.end(group)`` if *group* matched " "a null string. For example, after ``m = re.search('b(c?)', 'cba')``, ``m." @@ -2000,11 +1998,11 @@ msgstr "" "end(1)`` valent tous deux 2, et ``m.start(2)`` lève une exception :exc:" "`IndexError`." -#: ../Doc/library/re.rst:1116 +#: ../Doc/library/re.rst:1118 msgid "An example that will remove *remove_this* from email addresses:" msgstr "Un exemple qui supprimera *remove_this* d'une adresse email :" -#: ../Doc/library/re.rst:1126 +#: ../Doc/library/re.rst:1128 msgid "" "For a match *m*, return the 2-tuple ``(m.start(group), m.end(group))``. Note " "that if *group* did not contribute to the match, this is ``(-1, -1)``. " @@ -2015,7 +2013,7 @@ msgstr "" "``(-1, -1)`` est renvoyé. *group* vaut par défaut zéro, pour la " "correspondance entière." -#: ../Doc/library/re.rst:1133 +#: ../Doc/library/re.rst:1135 msgid "" "The value of *pos* which was passed to the :meth:`~regex.search` or :meth:" "`~regex.match` method of a :ref:`regex object `. This is the " @@ -2026,7 +2024,7 @@ msgstr "" "C'est l'index dans la chaîne à partir duquel le moteur d'expressions " "rationnelles recherche une correspondance." -#: ../Doc/library/re.rst:1140 +#: ../Doc/library/re.rst:1142 msgid "" "The value of *endpos* which was passed to the :meth:`~regex.search` or :meth:" "`~regex.match` method of a :ref:`regex object `. This is the " @@ -2037,7 +2035,7 @@ msgstr "" "objects>`. C'est l'index dans la chaîne que le moteur d'expressions " "rationnelles ne dépassera pas." -#: ../Doc/library/re.rst:1147 +#: ../Doc/library/re.rst:1149 msgid "" "The integer index of the last matched capturing group, or ``None`` if no " "group was matched at all. For example, the expressions ``(a)b``, ``((a)" @@ -2051,7 +2049,7 @@ msgstr "" "``'ab'``, alors que l'expression ``(a)(b)`` aura un ``lastindex == 2`` si " "appliquée à la même chaîne." -#: ../Doc/library/re.rst:1156 +#: ../Doc/library/re.rst:1158 msgid "" "The name of the last matched capturing group, or ``None`` if the group " "didn't have a name, or if no group was matched at all." @@ -2059,7 +2057,7 @@ msgstr "" "Le nom du dernier groupe capturant validé, ou ``None`` si le groupe n'a pas " "de nom, ou si aucun groupe ne correspondait." -#: ../Doc/library/re.rst:1162 +#: ../Doc/library/re.rst:1164 msgid "" "The regular expression object whose :meth:`~regex.match` or :meth:`~regex." "search` method produced this match instance." @@ -2067,19 +2065,19 @@ msgstr "" "L'expression rationnelle dont la méthode :meth:`~regex.match` ou :meth:" "`~regex.search` a produit cet objet de correspondance." -#: ../Doc/library/re.rst:1168 +#: ../Doc/library/re.rst:1170 msgid "The string passed to :meth:`~regex.match` or :meth:`~regex.search`." msgstr "La chaîne passée à :meth:`~regex.match` ou :meth:`~regex.search`." -#: ../Doc/library/re.rst:1174 +#: ../Doc/library/re.rst:1176 msgid "Regular Expression Examples" msgstr "Exemples d'expressions rationnelles" -#: ../Doc/library/re.rst:1178 +#: ../Doc/library/re.rst:1180 msgid "Checking for a Pair" msgstr "Rechercher une paire" -#: ../Doc/library/re.rst:1180 +#: ../Doc/library/re.rst:1182 msgid "" "In this example, we'll use the following helper function to display match " "objects a little more gracefully:" @@ -2087,7 +2085,7 @@ msgstr "" "Dans cet exemple, nous utiliserons cette fonction de facilité pour afficher " "les objets de correspondance sous une meilleure forme :" -#: ../Doc/library/re.rst:1190 +#: ../Doc/library/re.rst:1192 msgid "" "Suppose you are writing a poker program where a player's hand is represented " "as a 5-character string with each character representing a card, \"a\" for " @@ -2101,13 +2099,13 @@ msgstr "" "(*ten*), et les caractères de \"2\" à \"9\" représentant les cartes avec ces " "valeurs." -#: ../Doc/library/re.rst:1195 +#: ../Doc/library/re.rst:1197 msgid "To see if a given string is a valid hand, one could do the following:" msgstr "" "Pour vérifier qu'une chaîne donnée est une main valide, on pourrait faire " "comme suit :" -#: ../Doc/library/re.rst:1205 +#: ../Doc/library/re.rst:1207 msgid "" "That last hand, ``\"727ak\"``, contained a pair, or two of the same valued " "cards. To match this with a regular expression, one could use backreferences " @@ -2117,7 +2115,7 @@ msgstr "" "valeur. Pour valider cela avec une expression rationnelle, on pourrait " "utiliser des références arrière comme :" -#: ../Doc/library/re.rst:1215 +#: ../Doc/library/re.rst:1217 msgid "" "To find out what card the pair consists of, one could use the :meth:`~match." "group` method of the match object in the following manner:" @@ -2126,11 +2124,11 @@ msgstr "" "méthode :meth:`~match.group` de l'objet de correspondance de la manière " "suivante :" -#: ../Doc/library/re.rst:1235 +#: ../Doc/library/re.rst:1237 msgid "Simulating scanf()" msgstr "Simuler scanf()" -#: ../Doc/library/re.rst:1239 +#: ../Doc/library/re.rst:1241 msgid "" "Python does not currently have an equivalent to :c:func:`scanf`. Regular " "expressions are generally more powerful, though also more verbose, than :c:" @@ -2144,104 +2142,104 @@ msgstr "" "suivant présente des expressions rationnelles plus ou moins équivalentes aux " "éléments de formats de :c:func:`scanf`." -#: ../Doc/library/re.rst:1246 +#: ../Doc/library/re.rst:1248 msgid ":c:func:`scanf` Token" msgstr "Élément de :c:func:`scanf`" -#: ../Doc/library/re.rst:1246 +#: ../Doc/library/re.rst:1248 msgid "Regular Expression" msgstr "Expression rationnelle" -#: ../Doc/library/re.rst:1248 +#: ../Doc/library/re.rst:1250 msgid "``%c``" msgstr "``%c``" -#: ../Doc/library/re.rst:1248 +#: ../Doc/library/re.rst:1250 msgid "``.``" msgstr "``.``" -#: ../Doc/library/re.rst:1250 +#: ../Doc/library/re.rst:1252 msgid "``%5c``" msgstr "``%5c``" -#: ../Doc/library/re.rst:1250 +#: ../Doc/library/re.rst:1252 msgid "``.{5}``" msgstr "``.{5}``" -#: ../Doc/library/re.rst:1252 +#: ../Doc/library/re.rst:1254 msgid "``%d``" msgstr "``%d``" -#: ../Doc/library/re.rst:1252 +#: ../Doc/library/re.rst:1254 msgid "``[-+]?\\d+``" msgstr "``[-+]?\\d+``" -#: ../Doc/library/re.rst:1254 +#: ../Doc/library/re.rst:1256 msgid "``%e``, ``%E``, ``%f``, ``%g``" msgstr "``%e``, ``%E``, ``%f``, ``%g``" -#: ../Doc/library/re.rst:1254 +#: ../Doc/library/re.rst:1256 msgid "``[-+]?(\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?``" msgstr "``[-+]?(\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?``" -#: ../Doc/library/re.rst:1256 +#: ../Doc/library/re.rst:1258 msgid "``%i``" msgstr "``%i``" -#: ../Doc/library/re.rst:1256 +#: ../Doc/library/re.rst:1258 msgid "``[-+]?(0[xX][\\dA-Fa-f]+|0[0-7]*|\\d+)``" msgstr "``[-+]?(0[xX][\\dA-Fa-f]+|0[0-7]*|\\d+)``" -#: ../Doc/library/re.rst:1258 +#: ../Doc/library/re.rst:1260 msgid "``%o``" msgstr "``%o``" -#: ../Doc/library/re.rst:1258 +#: ../Doc/library/re.rst:1260 msgid "``[-+]?[0-7]+``" msgstr "``[-+]?[0-7]+``" -#: ../Doc/library/re.rst:1260 +#: ../Doc/library/re.rst:1262 msgid "``%s``" msgstr "``%s``" -#: ../Doc/library/re.rst:1260 +#: ../Doc/library/re.rst:1262 msgid "``\\S+``" msgstr "``\\S+``" -#: ../Doc/library/re.rst:1262 +#: ../Doc/library/re.rst:1264 msgid "``%u``" msgstr "``%u``" -#: ../Doc/library/re.rst:1262 +#: ../Doc/library/re.rst:1264 msgid "``\\d+``" msgstr "``\\d+``" -#: ../Doc/library/re.rst:1264 +#: ../Doc/library/re.rst:1266 msgid "``%x``, ``%X``" msgstr "``%x``, ``%X``" -#: ../Doc/library/re.rst:1264 +#: ../Doc/library/re.rst:1266 msgid "``[-+]?(0[xX])?[\\dA-Fa-f]+``" msgstr "``[-+]?(0[xX])?[\\dA-Fa-f]+``" -#: ../Doc/library/re.rst:1267 +#: ../Doc/library/re.rst:1269 msgid "To extract the filename and numbers from a string like ::" msgstr "" "Pour extraire le nom de fichier et les nombres depuis une chaîne comme : ::" -#: ../Doc/library/re.rst:1271 +#: ../Doc/library/re.rst:1273 msgid "you would use a :c:func:`scanf` format like ::" msgstr "vous utiliseriez un format :c:func:`scanf` comme : ::" -#: ../Doc/library/re.rst:1275 +#: ../Doc/library/re.rst:1277 msgid "The equivalent regular expression would be ::" msgstr "L'expression rationnelle équivalente serait : ::" -#: ../Doc/library/re.rst:1283 +#: ../Doc/library/re.rst:1285 msgid "search() vs. match()" msgstr "search() vs. match()" -#: ../Doc/library/re.rst:1287 +#: ../Doc/library/re.rst:1289 msgid "" "Python offers two different primitive operations based on regular " "expressions: :func:`re.match` checks for a match only at the beginning of " @@ -2253,11 +2251,11 @@ msgstr "" "début de la chaîne, tandis que :func:`re.search` en recherche une n'importe " "où dans la chaîne (ce que fait Perl par défaut)." -#: ../Doc/library/re.rst:1292 +#: ../Doc/library/re.rst:1294 msgid "For example::" msgstr "Par exemple : ::" -#: ../Doc/library/re.rst:1298 +#: ../Doc/library/re.rst:1300 msgid "" "Regular expressions beginning with ``'^'`` can be used with :func:`search` " "to restrict the match at the beginning of the string::" @@ -2265,7 +2263,7 @@ msgstr "" "Les expressions rationnelles commençant par ``'^'`` peuvent être utilisées " "avec :func:`search` pour restreindre la recherche au début de la chaîne : ::" -#: ../Doc/library/re.rst:1306 +#: ../Doc/library/re.rst:1308 msgid "" "Note however that in :const:`MULTILINE` mode :func:`match` only matches at " "the beginning of the string, whereas using :func:`search` with a regular " @@ -2275,11 +2273,11 @@ msgstr "" "qu'au début de la chaîne, alors que :func:`search` avec une expression " "rationnelle commençant par ``'^'`` recherchera au début de chaque ligne." -#: ../Doc/library/re.rst:1316 +#: ../Doc/library/re.rst:1318 msgid "Making a Phonebook" msgstr "Construire un répertoire téléphonique" -#: ../Doc/library/re.rst:1318 +#: ../Doc/library/re.rst:1320 msgid "" ":func:`split` splits a string into a list delimited by the passed pattern. " "The method is invaluable for converting textual data into data structures " @@ -2291,7 +2289,7 @@ msgstr "" "structures de données qui peuvent être lues et modifiées par Python comme " "démontré dans l'exemple suivant qui crée un répertoire téléphonique." -#: ../Doc/library/re.rst:1323 +#: ../Doc/library/re.rst:1325 msgid "" "First, here is the input. Normally it may come from a file, here we are " "using triple-quoted string syntax:" @@ -2299,7 +2297,7 @@ msgstr "" "Premièrement, voici l'entrée. Elle provient normalement d'un fichier, nous " "utilisons ici une chaîne à guillemets triples :" -#: ../Doc/library/re.rst:1334 +#: ../Doc/library/re.rst:1336 msgid "" "The entries are separated by one or more newlines. Now we convert the string " "into a list with each nonempty line having its own entry:" @@ -2308,7 +2306,7 @@ msgstr "" "maintenant la chaîne en une liste où chaque ligne non vide aura sa propre " "entrée :" -#: ../Doc/library/re.rst:1347 +#: ../Doc/library/re.rst:1349 msgid "" "Finally, split each entry into a list with first name, last name, telephone " "number, and address. We use the ``maxsplit`` parameter of :func:`split` " @@ -2319,7 +2317,7 @@ msgstr "" "`split` parce que l'adresse contient des espaces, qui sont notre motif de " "séparation :" -#: ../Doc/library/re.rst:1360 +#: ../Doc/library/re.rst:1362 msgid "" "The ``:?`` pattern matches the colon after the last name, so that it does " "not occur in the result list. With a ``maxsplit`` of ``4``, we could " @@ -2329,11 +2327,11 @@ msgstr "" "qu'ils n'apparaissent pas dans la liste résultante. Avec un ``maxsplit`` de " "``4``, nous pourrions séparer le numéro du nom de la rue." -#: ../Doc/library/re.rst:1375 +#: ../Doc/library/re.rst:1377 msgid "Text Munging" msgstr "Mélanger les lettres des mots" -#: ../Doc/library/re.rst:1377 +#: ../Doc/library/re.rst:1379 msgid "" ":func:`sub` replaces every occurrence of a pattern with a string or the " "result of a function. This example demonstrates using :func:`sub` with a " @@ -2345,11 +2343,11 @@ msgstr "" "avec une fonction qui mélange aléatoirement les caractères de chaque mot " "dans une phrase (à l'exception des premiers et derniers caractères) : ::" -#: ../Doc/library/re.rst:1394 +#: ../Doc/library/re.rst:1396 msgid "Finding all Adverbs" msgstr "Trouver tous les adverbes" -#: ../Doc/library/re.rst:1396 +#: ../Doc/library/re.rst:1398 msgid "" ":func:`findall` matches *all* occurrences of a pattern, not just the first " "one as :func:`search` does. For example, if one was a writer and wanted to " @@ -2361,11 +2359,11 @@ msgstr "" "voulait trouver tous les adverbes dans un texte, il/elle devrait utiliser :" "func:`findall` de la manière suivante :" -#: ../Doc/library/re.rst:1407 +#: ../Doc/library/re.rst:1409 msgid "Finding all Adverbs and their Positions" msgstr "Trouver tous les adverbes et leurs positions" -#: ../Doc/library/re.rst:1409 +#: ../Doc/library/re.rst:1411 msgid "" "If one wants more information about all matches of a pattern than the " "matched text, :func:`finditer` is useful as it provides :ref:`match objects " @@ -2381,11 +2379,11 @@ msgstr "" "leurs positions* dans un texte, il/elle utiliserait :func:`finditer` de la " "manière suivante :" -#: ../Doc/library/re.rst:1423 +#: ../Doc/library/re.rst:1425 msgid "Raw String Notation" msgstr "Notation brutes de chaînes" -#: ../Doc/library/re.rst:1425 +#: ../Doc/library/re.rst:1427 msgid "" "Raw string notation (``r\"text\"``) keeps regular expressions sane. Without " "it, every backslash (``'\\'``) in a regular expression would have to be " @@ -2398,7 +2396,7 @@ msgstr "" "Par exemple, les deux lignes de code suivantes sont fonctionnellement " "identiques :" -#: ../Doc/library/re.rst:1435 +#: ../Doc/library/re.rst:1437 msgid "" "When one wants to match a literal backslash, it must be escaped in the " "regular expression. With raw string notation, this means ``r\"\\\\\"``. " @@ -2410,11 +2408,11 @@ msgstr "" "\"``. Sans elle, il faudrait utiliser ``\"\\\\\\\\\"``, faisant que les " "deux lignes de code suivantes sont fonctionnellement identiques :" -#: ../Doc/library/re.rst:1447 +#: ../Doc/library/re.rst:1449 msgid "Writing a Tokenizer" msgstr "Écrire un analyseur lexical" -#: ../Doc/library/re.rst:1449 +#: ../Doc/library/re.rst:1451 msgid "" "A `tokenizer or scanner `_ " "analyzes a string to categorize groups of characters. This is a useful " @@ -2425,7 +2423,7 @@ msgstr "" "caractères. C'est une première étape utile dans l'écriture d'un compilateur " "ou d'un interpréteur." -#: ../Doc/library/re.rst:1453 +#: ../Doc/library/re.rst:1455 msgid "" "The text categories are specified with regular expressions. The technique " "is to combine those into a single master regular expression and to loop over " @@ -2435,10 +2433,20 @@ msgstr "" "La technique est de les combiner dans une unique expression rationnelle " "maîtresse, et de boucler sur les correspondances successives : ::" -#: ../Doc/library/re.rst:1503 +#: ../Doc/library/re.rst:1505 msgid "The tokenizer produces the following output::" msgstr "L'analyseur produit la sortie suivante : ::" +#~ msgid "" +#~ "Perform case-insensitive matching; expressions like ``[A-Z]`` will match " +#~ "lowercase letters, too. This is not affected by the current locale and " +#~ "works for Unicode characters as expected." +#~ msgstr "" +#~ "Réalise une analyse insensible à la classe ; les expressions comme ``[A-" +#~ "Z]`` valideront aussi les lettres minuscules. Cela n'est pas affecté par " +#~ "la locale courante et fonctionne comme convenu avec les caractères " +#~ "Unicode." + #, fuzzy #~ msgid "'.'" #~ msgstr "``'.'``" diff --git a/library/ssl.po b/library/ssl.po index d7dbe1a5..b6a095c7 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-29 14:32+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -246,8 +246,9 @@ msgid "**SSLv3**" msgstr "**SSLv3**" #: ../Doc/library/ssl.rst:196 -msgid "**TLS**" -msgstr "" +#, fuzzy +msgid "**TLS** [3]_" +msgstr "**TLSv1**" #: ../Doc/library/ssl.rst:196 msgid "**TLSv1**" @@ -290,7 +291,7 @@ msgid "no [2]_" msgstr "" #: ../Doc/library/ssl.rst:200 -msgid "*TLS* (*SSLv23*)" +msgid "*TLS* (*SSLv23*) [3]_" msgstr "" #: ../Doc/library/ssl.rst:201 @@ -317,21 +318,27 @@ msgstr "" msgid ":class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default." msgstr "" -#: ../Doc/library/ssl.rst:212 +#: ../Doc/library/ssl.rst:209 +msgid "" +"TLS 1.3 protocol will be available with :data:`PROTOCOL_TLS` in OpenSSL >= " +"1.1.1. There is no dedicated PROTOCOL constant for just TLS 1.3." +msgstr "" + +#: ../Doc/library/ssl.rst:215 msgid "" "Which connections succeed will vary depending on the version of OpenSSL. " "For example, before OpenSSL 1.0.0, an SSLv23 client would always attempt " "SSLv2 connections." msgstr "" -#: ../Doc/library/ssl.rst:216 +#: ../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 `_." msgstr "" -#: ../Doc/library/ssl.rst:220 +#: ../Doc/library/ssl.rst:223 msgid "" "The parameter ``do_handshake_on_connect`` specifies whether to do the SSL " "handshake automatically after doing a :meth:`socket.connect`, or whether the " @@ -341,7 +348,7 @@ msgid "" "socket I/O involved in the handshake." msgstr "" -#: ../Doc/library/ssl.rst:227 +#: ../Doc/library/ssl.rst:230 msgid "" "The parameter ``suppress_ragged_eofs`` specifies how the :meth:`SSLSocket." "recv` method should signal unexpected EOF from the other end of the " @@ -351,21 +358,21 @@ msgid "" "exceptions back to the caller." msgstr "" -#: ../Doc/library/ssl.rst:234 +#: ../Doc/library/ssl.rst:237 msgid "New optional argument *ciphers*." msgstr "" -#: ../Doc/library/ssl.rst:238 +#: ../Doc/library/ssl.rst:241 msgid "Context creation" msgstr "" -#: ../Doc/library/ssl.rst:240 +#: ../Doc/library/ssl.rst:243 msgid "" "A convenience function helps create :class:`SSLContext` objects for common " "purposes." msgstr "" -#: ../Doc/library/ssl.rst:245 +#: ../Doc/library/ssl.rst:248 msgid "" "Return a new :class:`SSLContext` object with default settings for the given " "*purpose*. The settings are chosen by the :mod:`ssl` module, and usually " @@ -373,7 +380,7 @@ msgid "" "constructor directly." msgstr "" -#: ../Doc/library/ssl.rst:250 +#: ../Doc/library/ssl.rst:253 msgid "" "*cafile*, *capath*, *cadata* represent optional CA certificates to trust for " "certificate verification, as in :meth:`SSLContext.load_verify_locations`. " @@ -381,7 +388,7 @@ msgid "" "system's default CA certificates instead." msgstr "" -#: ../Doc/library/ssl.rst:256 +#: ../Doc/library/ssl.rst:259 msgid "" "The settings are: :data:`PROTOCOL_TLS`, :data:`OP_NO_SSLv2`, and :data:" "`OP_NO_SSLv3` with high encryption cipher suites without RC4 and without " @@ -392,20 +399,20 @@ msgid "" "default CA certificates." msgstr "" -#: ../Doc/library/ssl.rst:265 +#: ../Doc/library/ssl.rst:268 msgid "" "The protocol, options, cipher and other settings may change to more " "restrictive values anytime without prior deprecation. The values represent " "a fair balance between compatibility and security." msgstr "" -#: ../Doc/library/ssl.rst:269 +#: ../Doc/library/ssl.rst:272 msgid "" "If your application needs specific settings, you should create a :class:" "`SSLContext` and apply the settings yourself." msgstr "" -#: ../Doc/library/ssl.rst:273 +#: ../Doc/library/ssl.rst:276 msgid "" "If you find that when certain older clients or servers attempt to connect " "with a :class:`SSLContext` created by this function that they get an error " @@ -416,23 +423,29 @@ msgid "" "still allow SSL 3.0 connections you can re-enable them using::" msgstr "" -#: ../Doc/library/ssl.rst:289 +#: ../Doc/library/ssl.rst:292 msgid "RC4 was dropped from the default cipher string." msgstr "" -#: ../Doc/library/ssl.rst:293 +#: ../Doc/library/ssl.rst:296 msgid "ChaCha20/Poly1305 was added to the default cipher string." msgstr "" -#: ../Doc/library/ssl.rst:295 +#: ../Doc/library/ssl.rst:298 msgid "3DES was dropped from the default cipher string." msgstr "" -#: ../Doc/library/ssl.rst:299 +#: ../Doc/library/ssl.rst:302 +msgid "" +"TLS 1.3 cipher suites TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, and " +"TLS_CHACHA20_POLY1305_SHA256 were added to the default cipher string." +msgstr "" + +#: ../Doc/library/ssl.rst:307 msgid "Random generation" msgstr "" -#: ../Doc/library/ssl.rst:303 +#: ../Doc/library/ssl.rst:311 msgid "" "Return *num* cryptographically strong pseudo-random bytes. Raises an :class:" "`SSLError` if the PRNG has not been seeded with enough data or if the " @@ -441,11 +454,11 @@ msgid "" "to seed the PRNG." msgstr "" -#: ../Doc/library/ssl.rst:309 ../Doc/library/ssl.rst:330 +#: ../Doc/library/ssl.rst:317 ../Doc/library/ssl.rst:338 msgid "For almost all applications :func:`os.urandom` is preferable." msgstr "" -#: ../Doc/library/ssl.rst:311 +#: ../Doc/library/ssl.rst:319 msgid "" "Read the Wikipedia article, `Cryptographically secure pseudorandom number " "generator (CSPRNG) 1.1.0" msgstr "" -#: ../Doc/library/ssl.rst:361 +#: ../Doc/library/ssl.rst:369 msgid "" "Mix the given *bytes* into the SSL pseudo-random number generator. The " "parameter *entropy* (a float) is a lower bound on the entropy contained in " @@ -510,15 +523,15 @@ msgid "" "information on sources of entropy." msgstr "" -#: ../Doc/library/ssl.rst:366 +#: ../Doc/library/ssl.rst:374 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "N'importe quel :term:`bytes-like object` est maintenant accepté." -#: ../Doc/library/ssl.rst:370 +#: ../Doc/library/ssl.rst:378 msgid "Certificate handling" msgstr "" -#: ../Doc/library/ssl.rst:374 +#: ../Doc/library/ssl.rst:382 msgid "" "Verify that *cert* (in decoded format as returned by :meth:`SSLSocket." "getpeercert`) matches the given *hostname*. The rules applied are those for " @@ -528,13 +541,13 @@ msgid "" "such as FTPS, IMAPS, POPS and others." msgstr "" -#: ../Doc/library/ssl.rst:381 +#: ../Doc/library/ssl.rst:389 msgid "" ":exc:`CertificateError` is raised on failure. On success, the function " "returns nothing::" msgstr "" -#: ../Doc/library/ssl.rst:394 +#: ../Doc/library/ssl.rst:402 msgid "" "The function now follows :rfc:`6125`, section 6.4.3 and does neither match " "multiple wildcards (e.g. ``*.*.com`` or ``*a*.example.org``) nor a wildcard " @@ -543,35 +556,35 @@ msgid "" "longer matches ``xn--tda.python.org``." msgstr "" -#: ../Doc/library/ssl.rst:401 +#: ../Doc/library/ssl.rst:409 msgid "" "Matching of IP addresses, when present in the subjectAltName field of the " "certificate, is now supported." msgstr "" -#: ../Doc/library/ssl.rst:407 +#: ../Doc/library/ssl.rst:415 msgid "" "Return the time in seconds since the Epoch, given the ``cert_time`` string " "representing the \"notBefore\" or \"notAfter\" date from a certificate in ``" "\"%b %d %H:%M:%S %Y %Z\"`` strptime format (C locale)." msgstr "" -#: ../Doc/library/ssl.rst:412 +#: ../Doc/library/ssl.rst:420 msgid "Here's an example:" msgstr "" -#: ../Doc/library/ssl.rst:424 +#: ../Doc/library/ssl.rst:432 msgid "\"notBefore\" or \"notAfter\" dates must use GMT (:rfc:`5280`)." msgstr "" -#: ../Doc/library/ssl.rst:426 +#: ../Doc/library/ssl.rst:434 msgid "" "Interpret the input time as a time in UTC as specified by 'GMT' timezone in " "the input string. Local timezone was used previously. Return an integer (no " "fractions of a second in the input format)" msgstr "" -#: ../Doc/library/ssl.rst:434 +#: ../Doc/library/ssl.rst:442 msgid "" "Given the address ``addr`` of an SSL-protected server, as a (*hostname*, " "*port-number*) pair, fetches the server's certificate, and returns it as a " @@ -583,81 +596,81 @@ msgid "" "certificates, and will fail if the validation attempt fails." msgstr "" -#: ../Doc/library/ssl.rst:443 +#: ../Doc/library/ssl.rst:451 msgid "This function is now IPv6-compatible." msgstr "" -#: ../Doc/library/ssl.rst:446 +#: ../Doc/library/ssl.rst:454 msgid "" "The default *ssl_version* is changed from :data:`PROTOCOL_SSLv3` to :data:" "`PROTOCOL_TLS` for maximum compatibility with modern servers." msgstr "" -#: ../Doc/library/ssl.rst:452 +#: ../Doc/library/ssl.rst:460 msgid "" "Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded " "string version of the same certificate." msgstr "" -#: ../Doc/library/ssl.rst:457 +#: ../Doc/library/ssl.rst:465 msgid "" "Given a certificate as an ASCII PEM string, returns a DER-encoded sequence " "of bytes for that same certificate." msgstr "" -#: ../Doc/library/ssl.rst:462 +#: ../Doc/library/ssl.rst:470 msgid "" "Returns a named tuple with paths to OpenSSL's default cafile and capath. The " "paths are the same as used by :meth:`SSLContext.set_default_verify_paths`. " "The return value is a :term:`named tuple` ``DefaultVerifyPaths``:" msgstr "" -#: ../Doc/library/ssl.rst:467 +#: ../Doc/library/ssl.rst:475 msgid "" ":attr:`cafile` - resolved path to cafile or ``None`` if the file doesn't " "exist," msgstr "" -#: ../Doc/library/ssl.rst:468 +#: ../Doc/library/ssl.rst:476 msgid "" ":attr:`capath` - resolved path to capath or ``None`` if the directory " "doesn't exist," msgstr "" -#: ../Doc/library/ssl.rst:469 +#: ../Doc/library/ssl.rst:477 msgid "" ":attr:`openssl_cafile_env` - OpenSSL's environment key that points to a " "cafile," msgstr "" -#: ../Doc/library/ssl.rst:470 +#: ../Doc/library/ssl.rst:478 msgid ":attr:`openssl_cafile` - hard coded path to a cafile," msgstr "" -#: ../Doc/library/ssl.rst:471 +#: ../Doc/library/ssl.rst:479 msgid "" ":attr:`openssl_capath_env` - OpenSSL's environment key that points to a " "capath," msgstr "" -#: ../Doc/library/ssl.rst:472 +#: ../Doc/library/ssl.rst:480 msgid ":attr:`openssl_capath` - hard coded path to a capath directory" msgstr "" -#: ../Doc/library/ssl.rst:474 +#: ../Doc/library/ssl.rst:482 msgid "" "Availability: LibreSSL ignores the environment vars :attr:" "`openssl_cafile_env` and :attr:`openssl_capath_env`" msgstr "" -#: ../Doc/library/ssl.rst:481 +#: ../Doc/library/ssl.rst:489 msgid "" "Retrieve certificates from Windows' system cert store. *store_name* may be " "one of ``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert " "stores, too." msgstr "" -#: ../Doc/library/ssl.rst:485 +#: ../Doc/library/ssl.rst:493 msgid "" "The function returns a list of (cert_bytes, encoding_type, trust) tuples. " "The encoding_type specifies the encoding of cert_bytes. It is either :const:" @@ -666,39 +679,39 @@ msgid "" "exactly ``True`` if the certificate is trustworthy for all purposes." msgstr "" -#: ../Doc/library/ssl.rst:492 ../Doc/library/ssl.rst:1360 -#: ../Doc/library/ssl.rst:1609 +#: ../Doc/library/ssl.rst:500 ../Doc/library/ssl.rst:1384 +#: ../Doc/library/ssl.rst:1633 msgid "Example::" msgstr "Exemples ::" -#: ../Doc/library/ssl.rst:498 ../Doc/library/ssl.rst:513 +#: ../Doc/library/ssl.rst:506 ../Doc/library/ssl.rst:521 msgid "Availability: Windows." msgstr "Disponibilité : Windows." -#: ../Doc/library/ssl.rst:504 +#: ../Doc/library/ssl.rst:512 msgid "" "Retrieve CRLs from Windows' system cert store. *store_name* may be one of " "``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert stores, too." msgstr "" -#: ../Doc/library/ssl.rst:508 +#: ../Doc/library/ssl.rst:516 msgid "" "The function returns a list of (cert_bytes, encoding_type, trust) tuples. " "The encoding_type specifies the encoding of cert_bytes. It is either :const:" "`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for PKCS#7 ASN.1 data." msgstr "" -#: ../Doc/library/ssl.rst:519 +#: ../Doc/library/ssl.rst:527 msgid "Constants" msgstr "Constantes" -#: ../Doc/library/ssl.rst:521 +#: ../Doc/library/ssl.rst:529 msgid "" "All constants are now :class:`enum.IntEnum` or :class:`enum.IntFlag` " "collections." msgstr "" -#: ../Doc/library/ssl.rst:527 +#: ../Doc/library/ssl.rst:535 msgid "" "Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs`` " "parameter to :func:`wrap_socket`. In this mode (the default), no " @@ -707,11 +720,11 @@ msgid "" "is made." msgstr "" -#: ../Doc/library/ssl.rst:533 ../Doc/library/ssl.rst:1928 +#: ../Doc/library/ssl.rst:541 ../Doc/library/ssl.rst:1952 msgid "See the discussion of :ref:`ssl-security` below." msgstr "" -#: ../Doc/library/ssl.rst:537 +#: ../Doc/library/ssl.rst:545 msgid "" "Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs`` " "parameter to :func:`wrap_socket`. In this mode no certificates will be " @@ -720,14 +733,14 @@ msgid "" "raised on failure." msgstr "" -#: ../Doc/library/ssl.rst:543 ../Doc/library/ssl.rst:554 +#: ../Doc/library/ssl.rst:551 ../Doc/library/ssl.rst:562 msgid "" "Use of this setting requires a valid set of CA certificates to be passed, " "either to :meth:`SSLContext.load_verify_locations` or as a value of the " "``ca_certs`` parameter to :func:`wrap_socket`." msgstr "" -#: ../Doc/library/ssl.rst:549 +#: ../Doc/library/ssl.rst:557 msgid "" "Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs`` " "parameter to :func:`wrap_socket`. In this mode, certificates are required " @@ -735,18 +748,18 @@ msgid "" "raised if no certificate is provided, or if its validation fails." msgstr "" -#: ../Doc/library/ssl.rst:560 +#: ../Doc/library/ssl.rst:568 msgid ":class:`enum.IntEnum` collection of CERT_* constants." msgstr "" -#: ../Doc/library/ssl.rst:566 +#: ../Doc/library/ssl.rst:574 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. In this mode, " "certificate revocation lists (CRLs) are not checked. By default OpenSSL does " "neither require nor verify CRLs." msgstr "" -#: ../Doc/library/ssl.rst:574 +#: ../Doc/library/ssl.rst:582 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the " "peer cert is check but non of the intermediate CA certificates. The mode " @@ -755,37 +768,37 @@ msgid "" "load_verify_locations`, validation will fail." msgstr "" -#: ../Doc/library/ssl.rst:584 +#: ../Doc/library/ssl.rst:592 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. In this mode, CRLs of " "all certificates in the peer cert chain are checked." msgstr "" -#: ../Doc/library/ssl.rst:591 +#: ../Doc/library/ssl.rst:599 msgid "" "Possible value for :attr:`SSLContext.verify_flags` to disable workarounds " "for broken X.509 certificates." msgstr "" -#: ../Doc/library/ssl.rst:598 +#: ../Doc/library/ssl.rst:606 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to " "prefer trusted certificates when building the trust chain to validate a " "certificate. This flag is enabled by default." msgstr "" -#: ../Doc/library/ssl.rst:606 +#: ../Doc/library/ssl.rst:614 msgid ":class:`enum.IntFlag` collection of VERIFY_* constants." msgstr "" -#: ../Doc/library/ssl.rst:612 +#: ../Doc/library/ssl.rst:620 msgid "" "Selects the highest protocol version that both the client and server " "support. Despite the name, this option can select both \"SSL\" and \"TLS\" " "protocols." msgstr "" -#: ../Doc/library/ssl.rst:619 +#: ../Doc/library/ssl.rst:627 msgid "" "Auto-negotiate the highest protocol version like :data:`PROTOCOL_TLS`, but " "only support client-side :class:`SSLSocket` connections. The protocol " @@ -793,184 +806,193 @@ msgid "" "default." msgstr "" -#: ../Doc/library/ssl.rst:628 +#: ../Doc/library/ssl.rst:636 msgid "" "Auto-negotiate the highest protocol version like :data:`PROTOCOL_TLS`, but " "only support server-side :class:`SSLSocket` connections." msgstr "" -#: ../Doc/library/ssl.rst:635 +#: ../Doc/library/ssl.rst:643 msgid "Alias for data:`PROTOCOL_TLS`." msgstr "" -#: ../Doc/library/ssl.rst:639 +#: ../Doc/library/ssl.rst:647 msgid "Use :data:`PROTOCOL_TLS` instead." msgstr "" -#: ../Doc/library/ssl.rst:643 +#: ../Doc/library/ssl.rst:651 msgid "Selects SSL version 2 as the channel encryption protocol." msgstr "" -#: ../Doc/library/ssl.rst:645 +#: ../Doc/library/ssl.rst:653 msgid "" "This protocol is not available if OpenSSL is compiled with the " "``OPENSSL_NO_SSL2`` flag." msgstr "" -#: ../Doc/library/ssl.rst:650 +#: ../Doc/library/ssl.rst:658 msgid "SSL version 2 is insecure. Its use is highly discouraged." msgstr "" -#: ../Doc/library/ssl.rst:654 +#: ../Doc/library/ssl.rst:662 msgid "OpenSSL has removed support for SSLv2." msgstr "" -#: ../Doc/library/ssl.rst:658 +#: ../Doc/library/ssl.rst:666 msgid "Selects SSL version 3 as the channel encryption protocol." msgstr "" -#: ../Doc/library/ssl.rst:660 +#: ../Doc/library/ssl.rst:668 msgid "" "This protocol is not be available if OpenSSL is compiled with the " "``OPENSSL_NO_SSLv3`` flag." msgstr "" -#: ../Doc/library/ssl.rst:665 +#: ../Doc/library/ssl.rst:673 msgid "SSL version 3 is insecure. Its use is highly discouraged." msgstr "" -#: ../Doc/library/ssl.rst:669 ../Doc/library/ssl.rst:678 -#: ../Doc/library/ssl.rst:690 ../Doc/library/ssl.rst:703 +#: ../Doc/library/ssl.rst:677 ../Doc/library/ssl.rst:686 +#: ../Doc/library/ssl.rst:698 ../Doc/library/ssl.rst:711 msgid "" "OpenSSL has deprecated all version specific protocols. Use the default " "protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead." msgstr "" -#: ../Doc/library/ssl.rst:674 +#: ../Doc/library/ssl.rst:682 msgid "Selects TLS version 1.0 as the channel encryption protocol." msgstr "" -#: ../Doc/library/ssl.rst:683 +#: ../Doc/library/ssl.rst:691 msgid "" "Selects TLS version 1.1 as the channel encryption protocol. Available only " "with openssl version 1.0.1+." msgstr "" -#: ../Doc/library/ssl.rst:695 +#: ../Doc/library/ssl.rst:703 msgid "" "Selects TLS version 1.2 as the channel encryption protocol. This is the most " "modern version, and probably the best choice for maximum protection, if both " "sides can speak it. Available only with openssl version 1.0.1+." msgstr "" -#: ../Doc/library/ssl.rst:708 +#: ../Doc/library/ssl.rst:716 msgid "" "Enables workarounds for various bugs present in other SSL implementations. " "This option is set by default. It does not necessarily set the same flags " "as OpenSSL's ``SSL_OP_ALL`` constant." msgstr "" -#: ../Doc/library/ssl.rst:716 +#: ../Doc/library/ssl.rst:724 msgid "" "Prevents an SSLv2 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv2 as " "the protocol version." msgstr "" -#: ../Doc/library/ssl.rst:724 +#: ../Doc/library/ssl.rst:732 msgid "SSLv2 is deprecated" msgstr "" -#: ../Doc/library/ssl.rst:729 +#: ../Doc/library/ssl.rst:737 msgid "" "Prevents an SSLv3 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv3 as " "the protocol version." msgstr "" -#: ../Doc/library/ssl.rst:737 +#: ../Doc/library/ssl.rst:745 msgid "SSLv3 is deprecated" msgstr "" -#: ../Doc/library/ssl.rst:741 +#: ../Doc/library/ssl.rst:749 msgid "" "Prevents a TLSv1 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1 as " "the protocol version." msgstr "" -#: ../Doc/library/ssl.rst:749 +#: ../Doc/library/ssl.rst:757 msgid "" "Prevents a TLSv1.1 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.1 as " "the protocol version. Available only with openssl version 1.0.1+." msgstr "" -#: ../Doc/library/ssl.rst:757 +#: ../Doc/library/ssl.rst:765 msgid "" "Prevents a TLSv1.2 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.2 as " "the protocol version. Available only with openssl version 1.0.1+." msgstr "" -#: ../Doc/library/ssl.rst:765 +#: ../Doc/library/ssl.rst:773 +msgid "" +"Prevents a TLSv1.3 connection. This option is only applicable in conjunction " +"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.3 as " +"the protocol version. TLS 1.3 is available with OpenSSL 1.1.1 or later. When " +"Python has been compiled against an older version of OpenSSL, the flag " +"defaults to *0*." +msgstr "" + +#: ../Doc/library/ssl.rst:783 msgid "" "Use the server's cipher ordering preference, rather than the client's. This " "option has no effect on client sockets and SSLv2 server sockets." msgstr "" -#: ../Doc/library/ssl.rst:772 +#: ../Doc/library/ssl.rst:790 msgid "" "Prevents re-use of the same DH key for distinct SSL sessions. This improves " "forward secrecy but requires more computational resources. This option only " "applies to server sockets." msgstr "" -#: ../Doc/library/ssl.rst:780 +#: ../Doc/library/ssl.rst:798 msgid "" "Prevents re-use of the same ECDH key for distinct SSL sessions. This " "improves forward secrecy but requires more computational resources. This " "option only applies to server sockets." msgstr "" -#: ../Doc/library/ssl.rst:788 +#: ../Doc/library/ssl.rst:806 msgid "" "Disable compression on the SSL channel. This is useful if the application " "protocol supports its own compression scheme." msgstr "" -#: ../Doc/library/ssl.rst:791 +#: ../Doc/library/ssl.rst:809 msgid "This option is only available with OpenSSL 1.0.0 and later." msgstr "" -#: ../Doc/library/ssl.rst:797 +#: ../Doc/library/ssl.rst:815 msgid ":class:`enum.IntFlag` collection of OP_* constants." msgstr "" -#: ../Doc/library/ssl.rst:801 +#: ../Doc/library/ssl.rst:819 msgid "Prevent client side from requesting a session ticket." msgstr "" -#: ../Doc/library/ssl.rst:807 +#: ../Doc/library/ssl.rst:825 msgid "" "Whether the OpenSSL library has built-in support for the *Application-Layer " "Protocol Negotiation* TLS extension as described in :rfc:`7301`." msgstr "" -#: ../Doc/library/ssl.rst:814 +#: ../Doc/library/ssl.rst:832 msgid "" "Whether the OpenSSL library has built-in support for Elliptic Curve-based " "Diffie-Hellman key exchange. This should be true unless the feature was " "explicitly disabled by the distributor." msgstr "" -#: ../Doc/library/ssl.rst:822 +#: ../Doc/library/ssl.rst:840 msgid "" "Whether the OpenSSL library has built-in support for the *Server Name " "Indication* extension (as defined in :rfc:`6066`)." msgstr "" -#: ../Doc/library/ssl.rst:829 +#: ../Doc/library/ssl.rst:847 msgid "" "Whether the OpenSSL library has built-in support for *Next Protocol " "Negotiation* as described in the `NPN draft specification `." msgstr "" -#: ../Doc/library/ssl.rst:950 +#: ../Doc/library/ssl.rst:974 msgid "" "Usually, :class:`SSLSocket` are not created directly, but using the :meth:" "`SSLContext.wrap_socket` method." msgstr "" -#: ../Doc/library/ssl.rst:953 +#: ../Doc/library/ssl.rst:977 msgid "The :meth:`sendfile` method was added." msgstr "" -#: ../Doc/library/ssl.rst:956 +#: ../Doc/library/ssl.rst:980 msgid "" "The :meth:`shutdown` does not reset the socket timeout each time bytes are " "received or sent. The socket timeout is now to maximum total duration of the " "shutdown." msgstr "" -#: ../Doc/library/ssl.rst:961 +#: ../Doc/library/ssl.rst:985 msgid "" "It is deprecated to create a :class:`SSLSocket` instance directly, use :meth:" "`SSLContext.wrap_socket` to wrap a socket." msgstr "" -#: ../Doc/library/ssl.rst:966 +#: ../Doc/library/ssl.rst:990 msgid "SSL sockets also have the following additional methods and attributes:" msgstr "" -#: ../Doc/library/ssl.rst:970 +#: ../Doc/library/ssl.rst:994 msgid "" "Read up to *len* bytes of data from the SSL socket and return the result as " "a ``bytes`` instance. If *buffer* is specified, then read into the buffer " "instead, and return the number of bytes read." msgstr "" -#: ../Doc/library/ssl.rst:974 +#: ../Doc/library/ssl.rst:998 msgid "" "Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is :" "ref:`non-blocking ` and the read would block." msgstr "" -#: ../Doc/library/ssl.rst:977 +#: ../Doc/library/ssl.rst:1001 msgid "" "As at any time a re-negotiation is possible, a call to :meth:`read` can also " "cause write operations." msgstr "" -#: ../Doc/library/ssl.rst:980 +#: ../Doc/library/ssl.rst:1004 msgid "" "The socket timeout is no more reset each time bytes are received or sent. " "The socket timeout is now to maximum total duration to read up to *len* " "bytes." msgstr "" -#: ../Doc/library/ssl.rst:985 +#: ../Doc/library/ssl.rst:1009 msgid "Use :meth:`~SSLSocket.recv` instead of :meth:`~SSLSocket.read`." msgstr "" -#: ../Doc/library/ssl.rst:990 +#: ../Doc/library/ssl.rst:1014 msgid "" "Write *buf* to the SSL socket and return the number of bytes written. The " "*buf* argument must be an object supporting the buffer interface." msgstr "" -#: ../Doc/library/ssl.rst:993 +#: ../Doc/library/ssl.rst:1017 msgid "" "Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is :" "ref:`non-blocking ` and the write would block." msgstr "" -#: ../Doc/library/ssl.rst:996 +#: ../Doc/library/ssl.rst:1020 msgid "" "As at any time a re-negotiation is possible, a call to :meth:`write` can " "also cause read operations." msgstr "" -#: ../Doc/library/ssl.rst:999 +#: ../Doc/library/ssl.rst:1023 msgid "" "The socket timeout is no more reset each time bytes are received or sent. " "The socket timeout is now to maximum total duration to write *buf*." msgstr "" -#: ../Doc/library/ssl.rst:1003 +#: ../Doc/library/ssl.rst:1027 msgid "Use :meth:`~SSLSocket.send` instead of :meth:`~SSLSocket.write`." msgstr "" -#: ../Doc/library/ssl.rst:1008 +#: ../Doc/library/ssl.rst:1032 msgid "" "The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the low-" "level methods that read and write unencrypted, application-level data and " @@ -1217,37 +1244,37 @@ msgid "" "unwrap` was not called." msgstr "" -#: ../Doc/library/ssl.rst:1014 +#: ../Doc/library/ssl.rst:1038 msgid "" "Normally you should use the socket API methods like :meth:`~socket.socket." "recv` and :meth:`~socket.socket.send` instead of these methods." msgstr "" -#: ../Doc/library/ssl.rst:1020 +#: ../Doc/library/ssl.rst:1044 msgid "Perform the SSL setup handshake." msgstr "" -#: ../Doc/library/ssl.rst:1022 +#: ../Doc/library/ssl.rst:1046 msgid "" "The handshake method also performs :func:`match_hostname` when the :attr:" "`~SSLContext.check_hostname` attribute of the socket's :attr:`~SSLSocket." "context` is true." msgstr "" -#: ../Doc/library/ssl.rst:1027 +#: ../Doc/library/ssl.rst:1051 msgid "" "The socket timeout is no more reset each time bytes are received or sent. " "The socket timeout is now to maximum total duration of the handshake." msgstr "" -#: ../Doc/library/ssl.rst:1033 +#: ../Doc/library/ssl.rst:1057 msgid "" "If there is no certificate for the peer on the other end of the connection, " "return ``None``. If the SSL handshake hasn't been done yet, raise :exc:" "`ValueError`." msgstr "" -#: ../Doc/library/ssl.rst:1037 +#: ../Doc/library/ssl.rst:1061 msgid "" "If the ``binary_form`` parameter is :const:`False`, and a certificate was " "received from the peer, this method returns a :class:`dict` instance. If " @@ -1259,7 +1286,7 @@ msgid "" "also be a ``subjectAltName`` key in the dictionary." msgstr "" -#: ../Doc/library/ssl.rst:1046 +#: ../Doc/library/ssl.rst:1070 msgid "" "The ``subject`` and ``issuer`` fields are tuples containing the sequence of " "relative distinguished names (RDNs) given in the certificate's data " @@ -1267,13 +1294,13 @@ msgid "" "value pairs. Here is a real-world example::" msgstr "" -#: ../Doc/library/ssl.rst:1072 +#: ../Doc/library/ssl.rst:1096 msgid "" "To validate a certificate for a particular service, you can use the :func:" "`match_hostname` function." msgstr "" -#: ../Doc/library/ssl.rst:1075 +#: ../Doc/library/ssl.rst:1099 msgid "" "If the ``binary_form`` parameter is :const:`True`, and a certificate was " "provided, this method returns the DER-encoded form of the entire certificate " @@ -1282,13 +1309,13 @@ msgid "" "socket's role:" msgstr "" -#: ../Doc/library/ssl.rst:1081 +#: ../Doc/library/ssl.rst:1105 msgid "" "for a client SSL socket, the server will always provide a certificate, " "regardless of whether validation was required;" msgstr "" -#: ../Doc/library/ssl.rst:1084 +#: ../Doc/library/ssl.rst:1108 msgid "" "for a server SSL socket, the client will only provide a certificate when " "requested by the server; therefore :meth:`getpeercert` will return :const:" @@ -1296,20 +1323,20 @@ msgid "" "or :const:`CERT_REQUIRED`)." msgstr "" -#: ../Doc/library/ssl.rst:1089 +#: ../Doc/library/ssl.rst:1113 msgid "" "The returned dictionary includes additional items such as ``issuer`` and " "``notBefore``." msgstr "" -#: ../Doc/library/ssl.rst:1093 +#: ../Doc/library/ssl.rst:1117 msgid "" ":exc:`ValueError` is raised when the handshake isn't done. The returned " "dictionary includes additional X509v3 extension items such as " "``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs." msgstr "" -#: ../Doc/library/ssl.rst:1100 +#: ../Doc/library/ssl.rst:1124 msgid "" "Returns a three-value tuple containing the name of the cipher being used, " "the version of the SSL protocol that defines its use, and the number of " @@ -1317,7 +1344,7 @@ msgid "" "``None``." msgstr "" -#: ../Doc/library/ssl.rst:1106 +#: ../Doc/library/ssl.rst:1130 msgid "" "Return the list of ciphers shared by the client during the handshake. Each " "entry of the returned list is a three-value tuple containing the name of the " @@ -1327,25 +1354,25 @@ msgid "" "socket." msgstr "" -#: ../Doc/library/ssl.rst:1117 +#: ../Doc/library/ssl.rst:1141 msgid "" "Return the compression algorithm being used as a string, or ``None`` if the " "connection isn't compressed." msgstr "" -#: ../Doc/library/ssl.rst:1120 +#: ../Doc/library/ssl.rst:1144 msgid "" "If the higher-level protocol supports its own compression mechanism, you can " "use :data:`OP_NO_COMPRESSION` to disable SSL-level compression." msgstr "" -#: ../Doc/library/ssl.rst:1127 +#: ../Doc/library/ssl.rst:1151 msgid "" "Get channel binding data for current connection, as a bytes object. Returns " "``None`` if not connected or the handshake has not been completed." msgstr "" -#: ../Doc/library/ssl.rst:1130 +#: ../Doc/library/ssl.rst:1154 msgid "" "The *cb_type* parameter allow selection of the desired channel binding type. " "Valid channel binding types are listed in the :data:`CHANNEL_BINDING_TYPES` " @@ -1354,7 +1381,7 @@ msgid "" "channel binding type is requested." msgstr "" -#: ../Doc/library/ssl.rst:1140 +#: ../Doc/library/ssl.rst:1164 msgid "" "Return the protocol that was selected during the TLS handshake. If :meth:" "`SSLContext.set_alpn_protocols` was not called, if the other party does not " @@ -1362,7 +1389,7 @@ msgid "" "protocols, or if the handshake has not happened yet, ``None`` is returned." msgstr "" -#: ../Doc/library/ssl.rst:1150 +#: ../Doc/library/ssl.rst:1174 msgid "" "Return the higher-level protocol that was selected during the TLS/SSL " "handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or if the " @@ -1370,7 +1397,7 @@ msgid "" "this will return ``None``." msgstr "" -#: ../Doc/library/ssl.rst:1159 +#: ../Doc/library/ssl.rst:1183 msgid "" "Performs the SSL shutdown handshake, which removes the TLS layer from the " "underlying socket, and returns the underlying socket object. This can be " @@ -1379,7 +1406,7 @@ msgid "" "other side of the connection, rather than the original socket." msgstr "" -#: ../Doc/library/ssl.rst:1167 +#: ../Doc/library/ssl.rst:1191 msgid "" "Return the actual SSL protocol version negotiated by the connection as a " "string, or ``None`` is no secure connection is established. As of this " @@ -1388,13 +1415,13 @@ msgid "" "may define more return values." msgstr "" -#: ../Doc/library/ssl.rst:1177 +#: ../Doc/library/ssl.rst:1201 msgid "" "Returns the number of already decrypted bytes available for read, pending on " "the connection." msgstr "" -#: ../Doc/library/ssl.rst:1182 +#: ../Doc/library/ssl.rst:1206 msgid "" "The :class:`SSLContext` object this SSL socket is tied to. If the SSL " "socket was created using the top-level :func:`wrap_socket` function (rather " @@ -1402,19 +1429,19 @@ msgid "" "created for this SSL socket." msgstr "" -#: ../Doc/library/ssl.rst:1191 +#: ../Doc/library/ssl.rst:1215 msgid "" "A boolean which is ``True`` for server-side sockets and ``False`` for client-" "side sockets." msgstr "" -#: ../Doc/library/ssl.rst:1198 +#: ../Doc/library/ssl.rst:1222 msgid "" "Hostname of the server: :class:`str` type, or ``None`` for server-side " "socket or if the hostname was not specified in the constructor." msgstr "" -#: ../Doc/library/ssl.rst:1205 +#: ../Doc/library/ssl.rst:1229 msgid "" "The :class:`SSLSession` for this SSL connection. The session is available " "for client and server side sockets after the TLS handshake has been " @@ -1422,11 +1449,11 @@ msgid "" "`~SSLSocket.do_handshake` has been called to reuse a session." msgstr "" -#: ../Doc/library/ssl.rst:1218 +#: ../Doc/library/ssl.rst:1242 msgid "SSL Contexts" msgstr "" -#: ../Doc/library/ssl.rst:1222 +#: ../Doc/library/ssl.rst:1246 msgid "" "An SSL context holds various data longer-lived than single SSL connections, " "such as SSL configuration options, certificate(s) and private key(s). It " @@ -1434,20 +1461,20 @@ msgid "" "speed up repeated connections from the same clients." msgstr "" -#: ../Doc/library/ssl.rst:1229 +#: ../Doc/library/ssl.rst:1253 msgid "" "Create a new SSL context. You may pass *protocol* which must be one of the " "``PROTOCOL_*`` constants defined in this module. :data:`PROTOCOL_TLS` is " "currently recommended for maximum interoperability and default value." msgstr "" -#: ../Doc/library/ssl.rst:1235 +#: ../Doc/library/ssl.rst:1259 msgid "" ":func:`create_default_context` lets the :mod:`ssl` module choose security " "settings for a given purpose." msgstr "" -#: ../Doc/library/ssl.rst:1240 +#: ../Doc/library/ssl.rst:1264 msgid "" "The context is created with secure default values. The options :data:" "`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`, :data:" @@ -1458,22 +1485,22 @@ msgid "" "for :data:`PROTOCOL_SSLv2`)." msgstr "" -#: ../Doc/library/ssl.rst:1250 +#: ../Doc/library/ssl.rst:1274 msgid ":class:`SSLContext` objects have the following methods and attributes:" msgstr "" -#: ../Doc/library/ssl.rst:1254 +#: ../Doc/library/ssl.rst:1278 msgid "" "Get statistics about quantities of loaded X.509 certificates, count of X.509 " "certificates flagged as CA certificates and certificate revocation lists as " "dictionary." msgstr "" -#: ../Doc/library/ssl.rst:1258 +#: ../Doc/library/ssl.rst:1282 msgid "Example for a context with one CA cert and one other cert::" msgstr "" -#: ../Doc/library/ssl.rst:1268 +#: ../Doc/library/ssl.rst:1292 msgid "" "Load a private key and the corresponding certificate. The *certfile* string " "must be the path to a single file in PEM format containing the certificate " @@ -1485,7 +1512,7 @@ msgid "" "*certfile*." msgstr "" -#: ../Doc/library/ssl.rst:1277 +#: ../Doc/library/ssl.rst:1301 msgid "" "The *password* argument may be a function to call to get the password for " "decrypting the private key. It will only be called if the private key is " @@ -1497,24 +1524,24 @@ msgid "" "encrypted and no password is needed." msgstr "" -#: ../Doc/library/ssl.rst:1286 +#: ../Doc/library/ssl.rst:1310 msgid "" "If the *password* argument is not specified and a password is required, " "OpenSSL's built-in password prompting mechanism will be used to " "interactively prompt the user for a password." msgstr "" -#: ../Doc/library/ssl.rst:1290 +#: ../Doc/library/ssl.rst:1314 msgid "" "An :class:`SSLError` is raised if the private key doesn't match with the " "certificate." msgstr "" -#: ../Doc/library/ssl.rst:1293 +#: ../Doc/library/ssl.rst:1317 msgid "New optional argument *password*." msgstr "" -#: ../Doc/library/ssl.rst:1298 +#: ../Doc/library/ssl.rst:1322 msgid "" "Load a set of default \"certification authority\" (CA) certificates from " "default locations. On Windows it loads CA certs from the ``CA`` and ``ROOT`` " @@ -1523,7 +1550,7 @@ msgid "" "from other locations, too." msgstr "" -#: ../Doc/library/ssl.rst:1304 +#: ../Doc/library/ssl.rst:1328 msgid "" "The *purpose* flag specifies what kind of CA certificates are loaded. The " "default settings :data:`Purpose.SERVER_AUTH` loads certificates, that are " @@ -1532,35 +1559,35 @@ msgid "" "certificate verification on the server side." msgstr "" -#: ../Doc/library/ssl.rst:1314 +#: ../Doc/library/ssl.rst:1338 msgid "" "Load a set of \"certification authority\" (CA) certificates used to validate " "other peers' certificates when :data:`verify_mode` is other than :data:" "`CERT_NONE`. At least one of *cafile* or *capath* must be specified." msgstr "" -#: ../Doc/library/ssl.rst:1318 +#: ../Doc/library/ssl.rst:1342 msgid "" "This method can also load certification revocation lists (CRLs) in PEM or " "DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags` " "must be configured properly." msgstr "" -#: ../Doc/library/ssl.rst:1322 +#: ../Doc/library/ssl.rst:1346 msgid "" "The *cafile* string, if present, is the path to a file of concatenated CA " "certificates in PEM format. See the discussion of :ref:`ssl-certificates` " "for more information about how to arrange the certificates in this file." msgstr "" -#: ../Doc/library/ssl.rst:1327 +#: ../Doc/library/ssl.rst:1351 msgid "" "The *capath* string, if present, is the path to a directory containing " "several CA certificates in PEM format, following an `OpenSSL specific layout " "`_." msgstr "" -#: ../Doc/library/ssl.rst:1332 +#: ../Doc/library/ssl.rst:1356 msgid "" "The *cadata* object, if present, is either an ASCII string of one or more " "PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded " @@ -1568,11 +1595,11 @@ msgid "" "are ignored but at least one certificate must be present." msgstr "" -#: ../Doc/library/ssl.rst:1337 +#: ../Doc/library/ssl.rst:1361 msgid "New optional argument *cadata*" msgstr "" -#: ../Doc/library/ssl.rst:1342 +#: ../Doc/library/ssl.rst:1366 msgid "" "Get a list of loaded \"certification authority\" (CA) certificates. If the " "``binary_form`` parameter is :const:`False` each list entry is a dict like " @@ -1582,27 +1609,27 @@ msgid "" "a SSL connection." msgstr "" -#: ../Doc/library/ssl.rst:1350 +#: ../Doc/library/ssl.rst:1374 msgid "" "Certificates in a capath directory aren't loaded unless they have been used " "at least once." msgstr "" -#: ../Doc/library/ssl.rst:1357 +#: ../Doc/library/ssl.rst:1381 msgid "" "Get a list of enabled ciphers. The list is in order of cipher priority. See :" "meth:`SSLContext.set_ciphers`." msgstr "" -#: ../Doc/library/ssl.rst:1405 +#: ../Doc/library/ssl.rst:1429 msgid "On OpenSSL 1.1 and newer the cipher dict contains additional fields::" msgstr "" -#: ../Doc/library/ssl.rst:1407 +#: ../Doc/library/ssl.rst:1431 msgid "Availability: OpenSSL 1.0.2+" msgstr "" -#: ../Doc/library/ssl.rst:1413 +#: ../Doc/library/ssl.rst:1437 msgid "" "Load a set of default \"certification authority\" (CA) certificates from a " "filesystem path defined when building the OpenSSL library. Unfortunately, " @@ -1612,7 +1639,7 @@ msgid "" "configured properly." msgstr "" -#: ../Doc/library/ssl.rst:1422 +#: ../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 `_" msgstr "" -#: ../Doc/library/ssl.rst:1546 +#: ../Doc/library/ssl.rst:1570 msgid "Vincent Bernat." msgstr "" -#: ../Doc/library/ssl.rst:1552 +#: ../Doc/library/ssl.rst:1576 msgid "" "Wrap an existing Python socket *sock* and return an :class:`SSLSocket` " "object. *sock* must be a :data:`~socket.SOCK_STREAM` socket; other socket " "types are unsupported." msgstr "" -#: ../Doc/library/ssl.rst:1556 +#: ../Doc/library/ssl.rst:1580 msgid "" "The returned SSL socket is tied to the context, its settings and " "certificates. The parameters *server_side*, *do_handshake_on_connect* and " @@ -1798,7 +1825,7 @@ msgid "" "`wrap_socket` function." msgstr "" -#: ../Doc/library/ssl.rst:1561 +#: ../Doc/library/ssl.rst:1585 msgid "" "On client connections, the optional parameter *server_hostname* specifies " "the hostname of the service which we are connecting to. This allows a " @@ -1807,34 +1834,34 @@ msgid "" "*server_hostname* will raise a :exc:`ValueError` if *server_side* is true." msgstr "" -#: ../Doc/library/ssl.rst:1567 +#: ../Doc/library/ssl.rst:1591 msgid "*session*, see :attr:`~SSLSocket.session`." msgstr "" -#: ../Doc/library/ssl.rst:1569 +#: ../Doc/library/ssl.rst:1593 msgid "" "Always allow a server_hostname to be passed, even if OpenSSL does not have " "SNI." msgstr "" -#: ../Doc/library/ssl.rst:1573 ../Doc/library/ssl.rst:1586 +#: ../Doc/library/ssl.rst:1597 ../Doc/library/ssl.rst:1610 msgid "*session* argument was added." msgstr "" -#: ../Doc/library/ssl.rst:1579 +#: ../Doc/library/ssl.rst:1603 msgid "" "Create a new :class:`SSLObject` instance by wrapping the BIO objects " "*incoming* and *outgoing*. The SSL routines will read input data from the " "incoming BIO and write data to the outgoing BIO." msgstr "" -#: ../Doc/library/ssl.rst:1583 +#: ../Doc/library/ssl.rst:1607 msgid "" "The *server_side*, *server_hostname* and *session* parameters have the same " "meaning as in :meth:`SSLContext.wrap_socket`." msgstr "" -#: ../Doc/library/ssl.rst:1591 +#: ../Doc/library/ssl.rst:1615 msgid "" "Get statistics about the SSL sessions created or managed by this context. A " "dictionary is returned which maps the names of each `piece of information " @@ -1843,7 +1870,7 @@ msgid "" "the session cache since the context was created::" msgstr "" -#: ../Doc/library/ssl.rst:1603 +#: ../Doc/library/ssl.rst:1627 msgid "" "Whether to match the peer cert's hostname with :func:`match_hostname` in :" "meth:`SSLSocket.do_handshake`. The context's :attr:`~SSLContext.verify_mode` " @@ -1852,35 +1879,35 @@ msgid "" "the hostname." msgstr "" -#: ../Doc/library/ssl.rst:1626 +#: ../Doc/library/ssl.rst:1650 msgid "This features requires OpenSSL 0.9.8f or newer." msgstr "" -#: ../Doc/library/ssl.rst:1630 +#: ../Doc/library/ssl.rst:1654 msgid "" "An integer representing the set of SSL options enabled on this context. The " "default value is :data:`OP_ALL`, but you can specify other options such as :" "data:`OP_NO_SSLv2` by ORing them together." msgstr "" -#: ../Doc/library/ssl.rst:1635 +#: ../Doc/library/ssl.rst:1659 msgid "" "With versions of OpenSSL older than 0.9.8m, it is only possible to set " "options, not to clear them. Attempting to clear an option (by resetting the " "corresponding bits) will raise a ``ValueError``." msgstr "" -#: ../Doc/library/ssl.rst:1639 +#: ../Doc/library/ssl.rst:1663 msgid ":attr:`SSLContext.options` returns :class:`Options` flags:" msgstr "" -#: ../Doc/library/ssl.rst:1647 +#: ../Doc/library/ssl.rst:1671 msgid "" "The protocol version chosen when constructing the context. This attribute " "is read-only." msgstr "" -#: ../Doc/library/ssl.rst:1652 +#: ../Doc/library/ssl.rst:1676 msgid "" "The flags for certificate verification operations. You can set flags like :" "data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default OpenSSL does " @@ -1888,26 +1915,26 @@ msgid "" "only with openssl version 0.9.8+." msgstr "" -#: ../Doc/library/ssl.rst:1659 +#: ../Doc/library/ssl.rst:1683 msgid ":attr:`SSLContext.verify_flags` returns :class:`VerifyFlags` flags:" msgstr "" -#: ../Doc/library/ssl.rst:1667 +#: ../Doc/library/ssl.rst:1691 msgid "" "Whether to try to verify other peers' certificates and how to behave if " "verification fails. This attribute must be one of :data:`CERT_NONE`, :data:" "`CERT_OPTIONAL` or :data:`CERT_REQUIRED`." msgstr "" -#: ../Doc/library/ssl.rst:1671 +#: ../Doc/library/ssl.rst:1695 msgid ":attr:`SSLContext.verify_mode` returns :class:`VerifyMode` enum:" msgstr "" -#: ../Doc/library/ssl.rst:1684 +#: ../Doc/library/ssl.rst:1708 msgid "Certificates" msgstr "" -#: ../Doc/library/ssl.rst:1686 +#: ../Doc/library/ssl.rst:1710 msgid "" "Certificates in general are part of a public-key / private-key system. In " "this system, each *principal*, (which may be a machine, or a person, or an " @@ -1918,7 +1945,7 @@ msgid "" "other part, and **only** with the other part." msgstr "" -#: ../Doc/library/ssl.rst:1694 +#: ../Doc/library/ssl.rst:1718 msgid "" "A certificate contains information about two principals. It contains the " "name of a *subject*, and the subject's public key. It also contains a " @@ -1932,7 +1959,7 @@ msgid "" "as two fields, called \"notBefore\" and \"notAfter\"." msgstr "" -#: ../Doc/library/ssl.rst:1704 +#: ../Doc/library/ssl.rst:1728 msgid "" "In the Python use of certificates, a client or server can use a certificate " "to prove who they are. The other side of a network connection can also be " @@ -1945,18 +1972,18 @@ msgid "" "take place." msgstr "" -#: ../Doc/library/ssl.rst:1714 +#: ../Doc/library/ssl.rst:1738 msgid "" "Python uses files to contain certificates. They should be formatted as \"PEM" "\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a header " "line and a footer line::" msgstr "" -#: ../Doc/library/ssl.rst:1723 +#: ../Doc/library/ssl.rst:1747 msgid "Certificate chains" msgstr "" -#: ../Doc/library/ssl.rst:1725 +#: ../Doc/library/ssl.rst:1749 msgid "" "The Python files which contain certificates can contain a sequence of " "certificates, sometimes called a *certificate chain*. This chain should " @@ -1972,11 +1999,11 @@ msgid "" "agency which issued the certification authority's certificate::" msgstr "" -#: ../Doc/library/ssl.rst:1749 +#: ../Doc/library/ssl.rst:1773 msgid "CA certificates" msgstr "" -#: ../Doc/library/ssl.rst:1751 +#: ../Doc/library/ssl.rst:1775 msgid "" "If you are going to require validation of the other side of the connection's " "certificate, you need to provide a \"CA certs\" file, filled with the " @@ -1988,11 +2015,11 @@ msgid "" "create_default_context`." msgstr "" -#: ../Doc/library/ssl.rst:1760 +#: ../Doc/library/ssl.rst:1784 msgid "Combined key and certificate" msgstr "" -#: ../Doc/library/ssl.rst:1762 +#: ../Doc/library/ssl.rst:1786 msgid "" "Often the private key is stored in the same file as the certificate; in this " "case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain` " @@ -2001,11 +2028,11 @@ msgid "" "certificate chain::" msgstr "" -#: ../Doc/library/ssl.rst:1776 +#: ../Doc/library/ssl.rst:1800 msgid "Self-signed certificates" msgstr "" -#: ../Doc/library/ssl.rst:1778 +#: ../Doc/library/ssl.rst:1802 msgid "" "If you are going to create a server that provides SSL-encrypted connection " "services, you will need to acquire a certificate for that service. There " @@ -2015,51 +2042,51 @@ msgid "" "package, using something like the following::" msgstr "" -#: ../Doc/library/ssl.rst:1807 +#: ../Doc/library/ssl.rst:1831 msgid "" "The disadvantage of a self-signed certificate is that it is its own root " "certificate, and no one else will have it in their cache of known (and " "trusted) root certificates." msgstr "" -#: ../Doc/library/ssl.rst:1813 +#: ../Doc/library/ssl.rst:1837 msgid "Examples" msgstr "Exemples" -#: ../Doc/library/ssl.rst:1816 +#: ../Doc/library/ssl.rst:1840 msgid "Testing for SSL support" msgstr "" -#: ../Doc/library/ssl.rst:1818 +#: ../Doc/library/ssl.rst:1842 msgid "" "To test for the presence of SSL support in a Python installation, user code " "should use the following idiom::" msgstr "" -#: ../Doc/library/ssl.rst:1829 +#: ../Doc/library/ssl.rst:1853 msgid "Client-side operation" msgstr "" -#: ../Doc/library/ssl.rst:1831 +#: ../Doc/library/ssl.rst:1855 msgid "" "This example creates a SSL context with the recommended security settings " "for client sockets, including automatic certificate verification::" msgstr "" -#: ../Doc/library/ssl.rst:1836 +#: ../Doc/library/ssl.rst:1860 msgid "" "If you prefer to tune security settings yourself, you might create a context " "from scratch (but beware that you might not get the settings right)::" msgstr "" -#: ../Doc/library/ssl.rst:1845 +#: ../Doc/library/ssl.rst:1869 msgid "" "(this snippet assumes your operating system places a bundle of all CA " "certificates in ``/etc/ssl/certs/ca-bundle.crt``; if not, you'll get an " "error and have to adjust the location)" msgstr "" -#: ../Doc/library/ssl.rst:1849 +#: ../Doc/library/ssl.rst:1873 msgid "" "When you use the context to connect to a server, :const:`CERT_REQUIRED` " "validates the server certificate: it ensures that the server certificate was " @@ -2067,27 +2094,27 @@ msgid "" "correctness::" msgstr "" -#: ../Doc/library/ssl.rst:1858 +#: ../Doc/library/ssl.rst:1882 msgid "You may then fetch the certificate::" msgstr "" -#: ../Doc/library/ssl.rst:1862 +#: ../Doc/library/ssl.rst:1886 msgid "" "Visual inspection shows that the certificate does identify the desired " "service (that is, the HTTPS host ``www.python.org``)::" msgstr "" -#: ../Doc/library/ssl.rst:1905 +#: ../Doc/library/ssl.rst:1929 msgid "" "Now the SSL channel is established and the certificate verified, you can " "proceed to talk with the server::" msgstr "" -#: ../Doc/library/ssl.rst:1932 +#: ../Doc/library/ssl.rst:1956 msgid "Server-side operation" msgstr "" -#: ../Doc/library/ssl.rst:1934 +#: ../Doc/library/ssl.rst:1958 msgid "" "For server operation, typically you'll need to have a server certificate, " "and private key, each in a file. You'll first create a context holding the " @@ -2096,20 +2123,20 @@ msgid "" "start waiting for clients to connect::" msgstr "" -#: ../Doc/library/ssl.rst:1949 +#: ../Doc/library/ssl.rst:1973 msgid "" "When a client connects, you'll call :meth:`accept` on the socket to get the " "new socket from the other end, and use the context's :meth:`SSLContext." "wrap_socket` method to create a server-side SSL socket for the connection::" msgstr "" -#: ../Doc/library/ssl.rst:1962 +#: ../Doc/library/ssl.rst:1986 msgid "" "Then you'll read data from the ``connstream`` and do something with it till " "you are finished with the client (or the client is finished with you)::" msgstr "" -#: ../Doc/library/ssl.rst:1976 +#: ../Doc/library/ssl.rst:2000 msgid "" "And go back to listening for new client connections (of course, a real " "server would probably handle each client connection in a separate thread, or " @@ -2117,18 +2144,18 @@ msgid "" "event loop)." msgstr "" -#: ../Doc/library/ssl.rst:1984 +#: ../Doc/library/ssl.rst:2008 msgid "Notes on non-blocking sockets" msgstr "" -#: ../Doc/library/ssl.rst:1986 +#: ../Doc/library/ssl.rst:2010 msgid "" "SSL sockets behave slightly different than regular sockets in non-blocking " "mode. When working with non-blocking sockets, there are thus several things " "you need to be aware of:" msgstr "" -#: ../Doc/library/ssl.rst:1990 +#: ../Doc/library/ssl.rst:2014 msgid "" "Most :class:`SSLSocket` methods will raise either :exc:`SSLWantWriteError` " "or :exc:`SSLWantReadError` instead of :exc:`BlockingIOError` if an I/O " @@ -2140,13 +2167,13 @@ msgid "" "require a prior *write* to the underlying socket." msgstr "" -#: ../Doc/library/ssl.rst:2002 +#: ../Doc/library/ssl.rst:2026 msgid "" "In earlier Python versions, the :meth:`!SSLSocket.send` method returned zero " "instead of raising :exc:`SSLWantWriteError` or :exc:`SSLWantReadError`." msgstr "" -#: ../Doc/library/ssl.rst:2006 +#: ../Doc/library/ssl.rst:2030 msgid "" "Calling :func:`~select.select` tells you that the OS-level socket can be " "read from (or written to), but it does not imply that there is sufficient " @@ -2156,7 +2183,7 @@ msgid "" "`~select.select`." msgstr "" -#: ../Doc/library/ssl.rst:2013 +#: ../Doc/library/ssl.rst:2037 msgid "" "Conversely, since the SSL layer has its own framing, a SSL socket may still " "have data available for reading without :func:`~select.select` being aware " @@ -2165,13 +2192,13 @@ msgid "" "call if still necessary." msgstr "" -#: ../Doc/library/ssl.rst:2019 +#: ../Doc/library/ssl.rst:2043 msgid "" "(of course, similar provisions apply when using other primitives such as :" "func:`~select.poll`, or those in the :mod:`selectors` module)" msgstr "" -#: ../Doc/library/ssl.rst:2022 +#: ../Doc/library/ssl.rst:2046 msgid "" "The SSL handshake itself will be non-blocking: the :meth:`SSLSocket." "do_handshake` method has to be retried until it returns successfully. Here " @@ -2179,7 +2206,7 @@ msgid "" "readiness::" msgstr "" -#: ../Doc/library/ssl.rst:2038 +#: ../Doc/library/ssl.rst:2062 msgid "" "The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets ` and provides a higher level API. It polls for events using " @@ -2188,26 +2215,26 @@ msgid "" "handshake asynchronously as well." msgstr "" -#: ../Doc/library/ssl.rst:2047 +#: ../Doc/library/ssl.rst:2071 msgid "Memory BIO Support" msgstr "" -#: ../Doc/library/ssl.rst:2051 +#: ../Doc/library/ssl.rst:2075 msgid "" "Ever since the SSL module was introduced in Python 2.6, the :class:" "`SSLSocket` class has provided two related but distinct areas of " "functionality:" msgstr "" -#: ../Doc/library/ssl.rst:2054 +#: ../Doc/library/ssl.rst:2078 msgid "SSL protocol handling" msgstr "" -#: ../Doc/library/ssl.rst:2055 +#: ../Doc/library/ssl.rst:2079 msgid "Network IO" msgstr "" -#: ../Doc/library/ssl.rst:2057 +#: ../Doc/library/ssl.rst:2081 msgid "" "The network IO API is identical to that provided by :class:`socket.socket`, " "from which :class:`SSLSocket` also inherits. This allows an SSL socket to be " @@ -2215,7 +2242,7 @@ msgid "" "add SSL support to an existing application." msgstr "" -#: ../Doc/library/ssl.rst:2062 +#: ../Doc/library/ssl.rst:2086 msgid "" "Combining SSL protocol handling and network IO usually works well, but there " "are some cases where it doesn't. An example is async IO frameworks that want " @@ -2227,7 +2254,7 @@ msgid "" "`SSLObject` is provided." msgstr "" -#: ../Doc/library/ssl.rst:2073 +#: ../Doc/library/ssl.rst:2097 msgid "" "A reduced-scope variant of :class:`SSLSocket` representing an SSL protocol " "instance that does not contain any network IO methods. This class is " @@ -2235,7 +2262,7 @@ msgid "" "for SSL through memory buffers." msgstr "" -#: ../Doc/library/ssl.rst:2078 +#: ../Doc/library/ssl.rst:2102 msgid "" "This class implements an interface on top of a low-level SSL object as " "implemented by OpenSSL. This object captures the state of an SSL connection " @@ -2243,7 +2270,7 @@ msgid "" "separate \"BIO\" objects which are OpenSSL's IO abstraction layer." msgstr "" -#: ../Doc/library/ssl.rst:2083 +#: ../Doc/library/ssl.rst:2107 msgid "" "An :class:`SSLObject` instance can be created using the :meth:`~SSLContext." "wrap_bio` method. This method will create the :class:`SSLObject` instance " @@ -2252,195 +2279,195 @@ msgid "" "pass data the other way around." msgstr "" -#: ../Doc/library/ssl.rst:2089 +#: ../Doc/library/ssl.rst:2113 msgid "The following methods are available:" msgstr "" -#: ../Doc/library/ssl.rst:2091 +#: ../Doc/library/ssl.rst:2115 msgid ":attr:`~SSLSocket.context`" msgstr "" -#: ../Doc/library/ssl.rst:2092 +#: ../Doc/library/ssl.rst:2116 msgid ":attr:`~SSLSocket.server_side`" msgstr "" -#: ../Doc/library/ssl.rst:2093 +#: ../Doc/library/ssl.rst:2117 msgid ":attr:`~SSLSocket.server_hostname`" msgstr "" -#: ../Doc/library/ssl.rst:2094 +#: ../Doc/library/ssl.rst:2118 msgid ":attr:`~SSLSocket.session`" msgstr "" -#: ../Doc/library/ssl.rst:2095 +#: ../Doc/library/ssl.rst:2119 msgid ":attr:`~SSLSocket.session_reused`" msgstr "" -#: ../Doc/library/ssl.rst:2096 +#: ../Doc/library/ssl.rst:2120 msgid ":meth:`~SSLSocket.read`" msgstr "" -#: ../Doc/library/ssl.rst:2097 +#: ../Doc/library/ssl.rst:2121 msgid ":meth:`~SSLSocket.write`" msgstr "" -#: ../Doc/library/ssl.rst:2098 +#: ../Doc/library/ssl.rst:2122 msgid ":meth:`~SSLSocket.getpeercert`" msgstr "" -#: ../Doc/library/ssl.rst:2099 +#: ../Doc/library/ssl.rst:2123 msgid ":meth:`~SSLSocket.selected_npn_protocol`" msgstr "" -#: ../Doc/library/ssl.rst:2100 +#: ../Doc/library/ssl.rst:2124 msgid ":meth:`~SSLSocket.cipher`" msgstr "" -#: ../Doc/library/ssl.rst:2101 +#: ../Doc/library/ssl.rst:2125 msgid ":meth:`~SSLSocket.shared_ciphers`" msgstr "" -#: ../Doc/library/ssl.rst:2102 +#: ../Doc/library/ssl.rst:2126 msgid ":meth:`~SSLSocket.compression`" msgstr "" -#: ../Doc/library/ssl.rst:2103 +#: ../Doc/library/ssl.rst:2127 msgid ":meth:`~SSLSocket.pending`" msgstr "" -#: ../Doc/library/ssl.rst:2104 +#: ../Doc/library/ssl.rst:2128 msgid ":meth:`~SSLSocket.do_handshake`" msgstr "" -#: ../Doc/library/ssl.rst:2105 +#: ../Doc/library/ssl.rst:2129 msgid ":meth:`~SSLSocket.unwrap`" msgstr "" -#: ../Doc/library/ssl.rst:2106 +#: ../Doc/library/ssl.rst:2130 msgid ":meth:`~SSLSocket.get_channel_binding`" msgstr "" -#: ../Doc/library/ssl.rst:2108 +#: ../Doc/library/ssl.rst:2132 msgid "" "When compared to :class:`SSLSocket`, this object lacks the following " "features:" msgstr "" -#: ../Doc/library/ssl.rst:2111 +#: ../Doc/library/ssl.rst:2135 msgid "" "Any form of network IO; ``recv()`` and ``send()`` read and write only to the " "underlying :class:`MemoryBIO` buffers." msgstr "" -#: ../Doc/library/ssl.rst:2114 +#: ../Doc/library/ssl.rst:2138 msgid "" "There is no *do_handshake_on_connect* machinery. You must always manually " "call :meth:`~SSLSocket.do_handshake` to start the handshake." msgstr "" -#: ../Doc/library/ssl.rst:2117 +#: ../Doc/library/ssl.rst:2141 msgid "" "There is no handling of *suppress_ragged_eofs*. All end-of-file conditions " "that are in violation of the protocol are reported via the :exc:" "`SSLEOFError` exception." msgstr "" -#: ../Doc/library/ssl.rst:2121 +#: ../Doc/library/ssl.rst:2145 msgid "" "The method :meth:`~SSLSocket.unwrap` call does not return anything, unlike " "for an SSL socket where it returns the underlying socket." msgstr "" -#: ../Doc/library/ssl.rst:2124 +#: ../Doc/library/ssl.rst:2148 msgid "" "The *server_name_callback* callback passed to :meth:`SSLContext." "set_servername_callback` will get an :class:`SSLObject` instance instead of " "a :class:`SSLSocket` instance as its first parameter." msgstr "" -#: ../Doc/library/ssl.rst:2128 +#: ../Doc/library/ssl.rst:2152 msgid "Some notes related to the use of :class:`SSLObject`:" msgstr "" -#: ../Doc/library/ssl.rst:2130 +#: ../Doc/library/ssl.rst:2154 msgid "" "All IO on an :class:`SSLObject` is :ref:`non-blocking `. " "This means that for example :meth:`~SSLSocket.read` will raise an :exc:" "`SSLWantReadError` if it needs more data than the incoming BIO has available." msgstr "" -#: ../Doc/library/ssl.rst:2135 +#: ../Doc/library/ssl.rst:2159 msgid "" "There is no module-level ``wrap_bio()`` call like there is for :meth:" "`~SSLContext.wrap_socket`. An :class:`SSLObject` is always created via an :" "class:`SSLContext`." msgstr "" -#: ../Doc/library/ssl.rst:2139 +#: ../Doc/library/ssl.rst:2163 msgid "" "An SSLObject communicates with the outside world using memory buffers. The " "class :class:`MemoryBIO` provides a memory buffer that can be used for this " "purpose. It wraps an OpenSSL memory BIO (Basic IO) object:" msgstr "" -#: ../Doc/library/ssl.rst:2145 +#: ../Doc/library/ssl.rst:2169 msgid "" "A memory buffer that can be used to pass data between Python and an SSL " "protocol instance." msgstr "" -#: ../Doc/library/ssl.rst:2150 +#: ../Doc/library/ssl.rst:2174 msgid "Return the number of bytes currently in the memory buffer." msgstr "" -#: ../Doc/library/ssl.rst:2154 +#: ../Doc/library/ssl.rst:2178 msgid "" "A boolean indicating whether the memory BIO is current at the end-of-file " "position." msgstr "" -#: ../Doc/library/ssl.rst:2159 +#: ../Doc/library/ssl.rst:2183 msgid "" "Read up to *n* bytes from the memory buffer. If *n* is not specified or " "negative, all bytes are returned." msgstr "" -#: ../Doc/library/ssl.rst:2164 +#: ../Doc/library/ssl.rst:2188 msgid "" "Write the bytes from *buf* to the memory BIO. The *buf* argument must be an " "object supporting the buffer protocol." msgstr "" -#: ../Doc/library/ssl.rst:2167 +#: ../Doc/library/ssl.rst:2191 msgid "" "The return value is the number of bytes written, which is always equal to " "the length of *buf*." msgstr "" -#: ../Doc/library/ssl.rst:2172 +#: ../Doc/library/ssl.rst:2196 msgid "" "Write an EOF marker to the memory BIO. After this method has been called, it " "is illegal to call :meth:`~MemoryBIO.write`. The attribute :attr:`eof` will " "become true after all data currently in the buffer has been read." msgstr "" -#: ../Doc/library/ssl.rst:2178 +#: ../Doc/library/ssl.rst:2202 msgid "SSL session" msgstr "" -#: ../Doc/library/ssl.rst:2184 +#: ../Doc/library/ssl.rst:2208 msgid "Session object used by :attr:`~SSLSocket.session`." msgstr "" -#: ../Doc/library/ssl.rst:2196 +#: ../Doc/library/ssl.rst:2220 msgid "Security considerations" msgstr "" -#: ../Doc/library/ssl.rst:2199 +#: ../Doc/library/ssl.rst:2223 msgid "Best defaults" msgstr "" -#: ../Doc/library/ssl.rst:2201 +#: ../Doc/library/ssl.rst:2225 msgid "" "For **client use**, if you don't have any special requirements for your " "security policy, it is highly recommended that you use the :func:" @@ -2450,19 +2477,19 @@ msgid "" "settings." msgstr "" -#: ../Doc/library/ssl.rst:2208 +#: ../Doc/library/ssl.rst:2232 msgid "" "For example, here is how you would use the :class:`smtplib.SMTP` class to " "create a trusted, secure connection to a SMTP server::" msgstr "" -#: ../Doc/library/ssl.rst:2217 +#: ../Doc/library/ssl.rst:2241 msgid "" "If a client certificate is needed for the connection, it can be added with :" "meth:`SSLContext.load_cert_chain`." msgstr "" -#: ../Doc/library/ssl.rst:2220 +#: ../Doc/library/ssl.rst:2244 msgid "" "By contrast, if you create the SSL context by calling the :class:" "`SSLContext` constructor yourself, it will not have certificate validation " @@ -2470,15 +2497,15 @@ msgid "" "paragraphs below to achieve a good security level." msgstr "" -#: ../Doc/library/ssl.rst:2226 +#: ../Doc/library/ssl.rst:2250 msgid "Manual settings" msgstr "" -#: ../Doc/library/ssl.rst:2229 +#: ../Doc/library/ssl.rst:2253 msgid "Verifying certificates" msgstr "" -#: ../Doc/library/ssl.rst:2231 +#: ../Doc/library/ssl.rst:2255 msgid "" "When calling the :class:`SSLContext` constructor directly, :const:" "`CERT_NONE` is the default. Since it does not authenticate the other peer, " @@ -2493,7 +2520,7 @@ msgid "" "automatically performed when :attr:`SSLContext.check_hostname` is enabled." msgstr "" -#: ../Doc/library/ssl.rst:2244 +#: ../Doc/library/ssl.rst:2268 msgid "" "In server mode, if you want to authenticate your clients using the SSL layer " "(rather than using a higher-level authentication mechanism), you'll also " @@ -2501,18 +2528,18 @@ msgid "" "certificate." msgstr "" -#: ../Doc/library/ssl.rst:2250 +#: ../Doc/library/ssl.rst:2274 msgid "" "In client mode, :const:`CERT_OPTIONAL` and :const:`CERT_REQUIRED` are " "equivalent unless anonymous ciphers are enabled (they are disabled by " "default)." msgstr "" -#: ../Doc/library/ssl.rst:2255 +#: ../Doc/library/ssl.rst:2279 msgid "Protocol versions" msgstr "" -#: ../Doc/library/ssl.rst:2257 +#: ../Doc/library/ssl.rst:2281 msgid "" "SSL versions 2 and 3 are considered insecure and are therefore dangerous to " "use. If you want maximum compatibility between clients and servers, it is " @@ -2521,7 +2548,7 @@ msgid "" "by default." msgstr "" -#: ../Doc/library/ssl.rst:2268 +#: ../Doc/library/ssl.rst:2292 msgid "" "The SSL context created above will only allow TLSv1.2 and later (if " "supported by your system) connections to a server. :const:" @@ -2529,11 +2556,11 @@ msgid "" "default. You have to load certificates into the context." msgstr "" -#: ../Doc/library/ssl.rst:2275 +#: ../Doc/library/ssl.rst:2299 msgid "Cipher selection" msgstr "" -#: ../Doc/library/ssl.rst:2277 +#: ../Doc/library/ssl.rst:2301 msgid "" "If you have advanced security requirements, fine-tuning of the ciphers " "enabled when negotiating a SSL session is possible through the :meth:" @@ -2546,11 +2573,11 @@ msgid "" "ciphers`` command on your system." msgstr "" -#: ../Doc/library/ssl.rst:2288 +#: ../Doc/library/ssl.rst:2312 msgid "Multi-processing" msgstr "" -#: ../Doc/library/ssl.rst:2290 +#: ../Doc/library/ssl.rst:2314 msgid "" "If using this module as part of a multi-processed application (using, for " "example the :mod:`multiprocessing` or :mod:`concurrent.futures` modules), be " @@ -2561,81 +2588,102 @@ msgid "" "`~ssl.RAND_pseudo_bytes` is sufficient." msgstr "" -#: ../Doc/library/ssl.rst:2302 +#: ../Doc/library/ssl.rst:2326 msgid "Class :class:`socket.socket`" msgstr "" -#: ../Doc/library/ssl.rst:2302 +#: ../Doc/library/ssl.rst:2326 msgid "Documentation of underlying :mod:`socket` class" msgstr "" -#: ../Doc/library/ssl.rst:2305 +#: ../Doc/library/ssl.rst:2329 msgid "" "`SSL/TLS Strong Encryption: An Introduction `_" msgstr "" -#: ../Doc/library/ssl.rst:2305 +#: ../Doc/library/ssl.rst:2329 msgid "Intro from the Apache webserver documentation" msgstr "" -#: ../Doc/library/ssl.rst:2308 +#: ../Doc/library/ssl.rst:2332 msgid "" "`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: " "Certificate-Based Key Management `_" msgstr "" -#: ../Doc/library/ssl.rst:2308 +#: ../Doc/library/ssl.rst:2332 msgid "Steve Kent" msgstr "" -#: ../Doc/library/ssl.rst:2311 +#: ../Doc/library/ssl.rst:2335 msgid "" "`RFC 4086: Randomness Requirements for Security `_" msgstr "" -#: ../Doc/library/ssl.rst:2311 +#: ../Doc/library/ssl.rst:2335 msgid "Donald E., Jeffrey I. Schiller" msgstr "" -#: ../Doc/library/ssl.rst:2314 +#: ../Doc/library/ssl.rst:2338 msgid "" "`RFC 5280: Internet X.509 Public Key Infrastructure Certificate and " "Certificate Revocation List (CRL) Profile `_" msgstr "" -#: ../Doc/library/ssl.rst:2314 +#: ../Doc/library/ssl.rst:2338 msgid "D. Cooper" msgstr "" -#: ../Doc/library/ssl.rst:2317 +#: ../Doc/library/ssl.rst:2341 msgid "" "`RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 `_" msgstr "" -#: ../Doc/library/ssl.rst:2317 +#: ../Doc/library/ssl.rst:2341 msgid "T. Dierks et. al." msgstr "" -#: ../Doc/library/ssl.rst:2320 +#: ../Doc/library/ssl.rst:2344 msgid "" "`RFC 6066: Transport Layer Security (TLS) Extensions `_" msgstr "" -#: ../Doc/library/ssl.rst:2320 +#: ../Doc/library/ssl.rst:2344 msgid "D. Eastlake" msgstr "" -#: ../Doc/library/ssl.rst:2322 +#: ../Doc/library/ssl.rst:2347 msgid "" "`IANA TLS: Transport Layer Security (TLS) Parameters `_" msgstr "" -#: ../Doc/library/ssl.rst:2323 +#: ../Doc/library/ssl.rst:2347 msgid "IANA" msgstr "" + +#: ../Doc/library/ssl.rst:2350 +msgid "" +"`RFC 7525: Recommendations for Secure Use of Transport Layer Security (TLS) " +"and Datagram Transport Layer Security (DTLS) `_" +msgstr "" + +#: ../Doc/library/ssl.rst:2350 +msgid "IETF" +msgstr "" + +#: ../Doc/library/ssl.rst:2352 +msgid "" +"`Mozilla's Server Side TLS recommendations `_" +msgstr "" + +#: ../Doc/library/ssl.rst:2353 +msgid "Mozilla" +msgstr "" diff --git a/library/subprocess.po b/library/subprocess.po index 2401e33c..eb1c0e9f 100644 --- a/library/subprocess.po +++ b/library/subprocess.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-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1247,81 +1247,90 @@ msgid "" msgstr "" #: ../Doc/library/subprocess.rst:1169 -msgid "Return ``(status, output)`` of executing *cmd* in a shell." +msgid "Return ``(exitcode, output)`` of executing *cmd* in a shell." msgstr "" #: ../Doc/library/subprocess.rst:1171 msgid "" "Execute the string *cmd* in a shell with :meth:`Popen.check_output` and " -"return a 2-tuple ``(status, output)``. The locale encoding is used; see the " -"notes on :ref:`frequently-used-arguments` for more details." +"return a 2-tuple ``(exitcode, output)``. The locale encoding is used; see " +"the notes on :ref:`frequently-used-arguments` for more details." msgstr "" #: ../Doc/library/subprocess.rst:1175 msgid "" -"A trailing newline is stripped from the output. The exit status for the " -"command can be interpreted according to the rules for the C function :c:func:" -"`wait`. Example::" +"A trailing newline is stripped from the output. The exit code for the " +"command can be interpreted as the return code of subprocess. Example::" msgstr "" -#: ../Doc/library/subprocess.rst:1186 ../Doc/library/subprocess.rst:1202 +#: ../Doc/library/subprocess.rst:1188 ../Doc/library/subprocess.rst:1207 msgid "Availability: POSIX & Windows" msgstr "" -#: ../Doc/library/subprocess.rst:1188 ../Doc/library/subprocess.rst:1204 -msgid "Windows support added" +#: ../Doc/library/subprocess.rst:1190 +msgid "Windows support was added." msgstr "" -#: ../Doc/library/subprocess.rst:1194 +#: ../Doc/library/subprocess.rst:1193 +msgid "" +"The function now returns (exitcode, output) instead of (status, output) as " +"it did in Python 3.3.3 and earlier. See :func:`WEXITSTATUS`." +msgstr "" + +#: ../Doc/library/subprocess.rst:1199 msgid "Return output (stdout and stderr) of executing *cmd* in a shell." msgstr "" -#: ../Doc/library/subprocess.rst:1196 +#: ../Doc/library/subprocess.rst:1201 msgid "" "Like :func:`getstatusoutput`, except the exit status is ignored and the " "return value is a string containing the command's output. Example::" msgstr "" #: ../Doc/library/subprocess.rst:1209 +msgid "Windows support added" +msgstr "" + +#: ../Doc/library/subprocess.rst:1214 msgid "Notes" msgstr "Notes" -#: ../Doc/library/subprocess.rst:1214 +#: ../Doc/library/subprocess.rst:1219 msgid "Converting an argument sequence to a string on Windows" msgstr "" -#: ../Doc/library/subprocess.rst:1216 +#: ../Doc/library/subprocess.rst:1221 msgid "" "On Windows, an *args* sequence is converted to a string that can be parsed " "using the following rules (which correspond to the rules used by the MS C " "runtime):" msgstr "" -#: ../Doc/library/subprocess.rst:1220 +#: ../Doc/library/subprocess.rst:1225 msgid "" "Arguments are delimited by white space, which is either a space or a tab." msgstr "" -#: ../Doc/library/subprocess.rst:1223 +#: ../Doc/library/subprocess.rst:1228 msgid "" "A string surrounded by double quotation marks is interpreted as a single " "argument, regardless of white space contained within. A quoted string can " "be embedded in an argument." msgstr "" -#: ../Doc/library/subprocess.rst:1228 +#: ../Doc/library/subprocess.rst:1233 msgid "" "A double quotation mark preceded by a backslash is interpreted as a literal " "double quotation mark." msgstr "" -#: ../Doc/library/subprocess.rst:1231 +#: ../Doc/library/subprocess.rst:1236 msgid "" "Backslashes are interpreted literally, unless they immediately precede a " "double quotation mark." msgstr "" -#: ../Doc/library/subprocess.rst:1234 +#: ../Doc/library/subprocess.rst:1239 msgid "" "If backslashes immediately precede a double quotation mark, every pair of " "backslashes is interpreted as a literal backslash. If the number of " @@ -1329,10 +1338,10 @@ msgid "" "mark as described in rule 3." msgstr "" -#: ../Doc/library/subprocess.rst:1243 +#: ../Doc/library/subprocess.rst:1248 msgid ":mod:`shlex`" msgstr "" -#: ../Doc/library/subprocess.rst:1244 +#: ../Doc/library/subprocess.rst:1249 msgid "Module which provides function to parse and escape command lines." msgstr "" diff --git a/reference/import.po b/reference/import.po index 256fd6c2..eabcda3f 100644 --- a/reference/import.po +++ b/reference/import.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 13:21+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1271,9 +1271,9 @@ msgstr "" #: ../Doc/reference/import.rst:966 msgid "" "The import machinery has evolved considerably since Python's early days. " -"The original `specification for packages `_ is still available to read, although some details " -"have changed since the writing of that document." +"The original `specification for packages `_ is still available to read, although some details have changed " +"since the writing of that document." msgstr "" #: ../Doc/reference/import.rst:971 diff --git a/sphinx.po b/sphinx.po index 3b908722..55c90162 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-08-29 14:32+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: 2017-05-16 13:58+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -17,17 +17,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.11\n" -#: ../Doc/tools/templates/customsourcelink.html:3 -msgid "This Page" -msgstr "Cette Page" - -#: ../Doc/tools/templates/customsourcelink.html:5 -msgid "Report a Bug" -msgstr "Rapporter un bug" - -#: ../Doc/tools/templates/customsourcelink.html:8 -msgid "Show Source" -msgstr "Voir la source" +#: ../Doc/tools/templates/dummy.html:6 +msgid "CPython implementation detail:" +msgstr "Particularité de l'implémentation CPython :" #: ../Doc/tools/templates/indexsidebar.html:1 msgid "Download" @@ -77,9 +69,17 @@ msgstr "Liste de Livres" msgid "Audio/Visual Talks" msgstr "Discours audiovisuels" -#: ../Doc/tools/templates/dummy.html:6 -msgid "CPython implementation detail:" -msgstr "Particularité de l'implémentation CPython :" +#: ../Doc/tools/templates/customsourcelink.html:3 +msgid "This Page" +msgstr "Cette Page" + +#: ../Doc/tools/templates/customsourcelink.html:5 +msgid "Report a Bug" +msgstr "Rapporter un bug" + +#: ../Doc/tools/templates/customsourcelink.html:8 +msgid "Show Source" +msgstr "Voir la source" #: ../Doc/tools/templates/indexcontent.html:8 msgid "Welcome! This is the documentation for Python %(release)s." diff --git a/using/unix.po b/using/unix.po index faf7041e..7c35d7b5 100644 --- a/using/unix.po +++ b/using/unix.po @@ -8,7 +8,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-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,8 +113,8 @@ msgstr "" msgid "" "If you want to compile CPython yourself, first thing you should do is get " "the `source `_. You can download " -"either the latest release's source or just grab a fresh `clone `_. (If you want to " +"either the latest release's source or just grab a fresh `clone `_. (If you want to " "contribute patches, you will need a clone.)" msgstr "" diff --git a/using/windows.po b/using/windows.po index 4f0b3715..fb35e3f6 100644 --- a/using/windows.po +++ b/using/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-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1490,7 +1490,7 @@ msgid "" "If you want to compile CPython yourself, first thing you should do is get " "the `source `_. You can download " "either the latest release's source or just grab a fresh `checkout `_." +"devguide.python.org/setup/#getting-the-source-code>`_." msgstr "" #: ../Doc/using/windows.rst:901 diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index f03d1577..55c80e2a 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-05-27 19:40+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: 2017-08-10 00:53+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -274,8 +274,7 @@ msgid "" msgstr "" #: ../Doc/whatsnew/2.6.rst:236 -msgid "" -"`Documenting Python `__" +msgid "`Documenting Python `__" msgstr "" #: ../Doc/whatsnew/2.6.rst:236 diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index abff2ab7..2fdf9b0e 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-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2662,11 +2662,10 @@ msgstr "" #: ../Doc/whatsnew/3.4.rst:1962 msgid "" -"A new ``make`` target `coverage-report `_ will build " -"python, run the test suite, and generate an HTML coverage report for the C " -"codebase using ``gcov`` and `lcov `_." +"A new ``make`` target `coverage-report `_ will build python, run " +"the test suite, and generate an HTML coverage report for the C codebase " +"using ``gcov`` and `lcov `_." msgstr "" #: ../Doc/whatsnew/3.4.rst:1968 @@ -2991,8 +2990,8 @@ msgstr "" #: ../Doc/whatsnew/3.4.rst:2178 msgid "" "The unmaintained ``Misc/TextMate`` and ``Misc/vim`` directories have been " -"removed (see the `devguide `_ for " -"suggestions on what to use instead)." +"removed (see the `devguide `_ for suggestions " +"on what to use instead)." msgstr "" #: ../Doc/whatsnew/3.4.rst:2182 diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index c6b83eec..65428afa 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-08-10 00:49+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: 2017-05-27 14:24+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -32,57 +32,57 @@ msgstr "" #: ../Doc/whatsnew/3.6.rst:47 msgid "" "This article explains the new features in Python 3.6, compared to 3.5. " -"Python 3.6 was released on December 23, 2016.  See the `changelog `_ for a full list of changes." +"Python 3.6 was released on December 23, 2016. For full details, see the :ref:" +"`changelog `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:54 +#: ../Doc/whatsnew/3.6.rst:53 msgid ":pep:`494` - Python 3.6 Release Schedule" msgstr "" -#: ../Doc/whatsnew/3.6.rst:58 +#: ../Doc/whatsnew/3.6.rst:57 msgid "Summary -- Release highlights" msgstr "" -#: ../Doc/whatsnew/3.6.rst:60 +#: ../Doc/whatsnew/3.6.rst:59 msgid "New syntax features:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:62 +#: ../Doc/whatsnew/3.6.rst:61 msgid ":ref:`PEP 498 `, formatted string literals." msgstr "" -#: ../Doc/whatsnew/3.6.rst:64 +#: ../Doc/whatsnew/3.6.rst:63 msgid ":ref:`PEP 515 `, underscores in numeric literals." msgstr "" -#: ../Doc/whatsnew/3.6.rst:66 +#: ../Doc/whatsnew/3.6.rst:65 msgid ":ref:`PEP 526 `, syntax for variable annotations." msgstr "" -#: ../Doc/whatsnew/3.6.rst:68 +#: ../Doc/whatsnew/3.6.rst:67 msgid ":ref:`PEP 525 `, asynchronous generators." msgstr "" -#: ../Doc/whatsnew/3.6.rst:70 +#: ../Doc/whatsnew/3.6.rst:69 msgid ":ref:`PEP 530 `: asynchronous comprehensions." msgstr "" -#: ../Doc/whatsnew/3.6.rst:73 +#: ../Doc/whatsnew/3.6.rst:72 msgid "New library modules:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:75 +#: ../Doc/whatsnew/3.6.rst:74 msgid "" ":mod:`secrets`: :ref:`PEP 506 -- Adding A Secrets Module To The Standard " "Library `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:78 +#: ../Doc/whatsnew/3.6.rst:77 msgid "CPython implementation improvements:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:80 +#: ../Doc/whatsnew/3.6.rst:79 msgid "" "The :ref:`dict ` type has been reimplemented to use a :ref:" "`more compact representation ` based on `a proposal " @@ -92,41 +92,41 @@ msgid "" "Python 3.5." msgstr "" -#: ../Doc/whatsnew/3.6.rst:87 +#: ../Doc/whatsnew/3.6.rst:86 msgid "" "Customization of class creation has been simplified with the :ref:`new " "protocol `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:90 +#: ../Doc/whatsnew/3.6.rst:89 msgid "" "The class attribute definition order is :ref:`now preserved `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:93 +#: ../Doc/whatsnew/3.6.rst:92 msgid "" "The order of elements in ``**kwargs`` now :ref:`corresponds to the order " "` in which keyword arguments were passed to the function." msgstr "" -#: ../Doc/whatsnew/3.6.rst:97 +#: ../Doc/whatsnew/3.6.rst:96 msgid "" "DTrace and SystemTap :ref:`probing support ` has been " "added." msgstr "" -#: ../Doc/whatsnew/3.6.rst:100 +#: ../Doc/whatsnew/3.6.rst:99 msgid "" "The new :ref:`PYTHONMALLOC ` environment variable " "can now be used to debug the interpreter memory allocation and access errors." msgstr "" -#: ../Doc/whatsnew/3.6.rst:105 +#: ../Doc/whatsnew/3.6.rst:104 msgid "Significant improvements in the standard library:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:107 +#: ../Doc/whatsnew/3.6.rst:106 msgid "" "The :mod:`asyncio` module has received new features, significant usability " "and performance improvements, and a fair amount of bug fixes. Starting with " @@ -134,7 +134,7 @@ msgid "" "considered stable." msgstr "" -#: ../Doc/whatsnew/3.6.rst:112 +#: ../Doc/whatsnew/3.6.rst:111 msgid "" "A new :ref:`file system path protocol ` has been " "implemented to support :term:`path-like objects `. All " @@ -142,19 +142,19 @@ msgid "" "the new protocol." msgstr "" -#: ../Doc/whatsnew/3.6.rst:117 +#: ../Doc/whatsnew/3.6.rst:116 msgid "" "The :mod:`datetime` module has gained support for :ref:`Local Time " "Disambiguation `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:120 +#: ../Doc/whatsnew/3.6.rst:119 msgid "" "The :mod:`typing` module received a number of :ref:`improvements `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:123 +#: ../Doc/whatsnew/3.6.rst:122 msgid "" "The :mod:`tracemalloc` module has been significantly reworked and is now " "used to provide better output for :exc:`ResourceWarning` as well as provide " @@ -162,51 +162,51 @@ msgid "" "section ` for more information." msgstr "" -#: ../Doc/whatsnew/3.6.rst:130 +#: ../Doc/whatsnew/3.6.rst:129 msgid "Security improvements:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:132 +#: ../Doc/whatsnew/3.6.rst:131 msgid "" "The new :mod:`secrets` module has been added to simplify the generation of " "cryptographically strong pseudo-random numbers suitable for managing secrets " "such as account authentication, tokens, and similar." msgstr "" -#: ../Doc/whatsnew/3.6.rst:136 ../Doc/whatsnew/3.6.rst:1231 +#: ../Doc/whatsnew/3.6.rst:135 ../Doc/whatsnew/3.6.rst:1230 msgid "" "On Linux, :func:`os.urandom` now blocks until the system urandom entropy " "pool is initialized to increase the security. See the :pep:`524` for the " "rationale." msgstr "" -#: ../Doc/whatsnew/3.6.rst:140 +#: ../Doc/whatsnew/3.6.rst:139 msgid "The :mod:`hashlib` and :mod:`ssl` modules now support OpenSSL 1.1.0." msgstr "" -#: ../Doc/whatsnew/3.6.rst:142 +#: ../Doc/whatsnew/3.6.rst:141 msgid "" "The default settings and feature set of the :mod:`ssl` module have been " "improved." msgstr "" -#: ../Doc/whatsnew/3.6.rst:145 +#: ../Doc/whatsnew/3.6.rst:144 msgid "" "The :mod:`hashlib` module received support for the BLAKE2, SHA-3 and SHAKE " "hash algorithms and the :func:`~hashlib.scrypt` key derivation function." msgstr "" -#: ../Doc/whatsnew/3.6.rst:149 +#: ../Doc/whatsnew/3.6.rst:148 msgid "Windows improvements:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:151 +#: ../Doc/whatsnew/3.6.rst:150 msgid "" ":ref:`PEP 528 ` and :ref:`PEP 529 `, " "Windows filesystem and console encoding changed to UTF-8." msgstr "" -#: ../Doc/whatsnew/3.6.rst:154 +#: ../Doc/whatsnew/3.6.rst:153 msgid "" "The ``py.exe`` launcher, when used interactively, no longer prefers Python 2 " "over Python 3 when the user doesn't specify a version (via command line " @@ -214,42 +214,42 @@ msgid "" "\"python\" refers to Python 2 in that case." msgstr "" -#: ../Doc/whatsnew/3.6.rst:159 +#: ../Doc/whatsnew/3.6.rst:158 msgid "" "``python.exe`` and ``pythonw.exe`` have been marked as long-path aware, " "which means that the 260 character path limit may no longer apply. See :ref:" "`removing the MAX_PATH limitation ` for details." msgstr "" -#: ../Doc/whatsnew/3.6.rst:163 +#: ../Doc/whatsnew/3.6.rst:162 msgid "" "A ``._pth`` file can be added to force isolated mode and fully specify all " "search paths to avoid registry and environment lookup. See :ref:`the " "documentation ` for more information." msgstr "" -#: ../Doc/whatsnew/3.6.rst:167 +#: ../Doc/whatsnew/3.6.rst:166 msgid "" "A ``python36.zip`` file now works as a landmark to infer :envvar:" "`PYTHONHOME`. See :ref:`the documentation ` for more " "information." msgstr "" -#: ../Doc/whatsnew/3.6.rst:176 +#: ../Doc/whatsnew/3.6.rst:175 msgid "New Features" msgstr "Nouvelles fonctionnalités" -#: ../Doc/whatsnew/3.6.rst:181 +#: ../Doc/whatsnew/3.6.rst:180 msgid "PEP 498: Formatted string literals" msgstr "" -#: ../Doc/whatsnew/3.6.rst:183 +#: ../Doc/whatsnew/3.6.rst:182 msgid "" ":pep:`498` introduces a new kind of string literals: *f-strings*, or :ref:" "`formatted string literals `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:186 +#: ../Doc/whatsnew/3.6.rst:185 msgid "" "Formatted string literals are prefixed with ``'f'`` and are similar to the " "format strings accepted by :meth:`str.format`. They contain replacement " @@ -258,37 +258,37 @@ msgid "" "protocol::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:204 +#: ../Doc/whatsnew/3.6.rst:203 msgid ":pep:`498` -- Literal String Interpolation." msgstr "" -#: ../Doc/whatsnew/3.6.rst:204 +#: ../Doc/whatsnew/3.6.rst:203 msgid "PEP written and implemented by Eric V. Smith." msgstr "" -#: ../Doc/whatsnew/3.6.rst:206 +#: ../Doc/whatsnew/3.6.rst:205 msgid ":ref:`Feature documentation `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:212 +#: ../Doc/whatsnew/3.6.rst:211 msgid "PEP 526: Syntax for variable annotations" msgstr "" -#: ../Doc/whatsnew/3.6.rst:214 +#: ../Doc/whatsnew/3.6.rst:213 msgid "" ":pep:`484` introduced the standard for type annotations of function " "parameters, a.k.a. type hints. This PEP adds syntax to Python for annotating " "the types of variables including class variables and instance variables::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:225 +#: ../Doc/whatsnew/3.6.rst:224 msgid "" "Just as for function annotations, the Python interpreter does not attach any " "particular meaning to variable annotations and only stores them in the " "``__annotations__`` attribute of a class or module." msgstr "" -#: ../Doc/whatsnew/3.6.rst:229 +#: ../Doc/whatsnew/3.6.rst:228 msgid "" "In contrast to variable declarations in statically typed languages, the goal " "of annotation syntax is to provide an easy way to specify structured type " @@ -296,39 +296,39 @@ msgid "" "and the ``__annotations__`` attribute." msgstr "" -#: ../Doc/whatsnew/3.6.rst:238 +#: ../Doc/whatsnew/3.6.rst:237 msgid ":pep:`526` -- Syntax for variable annotations." msgstr "" -#: ../Doc/whatsnew/3.6.rst:237 +#: ../Doc/whatsnew/3.6.rst:236 msgid "" "PEP written by Ryan Gonzalez, Philip House, Ivan Levkivskyi, Lisa Roach, and " "Guido van Rossum. Implemented by Ivan Levkivskyi." msgstr "" -#: ../Doc/whatsnew/3.6.rst:240 +#: ../Doc/whatsnew/3.6.rst:239 msgid "" "Tools that use or will use the new syntax: `mypy `_, `pytype `_, PyCharm, etc." msgstr "" -#: ../Doc/whatsnew/3.6.rst:248 +#: ../Doc/whatsnew/3.6.rst:247 msgid "PEP 515: Underscores in Numeric Literals" msgstr "" -#: ../Doc/whatsnew/3.6.rst:250 +#: ../Doc/whatsnew/3.6.rst:249 msgid "" ":pep:`515` adds the ability to use underscores in numeric literals for " "improved readability. For example::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:258 +#: ../Doc/whatsnew/3.6.rst:257 msgid "" "Single underscores are allowed between digits and after any base specifier. " "Leading, trailing, or multiple underscores in a row are not allowed." msgstr "" -#: ../Doc/whatsnew/3.6.rst:262 +#: ../Doc/whatsnew/3.6.rst:261 msgid "" "The :ref:`string formatting ` language also now has support for " "the ``'_'`` option to signal the use of an underscore for a thousands " @@ -337,19 +337,19 @@ msgid "" "``'X'``, underscores will be inserted every 4 digits::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:276 +#: ../Doc/whatsnew/3.6.rst:275 msgid ":pep:`515` -- Underscores in Numeric Literals" msgstr "" -#: ../Doc/whatsnew/3.6.rst:277 +#: ../Doc/whatsnew/3.6.rst:276 msgid "PEP written by Georg Brandl and Serhiy Storchaka." msgstr "" -#: ../Doc/whatsnew/3.6.rst:283 +#: ../Doc/whatsnew/3.6.rst:282 msgid "PEP 525: Asynchronous Generators" msgstr "" -#: ../Doc/whatsnew/3.6.rst:285 +#: ../Doc/whatsnew/3.6.rst:284 msgid "" ":pep:`492` introduced support for native coroutines and ``async`` / " "``await`` syntax to Python 3.5. A notable limitation of the Python 3.5 " @@ -358,50 +358,50 @@ msgid "" "making it possible to define *asynchronous generators*::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:297 +#: ../Doc/whatsnew/3.6.rst:296 msgid "The new syntax allows for faster and more concise code." msgstr "" -#: ../Doc/whatsnew/3.6.rst:301 +#: ../Doc/whatsnew/3.6.rst:300 msgid ":pep:`525` -- Asynchronous Generators" msgstr "" -#: ../Doc/whatsnew/3.6.rst:302 ../Doc/whatsnew/3.6.rst:323 +#: ../Doc/whatsnew/3.6.rst:301 ../Doc/whatsnew/3.6.rst:322 msgid "PEP written and implemented by Yury Selivanov." msgstr "" -#: ../Doc/whatsnew/3.6.rst:308 +#: ../Doc/whatsnew/3.6.rst:307 msgid "PEP 530: Asynchronous Comprehensions" msgstr "" -#: ../Doc/whatsnew/3.6.rst:310 +#: ../Doc/whatsnew/3.6.rst:309 msgid "" ":pep:`530` adds support for using ``async for`` in list, set, dict " "comprehensions and generator expressions::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:315 +#: ../Doc/whatsnew/3.6.rst:314 msgid "" "Additionally, ``await`` expressions are supported in all kinds of " "comprehensions::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:322 +#: ../Doc/whatsnew/3.6.rst:321 msgid ":pep:`530` -- Asynchronous Comprehensions" msgstr "" -#: ../Doc/whatsnew/3.6.rst:329 +#: ../Doc/whatsnew/3.6.rst:328 msgid "PEP 487: Simpler customization of class creation" msgstr "" -#: ../Doc/whatsnew/3.6.rst:331 +#: ../Doc/whatsnew/3.6.rst:330 msgid "" "It is now possible to customize subclass creation without using a metaclass. " "The new ``__init_subclass__`` classmethod will be called on the base class " "whenever a new subclass is created::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:348 +#: ../Doc/whatsnew/3.6.rst:347 msgid "" "In order to allow zero-argument :func:`super` calls to work correctly from :" "meth:`~object.__init_subclass__` implementations, custom metaclasses must " @@ -409,23 +409,23 @@ msgid "" "``type.__new__`` (as described in :ref:`class-object-creation`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:356 ../Doc/whatsnew/3.6.rst:394 +#: ../Doc/whatsnew/3.6.rst:355 ../Doc/whatsnew/3.6.rst:393 msgid ":pep:`487` -- Simpler customization of class creation" msgstr "" -#: ../Doc/whatsnew/3.6.rst:356 ../Doc/whatsnew/3.6.rst:394 +#: ../Doc/whatsnew/3.6.rst:355 ../Doc/whatsnew/3.6.rst:393 msgid "PEP written and implemented by Martin Teichmann." msgstr "" -#: ../Doc/whatsnew/3.6.rst:358 +#: ../Doc/whatsnew/3.6.rst:357 msgid ":ref:`Feature documentation `" msgstr "" -#: ../Doc/whatsnew/3.6.rst:364 +#: ../Doc/whatsnew/3.6.rst:363 msgid "PEP 487: Descriptor Protocol Enhancements" msgstr "" -#: ../Doc/whatsnew/3.6.rst:366 +#: ../Doc/whatsnew/3.6.rst:365 msgid "" ":pep:`487` extends the descriptor protocol to include the new optional :meth:" "`~object.__set_name__` method. Whenever a new class is defined, the new " @@ -436,15 +436,15 @@ msgid "" "in the owner class::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:396 +#: ../Doc/whatsnew/3.6.rst:395 msgid ":ref:`Feature documentation `" msgstr "" -#: ../Doc/whatsnew/3.6.rst:402 +#: ../Doc/whatsnew/3.6.rst:401 msgid "PEP 519: Adding a file system path protocol" msgstr "" -#: ../Doc/whatsnew/3.6.rst:404 +#: ../Doc/whatsnew/3.6.rst:403 msgid "" "File system paths have historically been represented as :class:`str` or :" "class:`bytes` objects. This has led to people who write code which operate " @@ -455,7 +455,7 @@ msgid "" "with pre-existing code, including Python's standard library." msgstr "" -#: ../Doc/whatsnew/3.6.rst:413 +#: ../Doc/whatsnew/3.6.rst:412 msgid "" "To fix this situation, a new interface represented by :class:`os.PathLike` " "has been defined. By implementing the :meth:`~os.PathLike.__fspath__` " @@ -469,7 +469,7 @@ msgid "" "path-like object." msgstr "" -#: ../Doc/whatsnew/3.6.rst:426 +#: ../Doc/whatsnew/3.6.rst:425 msgid "" "The built-in :func:`open` function has been updated to accept :class:`os." "PathLike` objects, as have all relevant functions in the :mod:`os` and :mod:" @@ -478,7 +478,7 @@ msgid "" "`pathlib` have also been updated to implement :class:`os.PathLike`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:433 +#: ../Doc/whatsnew/3.6.rst:432 msgid "" "The hope is that updating the fundamental functions for operating on file " "system paths will lead to third-party code to implicitly support all :term:" @@ -487,31 +487,31 @@ msgid "" "before operating on a path-like object)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:440 +#: ../Doc/whatsnew/3.6.rst:439 msgid "" "Here are some examples of how the new interface allows for :class:`pathlib." "Path` to be used more easily and transparently with pre-existing code::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:457 +#: ../Doc/whatsnew/3.6.rst:456 msgid "" "(Implemented by Brett Cannon, Ethan Furman, Dusty Phillips, and Jelle " "Zijlstra.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:461 +#: ../Doc/whatsnew/3.6.rst:460 msgid ":pep:`519` -- Adding a file system path protocol" msgstr "" -#: ../Doc/whatsnew/3.6.rst:462 +#: ../Doc/whatsnew/3.6.rst:461 msgid "PEP written by Brett Cannon and Koos Zevenhoven." msgstr "" -#: ../Doc/whatsnew/3.6.rst:468 +#: ../Doc/whatsnew/3.6.rst:467 msgid "PEP 495: Local Time Disambiguation" msgstr "" -#: ../Doc/whatsnew/3.6.rst:470 +#: ../Doc/whatsnew/3.6.rst:469 msgid "" "In most world locations, there have been and will be times when local clocks " "are moved back. In those times, intervals are introduced in which local " @@ -520,42 +520,42 @@ msgid "" "instance) is insufficient to identify a particular moment in time." msgstr "" -#: ../Doc/whatsnew/3.6.rst:476 +#: ../Doc/whatsnew/3.6.rst:475 msgid "" ":pep:`495` adds the new *fold* attribute to instances of :class:`datetime." "datetime` and :class:`datetime.time` classes to differentiate between two " "moments in time for which local times are the same::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:491 +#: ../Doc/whatsnew/3.6.rst:490 msgid "" "The values of the :attr:`fold ` attribute have the " "value ``0`` for all instances except those that represent the second " "(chronologically) moment in time in an ambiguous case." msgstr "" -#: ../Doc/whatsnew/3.6.rst:498 +#: ../Doc/whatsnew/3.6.rst:497 msgid ":pep:`495` -- Local Time Disambiguation" msgstr "" -#: ../Doc/whatsnew/3.6.rst:498 +#: ../Doc/whatsnew/3.6.rst:497 msgid "" "PEP written by Alexander Belopolsky and Tim Peters, implementation by " "Alexander Belopolsky." msgstr "" -#: ../Doc/whatsnew/3.6.rst:505 +#: ../Doc/whatsnew/3.6.rst:504 msgid "PEP 529: Change Windows filesystem encoding to UTF-8" msgstr "" -#: ../Doc/whatsnew/3.6.rst:507 +#: ../Doc/whatsnew/3.6.rst:506 msgid "" "Representing filesystem paths is best performed with str (Unicode) rather " "than bytes. However, there are some situations where using bytes is " "sufficient and correct." msgstr "" -#: ../Doc/whatsnew/3.6.rst:511 +#: ../Doc/whatsnew/3.6.rst:510 msgid "" "Prior to Python 3.6, data loss could result when using bytes paths on " "Windows. With this change, using bytes to represent paths is now supported " @@ -563,7 +563,7 @@ msgid "" "func:`sys.getfilesystemencoding()`, which now defaults to ``'utf-8'``." msgstr "" -#: ../Doc/whatsnew/3.6.rst:516 +#: ../Doc/whatsnew/3.6.rst:515 msgid "" "Applications that do not use str to represent paths should use :func:`os." "fsencode()` and :func:`os.fsdecode()` to ensure their bytes are correctly " @@ -572,82 +572,82 @@ msgid "" "_enablelegacywindowsfsencoding`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:522 +#: ../Doc/whatsnew/3.6.rst:521 msgid "" "See :pep:`529` for more information and discussion of code modifications " "that may be required." msgstr "" -#: ../Doc/whatsnew/3.6.rst:529 +#: ../Doc/whatsnew/3.6.rst:528 msgid "PEP 528: Change Windows console encoding to UTF-8" msgstr "" -#: ../Doc/whatsnew/3.6.rst:531 +#: ../Doc/whatsnew/3.6.rst:530 msgid "" "The default console on Windows will now accept all Unicode characters and " "provide correctly read str objects to Python code. ``sys.stdin``, ``sys." "stdout`` and ``sys.stderr`` now default to utf-8 encoding." msgstr "" -#: ../Doc/whatsnew/3.6.rst:535 +#: ../Doc/whatsnew/3.6.rst:534 msgid "" "This change only applies when using an interactive console, and not when " "redirecting files or pipes. To revert to the previous behaviour for " "interactive console use, set :envvar:`PYTHONLEGACYWINDOWSSTDIO`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:541 +#: ../Doc/whatsnew/3.6.rst:540 msgid ":pep:`528` -- Change Windows console encoding to UTF-8" msgstr "" -#: ../Doc/whatsnew/3.6.rst:542 +#: ../Doc/whatsnew/3.6.rst:541 msgid "PEP written and implemented by Steve Dower." msgstr "" -#: ../Doc/whatsnew/3.6.rst:548 +#: ../Doc/whatsnew/3.6.rst:547 msgid "PEP 520: Preserving Class Attribute Definition Order" msgstr "" -#: ../Doc/whatsnew/3.6.rst:550 +#: ../Doc/whatsnew/3.6.rst:549 msgid "" "Attributes in a class definition body have a natural ordering: the same " "order in which the names appear in the source. This order is now preserved " "in the new class's :attr:`~object.__dict__` attribute." msgstr "" -#: ../Doc/whatsnew/3.6.rst:554 +#: ../Doc/whatsnew/3.6.rst:553 msgid "" "Also, the effective default class *execution* namespace (returned from :ref:" "`type.__prepare__() `) is now an insertion-order-preserving mapping." msgstr "" -#: ../Doc/whatsnew/3.6.rst:560 +#: ../Doc/whatsnew/3.6.rst:559 msgid ":pep:`520` -- Preserving Class Attribute Definition Order" msgstr "" -#: ../Doc/whatsnew/3.6.rst:561 ../Doc/whatsnew/3.6.rst:575 +#: ../Doc/whatsnew/3.6.rst:560 ../Doc/whatsnew/3.6.rst:574 msgid "PEP written and implemented by Eric Snow." msgstr "" -#: ../Doc/whatsnew/3.6.rst:567 +#: ../Doc/whatsnew/3.6.rst:566 msgid "PEP 468: Preserving Keyword Argument Order" msgstr "" -#: ../Doc/whatsnew/3.6.rst:569 +#: ../Doc/whatsnew/3.6.rst:568 msgid "" "``**kwargs`` in a function signature is now guaranteed to be an insertion-" "order-preserving mapping." msgstr "" -#: ../Doc/whatsnew/3.6.rst:574 +#: ../Doc/whatsnew/3.6.rst:573 msgid ":pep:`468` -- Preserving Keyword Argument Order" msgstr "" -#: ../Doc/whatsnew/3.6.rst:581 +#: ../Doc/whatsnew/3.6.rst:580 msgid "New :ref:`dict ` implementation" msgstr "" -#: ../Doc/whatsnew/3.6.rst:583 +#: ../Doc/whatsnew/3.6.rst:582 msgid "" "The :ref:`dict ` type now uses a \"compact\" representation " "based on `a proposal by Raymond Hettinger `_.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:608 +#: ../Doc/whatsnew/3.6.rst:607 msgid "PEP 523: Adding a frame evaluation API to CPython" msgstr "" -#: ../Doc/whatsnew/3.6.rst:610 +#: ../Doc/whatsnew/3.6.rst:609 msgid "" "While Python provides extensive support to customize how code executes, one " "place it has not done so is in the evaluation of frame objects. If you " @@ -689,7 +689,7 @@ msgid "" "functions." msgstr "" -#: ../Doc/whatsnew/3.6.rst:616 +#: ../Doc/whatsnew/3.6.rst:615 msgid "" ":pep:`523` changes this by providing an API to make frame evaluation " "pluggable at the C level. This will allow for tools such as debuggers and " @@ -698,7 +698,7 @@ msgid "" "Python code, tracking frame evaluation, etc." msgstr "" -#: ../Doc/whatsnew/3.6.rst:623 +#: ../Doc/whatsnew/3.6.rst:622 msgid "" "This API is not part of the limited C API and is marked as private to signal " "that usage of this API is expected to be limited and only applicable to very " @@ -706,71 +706,71 @@ msgid "" "necessary." msgstr "" -#: ../Doc/whatsnew/3.6.rst:630 +#: ../Doc/whatsnew/3.6.rst:629 msgid ":pep:`523` -- Adding a frame evaluation API to CPython" msgstr "" -#: ../Doc/whatsnew/3.6.rst:631 +#: ../Doc/whatsnew/3.6.rst:630 msgid "PEP written by Brett Cannon and Dino Viehland." msgstr "" -#: ../Doc/whatsnew/3.6.rst:637 +#: ../Doc/whatsnew/3.6.rst:636 msgid "PYTHONMALLOC environment variable" msgstr "" -#: ../Doc/whatsnew/3.6.rst:639 +#: ../Doc/whatsnew/3.6.rst:638 msgid "" "The new :envvar:`PYTHONMALLOC` environment variable allows setting the " "Python memory allocators and installing debug hooks." msgstr "" -#: ../Doc/whatsnew/3.6.rst:642 +#: ../Doc/whatsnew/3.6.rst:641 msgid "" "It is now possible to install debug hooks on Python memory allocators on " "Python compiled in release mode using ``PYTHONMALLOC=debug``. Effects of " "debug hooks:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:645 +#: ../Doc/whatsnew/3.6.rst:644 msgid "Newly allocated memory is filled with the byte ``0xCB``" msgstr "" -#: ../Doc/whatsnew/3.6.rst:646 +#: ../Doc/whatsnew/3.6.rst:645 msgid "Freed memory is filled with the byte ``0xDB``" msgstr "" -#: ../Doc/whatsnew/3.6.rst:647 +#: ../Doc/whatsnew/3.6.rst:646 msgid "" "Detect violations of the Python memory allocator API. For example, :c:func:" "`PyObject_Free` called on a memory block allocated by :c:func:`PyMem_Malloc`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:650 +#: ../Doc/whatsnew/3.6.rst:649 msgid "Detect writes before the start of a buffer (buffer underflows)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:651 +#: ../Doc/whatsnew/3.6.rst:650 msgid "Detect writes after the end of a buffer (buffer overflows)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:652 +#: ../Doc/whatsnew/3.6.rst:651 msgid "" "Check that the :term:`GIL ` is held when allocator " "functions of :c:data:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) and :" "c:data:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) domains are called." msgstr "" -#: ../Doc/whatsnew/3.6.rst:656 +#: ../Doc/whatsnew/3.6.rst:655 msgid "Checking if the GIL is held is also a new feature of Python 3.6." msgstr "" -#: ../Doc/whatsnew/3.6.rst:658 +#: ../Doc/whatsnew/3.6.rst:657 msgid "" "See the :c:func:`PyMem_SetupDebugHooks` function for debug hooks on Python " "memory allocators." msgstr "" -#: ../Doc/whatsnew/3.6.rst:661 +#: ../Doc/whatsnew/3.6.rst:660 msgid "" "It is now also possible to force the usage of the :c:func:`malloc` allocator " "of the C library for all Python memory allocations using " @@ -778,83 +778,83 @@ msgid "" "debuggers like Valgrind on a Python compiled in release mode." msgstr "" -#: ../Doc/whatsnew/3.6.rst:666 +#: ../Doc/whatsnew/3.6.rst:665 msgid "" "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 "" -#: ../Doc/whatsnew/3.6.rst:670 +#: ../Doc/whatsnew/3.6.rst:669 msgid "" "Example of fatal error on buffer overflow using ``python3.6 -X " "tracemalloc=5`` (store 5 frames in traces)::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:707 +#: ../Doc/whatsnew/3.6.rst:706 msgid "(Contributed by Victor Stinner in :issue:`26516` and :issue:`26564`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:713 +#: ../Doc/whatsnew/3.6.rst:712 msgid "DTrace and SystemTap probing support" msgstr "" -#: ../Doc/whatsnew/3.6.rst:715 +#: ../Doc/whatsnew/3.6.rst:714 msgid "" "Python can now be built ``--with-dtrace`` which enables static markers for " "the following events in the interpreter:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:718 +#: ../Doc/whatsnew/3.6.rst:717 msgid "function call/return" msgstr "" -#: ../Doc/whatsnew/3.6.rst:720 +#: ../Doc/whatsnew/3.6.rst:719 msgid "garbage collection started/finished" msgstr "" -#: ../Doc/whatsnew/3.6.rst:722 +#: ../Doc/whatsnew/3.6.rst:721 msgid "line of code executed." msgstr "" -#: ../Doc/whatsnew/3.6.rst:724 +#: ../Doc/whatsnew/3.6.rst:723 msgid "" "This can be used to instrument running interpreters in production, without " "the need to recompile specific debug builds or providing application-" "specific profiling/debugging code." msgstr "" -#: ../Doc/whatsnew/3.6.rst:728 +#: ../Doc/whatsnew/3.6.rst:727 msgid "More details in :ref:`instrumentation`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:730 +#: ../Doc/whatsnew/3.6.rst:729 msgid "" "The current implementation is tested on Linux and macOS. Additional markers " "may be added in the future." msgstr "" -#: ../Doc/whatsnew/3.6.rst:733 +#: ../Doc/whatsnew/3.6.rst:732 msgid "" "(Contributed by Łukasz Langa in :issue:`21590`, based on patches by Jesús " "Cea Avión, David Malcolm, and Nikhil Benesch.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:738 +#: ../Doc/whatsnew/3.6.rst:737 msgid "Other Language Changes" msgstr "" -#: ../Doc/whatsnew/3.6.rst:740 +#: ../Doc/whatsnew/3.6.rst:739 msgid "Some smaller changes made to the core Python language are:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:742 +#: ../Doc/whatsnew/3.6.rst:741 msgid "" "A ``global`` or ``nonlocal`` statement must now textually appear before the " "first use of the affected name in the same scope. Previously this was a " "``SyntaxWarning``." msgstr "" -#: ../Doc/whatsnew/3.6.rst:746 +#: ../Doc/whatsnew/3.6.rst:745 msgid "" "It is now possible to set a :ref:`special method ` to ``None`` " "to indicate that the corresponding operation is not available. For example, " @@ -862,14 +862,14 @@ msgid "" "(Contributed by Andrew Barnert and Ivan Levkivskyi in :issue:`25958`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:752 +#: ../Doc/whatsnew/3.6.rst:751 msgid "" "Long sequences of repeated traceback lines are now abbreviated as ``" "\"[Previous line repeated {count} more times]\"`` (see :ref:`whatsnew36-" "traceback` for an example). (Contributed by Emanuel Barry in :issue:`26823`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:757 +#: ../Doc/whatsnew/3.6.rst:756 msgid "" "Import now raises the new exception :exc:`ModuleNotFoundError` (subclass of :" "exc:`ImportError`) when it cannot find a module. Code that currently checks " @@ -877,22 +877,22 @@ msgid "" "in :issue:`15767`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:762 +#: ../Doc/whatsnew/3.6.rst:761 msgid "" "Class methods relying on zero-argument ``super()`` will now work correctly " "when called from metaclass methods during class creation. (Contributed by " "Martin Teichmann in :issue:`23722`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:768 +#: ../Doc/whatsnew/3.6.rst:767 msgid "New Modules" msgstr "" -#: ../Doc/whatsnew/3.6.rst:773 +#: ../Doc/whatsnew/3.6.rst:772 msgid "secrets" msgstr "" -#: ../Doc/whatsnew/3.6.rst:775 +#: ../Doc/whatsnew/3.6.rst:774 msgid "" "The main purpose of the new :mod:`secrets` module is to provide an obvious " "way to reliably generate cryptographically strong pseudo-random values " @@ -900,78 +900,78 @@ msgid "" "similar." msgstr "" -#: ../Doc/whatsnew/3.6.rst:781 +#: ../Doc/whatsnew/3.6.rst:780 msgid "" "Note that the pseudo-random generators in the :mod:`random` module should " "*NOT* be used for security purposes. Use :mod:`secrets` on Python 3.6+ and :" "func:`os.urandom()` on Python 3.5 and earlier." msgstr "" -#: ../Doc/whatsnew/3.6.rst:787 +#: ../Doc/whatsnew/3.6.rst:786 msgid ":pep:`506` -- Adding A Secrets Module To The Standard Library" msgstr "" -#: ../Doc/whatsnew/3.6.rst:788 +#: ../Doc/whatsnew/3.6.rst:787 msgid "PEP written and implemented by Steven D'Aprano." msgstr "" -#: ../Doc/whatsnew/3.6.rst:792 +#: ../Doc/whatsnew/3.6.rst:791 msgid "Improved Modules" msgstr "" -#: ../Doc/whatsnew/3.6.rst:795 +#: ../Doc/whatsnew/3.6.rst:794 msgid "array" msgstr "array" -#: ../Doc/whatsnew/3.6.rst:797 +#: ../Doc/whatsnew/3.6.rst:796 msgid "" "Exhausted iterators of :class:`array.array` will now stay exhausted even if " "the iterated array is extended. This is consistent with the behavior of " "other mutable sequences." msgstr "" -#: ../Doc/whatsnew/3.6.rst:801 +#: ../Doc/whatsnew/3.6.rst:800 msgid "Contributed by Serhiy Storchaka in :issue:`26492`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:804 +#: ../Doc/whatsnew/3.6.rst:803 msgid "ast" msgstr "ast" -#: ../Doc/whatsnew/3.6.rst:806 +#: ../Doc/whatsnew/3.6.rst:805 msgid "" "The new :class:`ast.Constant` AST node has been added. It can be used by " "external AST optimizers for the purposes of constant folding." msgstr "" -#: ../Doc/whatsnew/3.6.rst:809 +#: ../Doc/whatsnew/3.6.rst:808 msgid "Contributed by Victor Stinner in :issue:`26146`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:813 +#: ../Doc/whatsnew/3.6.rst:812 msgid "asyncio" msgstr "asyncio" -#: ../Doc/whatsnew/3.6.rst:815 +#: ../Doc/whatsnew/3.6.rst:814 msgid "" "Starting with Python 3.6 the ``asyncio`` module is no longer provisional and " "its API is considered stable." msgstr "" -#: ../Doc/whatsnew/3.6.rst:818 +#: ../Doc/whatsnew/3.6.rst:817 msgid "" "Notable changes in the :mod:`asyncio` module since Python 3.5.0 (all " "backported to 3.5.x due to the provisional status):" msgstr "" -#: ../Doc/whatsnew/3.6.rst:821 +#: ../Doc/whatsnew/3.6.rst:820 msgid "" "The :func:`~asyncio.get_event_loop` function has been changed to always " "return the currently running loop when called from couroutines and " "callbacks. (Contributed by Yury Selivanov in :issue:`28613`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:826 +#: ../Doc/whatsnew/3.6.rst:825 msgid "" "The :func:`~asyncio.ensure_future` function and all functions that use it, " "such as :meth:`loop.run_until_complete() `. (Contributed by Yury Selivanov.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:831 +#: ../Doc/whatsnew/3.6.rst:830 msgid "" "New :func:`~asyncio.run_coroutine_threadsafe` function to submit coroutines " "to event loops from other threads. (Contributed by Vincent Michel.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:835 +#: ../Doc/whatsnew/3.6.rst:834 msgid "" "New :meth:`Transport.is_closing() ` method " "to check if the transport is closing or closed. (Contributed by Yury " "Selivanov.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:839 +#: ../Doc/whatsnew/3.6.rst:838 msgid "" "The :meth:`loop.create_server() ` " "method can now accept a list of hosts. (Contributed by Yann Sionneau.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:843 +#: ../Doc/whatsnew/3.6.rst:842 msgid "" "New :meth:`loop.create_future() ` " "method to create Future objects. This allows alternative event loop " @@ -1007,35 +1007,35 @@ msgid "" "Yury Selivanov in :issue:`27041`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:850 +#: ../Doc/whatsnew/3.6.rst:849 msgid "" "New :meth:`loop.get_exception_handler() ` method to get the current exception handler. " "(Contributed by Yury Selivanov in :issue:`27040`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:854 +#: ../Doc/whatsnew/3.6.rst:853 msgid "" "New :meth:`StreamReader.readuntil() ` method " "to read data from the stream until a separator bytes sequence appears. " "(Contributed by Mark Korenberg.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:859 +#: ../Doc/whatsnew/3.6.rst:858 msgid "" "The performance of :meth:`StreamReader.readexactly() ` has been improved. (Contributed by Mark Korenberg in :issue:" "`28370`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:863 +#: ../Doc/whatsnew/3.6.rst:862 msgid "" "The :meth:`loop.getaddrinfo() ` method is " "optimized to avoid calling the system ``getaddrinfo`` function if the " "address is already resolved. (Contributed by A. Jesse Jiryu Davis.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:868 +#: ../Doc/whatsnew/3.6.rst:867 msgid "" "The :meth:`loop.stop() ` method has been changed " "to stop the loop immediately after the current iteration. Any new callbacks " @@ -1043,14 +1043,14 @@ msgid "" "by Guido van Rossum in :issue:`25593`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:874 +#: ../Doc/whatsnew/3.6.rst:873 msgid "" ":meth:`Future.set_exception ` will now " "raise :exc:`TypeError` when passed an instance of the :exc:`StopIteration` " "exception. (Contributed by Chris Angelico in :issue:`26221`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:879 +#: ../Doc/whatsnew/3.6.rst:878 msgid "" "New :meth:`loop.connect_accepted_socket() ` method to be used by servers that accept " @@ -1058,20 +1058,20 @@ msgid "" "(Contributed by Jim Fulton in :issue:`27392`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:884 +#: ../Doc/whatsnew/3.6.rst:883 msgid "" "``TCP_NODELAY`` flag is now set for all TCP transports by default. " "(Contributed by Yury Selivanov in :issue:`27456`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:887 +#: ../Doc/whatsnew/3.6.rst:886 msgid "" "New :meth:`loop.shutdown_asyncgens() ` to properly close pending asynchronous generators " "before closing the loop. (Contributed by Yury Selivanov in :issue:`28003`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:892 +#: ../Doc/whatsnew/3.6.rst:891 msgid "" ":class:`Future ` and :class:`Task ` classes " "now have an optimized C implementation which makes asyncio code up to 30% " @@ -1079,28 +1079,28 @@ msgid "" "and :issue:`28544`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:900 +#: ../Doc/whatsnew/3.6.rst:899 msgid "binascii" msgstr "binascii" -#: ../Doc/whatsnew/3.6.rst:902 +#: ../Doc/whatsnew/3.6.rst:901 msgid "" "The :func:`~binascii.b2a_base64` function now accepts an optional *newline* " "keyword argument to control whether the newline character is appended to the " "return value. (Contributed by Victor Stinner in :issue:`25357`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:909 +#: ../Doc/whatsnew/3.6.rst:908 msgid "cmath" msgstr "cmath" -#: ../Doc/whatsnew/3.6.rst:911 +#: ../Doc/whatsnew/3.6.rst:910 msgid "" "The new :const:`cmath.tau` (τ) constant has been added. (Contributed by Lisa " "Roach in :issue:`12345`, see :pep:`628` for details.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:914 +#: ../Doc/whatsnew/3.6.rst:913 msgid "" "New constants: :const:`cmath.inf` and :const:`cmath.nan` to match :const:" "`math.inf` and :const:`math.nan`, and also :const:`cmath.infj` and :const:" @@ -1108,32 +1108,32 @@ msgid "" "Dickinson in :issue:`23229`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:921 +#: ../Doc/whatsnew/3.6.rst:920 msgid "collections" msgstr "" -#: ../Doc/whatsnew/3.6.rst:923 +#: ../Doc/whatsnew/3.6.rst:922 msgid "" "The new :class:`~collections.abc.Collection` abstract base class has been " "added to represent sized iterable container classes. (Contributed by Ivan " "Levkivskyi, docs by Neil Girdhar in :issue:`27598`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:927 +#: ../Doc/whatsnew/3.6.rst:926 msgid "" "The new :class:`~collections.abc.Reversible` abstract base class represents " "iterable classes that also provide the :meth:`__reversed__` method. " "(Contributed by Ivan Levkivskyi in :issue:`25987`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:931 +#: ../Doc/whatsnew/3.6.rst:930 msgid "" "The new :class:`~collections.abc.AsyncGenerator` abstract base class " "represents asynchronous generators. (Contributed by Yury Selivanov in :issue:" "`28720`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:935 +#: ../Doc/whatsnew/3.6.rst:934 msgid "" "The :func:`~collections.namedtuple` function now accepts an optional keyword " "argument *module*, which, when specified, is used for the ``__module__`` " @@ -1141,23 +1141,23 @@ msgid "" "Hettinger in :issue:`17941`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:940 ../Doc/whatsnew/3.6.rst:2224 +#: ../Doc/whatsnew/3.6.rst:939 ../Doc/whatsnew/3.6.rst:2223 msgid "" "The *verbose* and *rename* arguments for :func:`~collections.namedtuple` are " "now keyword-only. (Contributed by Raymond Hettinger in :issue:`25628`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:944 +#: ../Doc/whatsnew/3.6.rst:943 msgid "" "Recursive :class:`collections.deque` instances can now be pickled. " "(Contributed by Serhiy Storchaka in :issue:`26482`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:949 +#: ../Doc/whatsnew/3.6.rst:948 msgid "concurrent.futures" msgstr "concurrent.futures" -#: ../Doc/whatsnew/3.6.rst:951 +#: ../Doc/whatsnew/3.6.rst:950 msgid "" "The :class:`ThreadPoolExecutor ` " "class constructor now accepts an optional *thread_name_prefix* argument to " @@ -1165,11 +1165,11 @@ msgid "" "(Contributed by Gregory P. Smith in :issue:`27664`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:959 +#: ../Doc/whatsnew/3.6.rst:958 msgid "contextlib" msgstr "contextlib" -#: ../Doc/whatsnew/3.6.rst:961 +#: ../Doc/whatsnew/3.6.rst:960 msgid "" "The :class:`contextlib.AbstractContextManager` class has been added to " "provide an abstract base class for context managers. It provides a sensible " @@ -1179,11 +1179,11 @@ msgid "" "Cannon in :issue:`25609`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:971 +#: ../Doc/whatsnew/3.6.rst:970 msgid "datetime" msgstr "datetime" -#: ../Doc/whatsnew/3.6.rst:973 +#: ../Doc/whatsnew/3.6.rst:972 msgid "" "The :class:`~datetime.datetime` and :class:`~datetime.time` classes have the " "new :attr:`~time.fold` attribute used to disambiguate local time when " @@ -1193,7 +1193,7 @@ msgid "" "Belopolsky in :issue:`24773`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:981 +#: ../Doc/whatsnew/3.6.rst:980 msgid "" "The :meth:`datetime.strftime() ` and :meth:`date." "strftime() ` methods now support ISO 8601 date " @@ -1201,7 +1201,7 @@ msgid "" "issue:`12006`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:986 +#: ../Doc/whatsnew/3.6.rst:985 msgid "" "The :func:`datetime.isoformat() ` function now " "accepts an optional *timespec* argument that specifies the number of " @@ -1209,18 +1209,18 @@ msgid "" "Alessandro Cucci and Alexander Belopolsky in :issue:`19475`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:991 +#: ../Doc/whatsnew/3.6.rst:990 msgid "" "The :meth:`datetime.combine() ` now accepts an " "optional *tzinfo* argument. (Contributed by Alexander Belopolsky in :issue:" "`27661`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:997 +#: ../Doc/whatsnew/3.6.rst:996 msgid "decimal" msgstr "" -#: ../Doc/whatsnew/3.6.rst:999 +#: ../Doc/whatsnew/3.6.rst:998 msgid "" "New :meth:`Decimal.as_integer_ratio() ` " "method that returns a pair ``(n, d)`` of integers that represent the given :" @@ -1228,15 +1228,15 @@ msgid "" "positive denominator::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1007 +#: ../Doc/whatsnew/3.6.rst:1006 msgid "(Contributed by Stefan Krah amd Mark Dickinson in :issue:`25928`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1012 ../Doc/whatsnew/3.6.rst:1934 +#: ../Doc/whatsnew/3.6.rst:1011 ../Doc/whatsnew/3.6.rst:1933 msgid "distutils" msgstr "distutils" -#: ../Doc/whatsnew/3.6.rst:1014 +#: ../Doc/whatsnew/3.6.rst:1013 msgid "" "The ``default_format`` attribute has been removed from :class:`distutils." "command.sdist.sdist` and the ``formats`` attribute defaults to " @@ -1245,11 +1245,11 @@ msgid "" "details." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1022 +#: ../Doc/whatsnew/3.6.rst:1021 msgid "email" msgstr "email" -#: ../Doc/whatsnew/3.6.rst:1024 +#: ../Doc/whatsnew/3.6.rst:1023 msgid "" "The new email API, enabled via the *policy* keyword to various constructors, " "is no longer provisional. The :mod:`email` documentation has been " @@ -1258,19 +1258,19 @@ msgid "" "`24277`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1029 +#: ../Doc/whatsnew/3.6.rst:1028 msgid "" "The :mod:`email.mime` classes now all accept an optional *policy* keyword. " "(Contributed by Berker Peksag in :issue:`27331`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1032 +#: ../Doc/whatsnew/3.6.rst:1031 msgid "" "The :class:`~email.generator.DecodedGenerator` now supports the *policy* " "keyword." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1035 +#: ../Doc/whatsnew/3.6.rst:1034 msgid "" "There is a new :mod:`~email.policy` attribute, :attr:`~email.policy.Policy." "message_factory`, that controls what class is used by default when the " @@ -1280,22 +1280,22 @@ msgid "" "issue:`20476`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1044 +#: ../Doc/whatsnew/3.6.rst:1043 msgid "encodings" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1046 +#: ../Doc/whatsnew/3.6.rst:1045 msgid "" "On Windows, added the ``'oem'`` encoding to use ``CP_OEMCP``, and the " "``'ansi'`` alias for the existing ``'mbcs'`` encoding, which uses the " "``CP_ACP`` code page. (Contributed by Steve Dower in :issue:`27959`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1052 +#: ../Doc/whatsnew/3.6.rst:1051 msgid "enum" msgstr "enum" -#: ../Doc/whatsnew/3.6.rst:1054 +#: ../Doc/whatsnew/3.6.rst:1053 msgid "" "Two new enumeration base classes have been added to the :mod:`enum` module: :" "class:`~enum.Flag` and :class:`~enum.IntFlags`. Both are used to define " @@ -1303,50 +1303,50 @@ msgid "" "Ethan Furman in :issue:`23591`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1059 +#: ../Doc/whatsnew/3.6.rst:1058 msgid "" "Many standard library modules have been updated to use the :class:`~enum." "IntFlags` class for their constants." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1062 +#: ../Doc/whatsnew/3.6.rst:1061 msgid "" "The new :class:`enum.auto` value can be used to assign values to enum " "members automatically::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1076 +#: ../Doc/whatsnew/3.6.rst:1075 msgid "faulthandler" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1078 +#: ../Doc/whatsnew/3.6.rst:1077 msgid "" "On Windows, the :mod:`faulthandler` module now installs a handler for " "Windows exceptions: see :func:`faulthandler.enable`. (Contributed by Victor " "Stinner in :issue:`23848`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1084 +#: ../Doc/whatsnew/3.6.rst:1083 msgid "fileinput" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1086 +#: ../Doc/whatsnew/3.6.rst:1085 msgid "" ":func:`~fileinput.hook_encoded` now supports the *errors* argument. " "(Contributed by Joseph Hackman in :issue:`25788`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1091 +#: ../Doc/whatsnew/3.6.rst:1090 msgid "hashlib" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1093 +#: ../Doc/whatsnew/3.6.rst:1092 msgid "" ":mod:`hashlib` supports OpenSSL 1.1.0. The minimum recommend version is " "1.0.2. (Contributed by Christian Heimes in :issue:`26470`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1096 +#: ../Doc/whatsnew/3.6.rst:1095 msgid "" "BLAKE2 hash functions were added to the module. :func:`~hashlib.blake2b` " "and :func:`~hashlib.blake2s` are always available and support the full " @@ -1355,7 +1355,7 @@ msgid "" "Dmitry Chestnykh.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1102 +#: ../Doc/whatsnew/3.6.rst:1101 msgid "" "The SHA-3 hash functions :func:`~hashlib.sha3_224`, :func:`~hashlib." "sha3_256`, :func:`~hashlib.sha3_384`, :func:`~hashlib.sha3_512`, and SHAKE " @@ -1365,18 +1365,18 @@ msgid "" "and Ronny Van Keer.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1109 +#: ../Doc/whatsnew/3.6.rst:1108 msgid "" "The password-based key derivation function :func:`~hashlib.scrypt` is now " "available with OpenSSL 1.1.0 and newer. (Contributed by Christian Heimes in :" "issue:`27928`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1114 +#: ../Doc/whatsnew/3.6.rst:1113 msgid "http.client" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1116 +#: ../Doc/whatsnew/3.6.rst:1115 msgid "" ":meth:`HTTPConnection.request() ` and :" "meth:`~http.client.HTTPConnection.endheaders` both now support chunked " @@ -1384,11 +1384,11 @@ msgid "" "issue:`12319`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1123 +#: ../Doc/whatsnew/3.6.rst:1122 msgid "idlelib and IDLE" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1125 +#: ../Doc/whatsnew/3.6.rst:1124 msgid "" "The idlelib package is being modernized and refactored to make IDLE look and " "work better and to make the code easier to understand, test, and improve. " @@ -1398,7 +1398,7 @@ msgid "" "release of either." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1132 +#: ../Doc/whatsnew/3.6.rst:1131 msgid "" "'Modernizing' includes renaming and consolidation of idlelib modules. The " "renaming of files with partial uppercase names is similar to the renaming " @@ -1410,18 +1410,18 @@ msgid "" "part of the process.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1141 +#: ../Doc/whatsnew/3.6.rst:1140 msgid "" "In compensation, the eventual result with be that some idlelib classes will " "be easier to use, with better APIs and docstrings explaining them. " "Additional useful information will be added to idlelib when available." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1147 ../Doc/whatsnew/3.6.rst:1951 +#: ../Doc/whatsnew/3.6.rst:1146 ../Doc/whatsnew/3.6.rst:1950 msgid "importlib" msgstr "importlib" -#: ../Doc/whatsnew/3.6.rst:1149 +#: ../Doc/whatsnew/3.6.rst:1148 msgid "" "Import now raises the new exception :exc:`ModuleNotFoundError` (subclass of :" "exc:`ImportError`) when it cannot find a module. Code that current checks " @@ -1429,7 +1429,7 @@ msgid "" "Snow in :issue:`15767`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1154 +#: ../Doc/whatsnew/3.6.rst:1153 msgid "" ":class:`importlib.util.LazyLoader` now calls :meth:`~importlib.abc.Loader." "create_module` on the wrapped loader, removing the restriction that :class:" @@ -1438,18 +1438,18 @@ msgid "" "LazyLoader`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1160 +#: ../Doc/whatsnew/3.6.rst:1159 msgid "" ":func:`importlib.util.cache_from_source`, :func:`importlib.util." "source_from_cache`, and :func:`importlib.util.spec_from_file_location` now " "accept a :term:`path-like object`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1167 +#: ../Doc/whatsnew/3.6.rst:1166 msgid "inspect" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1169 +#: ../Doc/whatsnew/3.6.rst:1168 msgid "" "The :func:`inspect.signature() ` function now reports the " "implicit ``.0`` parameters generated by the compiler for comprehension and " @@ -1457,7 +1457,7 @@ msgid "" "called ``implicit0``. (Contributed by Jelle Zijlstra in :issue:`19611`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1174 +#: ../Doc/whatsnew/3.6.rst:1173 msgid "" "To reduce code churn when upgrading from Python 2.7 and the legacy :func:" "`inspect.getargspec` API, the previously documented deprecation of :func:" @@ -1467,22 +1467,22 @@ msgid "" "(Contributed by Nick Coghlan in :issue:`27172`)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1183 +#: ../Doc/whatsnew/3.6.rst:1182 msgid "json" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1185 +#: ../Doc/whatsnew/3.6.rst:1184 msgid "" ":func:`json.load` and :func:`json.loads` now support binary input. Encoded " "JSON should be represented using either UTF-8, UTF-16, or UTF-32. " "(Contributed by Serhiy Storchaka in :issue:`17909`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1191 +#: ../Doc/whatsnew/3.6.rst:1190 msgid "logging" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1193 +#: ../Doc/whatsnew/3.6.rst:1192 msgid "" "The new :meth:`WatchedFileHandler.reopenIfNeeded() ` method has been added to add the ability " @@ -1490,44 +1490,44 @@ msgid "" "in :issue:`24884`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1200 +#: ../Doc/whatsnew/3.6.rst:1199 msgid "math" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1202 +#: ../Doc/whatsnew/3.6.rst:1201 msgid "" "The tau (τ) constant has been added to the :mod:`math` and :mod:`cmath` " "modules. (Contributed by Lisa Roach in :issue:`12345`, see :pep:`628` for " "details.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1208 +#: ../Doc/whatsnew/3.6.rst:1207 msgid "multiprocessing" msgstr "multiprocessing" -#: ../Doc/whatsnew/3.6.rst:1210 +#: ../Doc/whatsnew/3.6.rst:1209 msgid "" ":ref:`Proxy Objects ` returned by :func:" "`multiprocessing.Manager` can now be nested. (Contributed by Davin Potts in :" "issue:`6766`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1216 ../Doc/whatsnew/3.6.rst:1965 +#: ../Doc/whatsnew/3.6.rst:1215 ../Doc/whatsnew/3.6.rst:1964 msgid "os" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1218 +#: ../Doc/whatsnew/3.6.rst:1217 msgid "" "See the summary of :ref:`PEP 519 ` for details on how " "the :mod:`os` and :mod:`os.path` modules now support :term:`path-like " "objects `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1222 +#: ../Doc/whatsnew/3.6.rst:1221 msgid ":func:`~os.scandir` now supports :class:`bytes` paths on Windows." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1224 +#: ../Doc/whatsnew/3.6.rst:1223 msgid "" "A new :meth:`~os.scandir.close` method allows explicitly closing a :func:" "`~os.scandir` iterator. The :func:`~os.scandir` iterator now supports the :" @@ -1536,42 +1536,42 @@ msgid "" "its destructor. (Contributed by Serhiy Storchaka in :issue:`25994`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1234 +#: ../Doc/whatsnew/3.6.rst:1233 msgid "" "The Linux ``getrandom()`` syscall (get random bytes) is now exposed as the " "new :func:`os.getrandom` function. (Contributed by Victor Stinner, part of " "the :pep:`524`)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1240 +#: ../Doc/whatsnew/3.6.rst:1239 msgid "pathlib" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1242 +#: ../Doc/whatsnew/3.6.rst:1241 msgid "" ":mod:`pathlib` now supports :term:`path-like objects `. " "(Contributed by Brett Cannon in :issue:`27186`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1245 +#: ../Doc/whatsnew/3.6.rst:1244 msgid "See the summary of :ref:`PEP 519 ` for details." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1249 +#: ../Doc/whatsnew/3.6.rst:1248 msgid "pdb" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1251 +#: ../Doc/whatsnew/3.6.rst:1250 msgid "" "The :class:`~pdb.Pdb` class constructor has a new optional *readrc* argument " "to control whether ``.pdbrc`` files should be read." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1256 +#: ../Doc/whatsnew/3.6.rst:1255 msgid "pickle" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1258 +#: ../Doc/whatsnew/3.6.rst:1257 msgid "" "Objects that need ``__new__`` called with keyword arguments can now be " "pickled using :ref:`pickle protocols ` older than protocol " @@ -1579,49 +1579,49 @@ msgid "" "Serhiy Storchaka in :issue:`24164`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1265 +#: ../Doc/whatsnew/3.6.rst:1264 msgid "pickletools" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1267 +#: ../Doc/whatsnew/3.6.rst:1266 msgid "" ":func:`pickletools.dis()` now outputs the implicit memo index for the " "``MEMOIZE`` opcode. (Contributed by Serhiy Storchaka in :issue:`25382`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1273 +#: ../Doc/whatsnew/3.6.rst:1272 msgid "pydoc" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1275 +#: ../Doc/whatsnew/3.6.rst:1274 msgid "" "The :mod:`pydoc` module has learned to respect the ``MANPAGER`` environment " "variable. (Contributed by Matthias Klose in :issue:`8637`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1279 +#: ../Doc/whatsnew/3.6.rst:1278 msgid "" ":func:`help` and :mod:`pydoc` can now list named tuple fields in the order " "they were defined rather than alphabetically. (Contributed by Raymond " "Hettinger in :issue:`24879`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1285 +#: ../Doc/whatsnew/3.6.rst:1284 msgid "random" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1287 +#: ../Doc/whatsnew/3.6.rst:1286 msgid "" "The new :func:`~random.choices` function returns a list of elements of " "specified size from the given population with optional weights. (Contributed " "by Raymond Hettinger in :issue:`18844`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1293 ../Doc/whatsnew/3.6.rst:1973 +#: ../Doc/whatsnew/3.6.rst:1292 ../Doc/whatsnew/3.6.rst:1972 msgid "re" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1295 +#: ../Doc/whatsnew/3.6.rst:1294 msgid "" "Added support of modifier spans in regular expressions. Examples: ``'(?i:" "p)ython'`` matches ``'python'`` and ``'Python'``, but not ``'PYTHON'``; ``'(?" @@ -1629,36 +1629,36 @@ msgid "" "(Contributed by Serhiy Storchaka in :issue:`433028`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1300 +#: ../Doc/whatsnew/3.6.rst:1299 msgid "" "Match object groups can be accessed by ``__getitem__``, which is equivalent " "to ``group()``. So ``mo['name']`` is now equivalent to ``mo." "group('name')``. (Contributed by Eric Smith in :issue:`24454`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1304 +#: ../Doc/whatsnew/3.6.rst:1303 msgid "" ":class:`~re.Match` objects now support :meth:`index-like objects ` as group indices. (Contributed by Jeroen Demeyer and Xiang Zhang " "in :issue:`27177`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1311 +#: ../Doc/whatsnew/3.6.rst:1310 msgid "readline" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1313 +#: ../Doc/whatsnew/3.6.rst:1312 msgid "" "Added :func:`~readline.set_auto_history` to enable or disable automatic " "addition of input to the history list. (Contributed by Tyler Crompton in :" "issue:`26870`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1319 +#: ../Doc/whatsnew/3.6.rst:1318 msgid "rlcompleter" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1321 +#: ../Doc/whatsnew/3.6.rst:1320 msgid "" "Private and special attribute names now are omitted unless the prefix starts " "with underscores. A space or a colon is added after some completed " @@ -1666,11 +1666,11 @@ msgid "" "`25209`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1327 +#: ../Doc/whatsnew/3.6.rst:1326 msgid "shlex" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1329 +#: ../Doc/whatsnew/3.6.rst:1328 msgid "" "The :class:`~shlex.shlex` has much :ref:`improved shell compatibility " "` through the new *punctuation_chars* argument " @@ -1678,53 +1678,53 @@ msgid "" "Vinay Sajip in :issue:`1521950`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1337 +#: ../Doc/whatsnew/3.6.rst:1336 msgid "site" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1339 +#: ../Doc/whatsnew/3.6.rst:1338 msgid "" "When specifying paths to add to :attr:`sys.path` in a `.pth` file, you may " "now specify file paths on top of directories (e.g. zip files). (Contributed " "by Wolfgang Langner in :issue:`26587`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1345 +#: ../Doc/whatsnew/3.6.rst:1344 msgid "sqlite3" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1347 +#: ../Doc/whatsnew/3.6.rst:1346 msgid "" ":attr:`sqlite3.Cursor.lastrowid` now supports the ``REPLACE`` statement. " "(Contributed by Alex LordThorsen in :issue:`16864`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1352 +#: ../Doc/whatsnew/3.6.rst:1351 msgid "socket" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1354 +#: ../Doc/whatsnew/3.6.rst:1353 msgid "" "The :func:`~socket.socket.ioctl` function now supports the :data:`~socket." "SIO_LOOPBACK_FAST_PATH` control code. (Contributed by Daniel Stokes in :" "issue:`26536`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1358 +#: ../Doc/whatsnew/3.6.rst:1357 msgid "" "The :meth:`~socket.socket.getsockopt` constants ``SO_DOMAIN``, " "``SO_PROTOCOL``, ``SO_PEERSEC``, and ``SO_PASSSEC`` are now supported. " "(Contributed by Christian Heimes in :issue:`26907`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1362 +#: ../Doc/whatsnew/3.6.rst:1361 msgid "" "The :meth:`~socket.socket.setsockopt` now supports the ``setsockopt(level, " "optname, None, optlen: int)`` form. (Contributed by Christian Heimes in :" "issue:`27744`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1366 +#: ../Doc/whatsnew/3.6.rst:1365 msgid "" "The socket module now supports the address family :data:`~socket.AF_ALG` to " "interface with Linux Kernel crypto API. ``ALG_*``, ``SOL_ALG`` and :meth:" @@ -1732,17 +1732,17 @@ msgid "" "in :issue:`27744` with support from Victor Stinner.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1372 +#: ../Doc/whatsnew/3.6.rst:1371 msgid "" "New Linux constants ``TCP_USER_TIMEOUT`` and ``TCP_CONGESTION`` were added. " "(Contributed by Omar Sandoval, issue:`26273`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1377 +#: ../Doc/whatsnew/3.6.rst:1376 msgid "socketserver" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1379 +#: ../Doc/whatsnew/3.6.rst:1378 msgid "" "Servers based on the :mod:`socketserver` module, including those defined in :" "mod:`http.server`, :mod:`xmlrpc.server` and :mod:`wsgiref.simple_server`, " @@ -1750,7 +1750,7 @@ msgid "" "Palivoda in :issue:`26404`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1385 +#: ../Doc/whatsnew/3.6.rst:1384 msgid "" "The :attr:`~socketserver.StreamRequestHandler.wfile` attribute of :class:" "`~socketserver.StreamRequestHandler` classes now implements the :class:`io." @@ -1759,30 +1759,30 @@ msgid "" "(Contributed by Martin Panter in :issue:`26721`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1393 ../Doc/whatsnew/3.6.rst:1981 +#: ../Doc/whatsnew/3.6.rst:1392 ../Doc/whatsnew/3.6.rst:1980 msgid "ssl" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1395 +#: ../Doc/whatsnew/3.6.rst:1394 msgid "" ":mod:`ssl` supports OpenSSL 1.1.0. The minimum recommend version is 1.0.2. " "(Contributed by Christian Heimes in :issue:`26470`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1398 +#: ../Doc/whatsnew/3.6.rst:1397 msgid "" "3DES has been removed from the default cipher suites and ChaCha20 Poly1305 " "cipher suites have been added. (Contributed by Christian Heimes in :issue:" "`27850` and :issue:`27766`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1402 +#: ../Doc/whatsnew/3.6.rst:1401 msgid "" ":class:`~ssl.SSLContext` has better default configuration for options and " "ciphers. (Contributed by Christian Heimes in :issue:`28043`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1406 +#: ../Doc/whatsnew/3.6.rst:1405 msgid "" "SSL session can be copied from one client-side connection to another with " "the new :class:`~ssl.SSLSession` class. TLS session resumption can speed up " @@ -1790,50 +1790,50 @@ msgid "" "by Christian Heimes in :issue:`19500` based on a draft by Alex Warhawk.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1412 +#: ../Doc/whatsnew/3.6.rst:1411 msgid "" "The new :meth:`~ssl.SSLContext.get_ciphers` method can be used to get a list " "of enabled ciphers in order of cipher priority." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1415 +#: ../Doc/whatsnew/3.6.rst:1414 msgid "" "All constants and flags have been converted to :class:`~enum.IntEnum` and :" "class:`~enum.IntFlags`. (Contributed by Christian Heimes in :issue:`28025`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1419 +#: ../Doc/whatsnew/3.6.rst:1418 msgid "" "Server and client-side specific TLS protocols for :class:`~ssl.SSLContext` " "were added. (Contributed by Christian Heimes in :issue:`28085`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1425 +#: ../Doc/whatsnew/3.6.rst:1424 msgid "statistics" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1427 +#: ../Doc/whatsnew/3.6.rst:1426 msgid "" "A new :func:`~statistics.harmonic_mean` function has been added. " "(Contributed by Steven D'Aprano in :issue:`27181`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1432 +#: ../Doc/whatsnew/3.6.rst:1431 msgid "struct" msgstr "struct" -#: ../Doc/whatsnew/3.6.rst:1434 +#: ../Doc/whatsnew/3.6.rst:1433 msgid "" ":mod:`struct` now supports IEEE 754 half-precision floats via the ``'e'`` " "format specifier. (Contributed by Eli Stevens, Mark Dickinson in :issue:" "`11734`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1440 +#: ../Doc/whatsnew/3.6.rst:1439 msgid "subprocess" msgstr "subprocess" -#: ../Doc/whatsnew/3.6.rst:1442 +#: ../Doc/whatsnew/3.6.rst:1441 msgid "" ":class:`subprocess.Popen` destructor now emits a :exc:`ResourceWarning` " "warning if the child process is still running. Use the context manager " @@ -1842,7 +1842,7 @@ msgid "" "(Contributed by Victor Stinner in :issue:`26741`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1448 +#: ../Doc/whatsnew/3.6.rst:1447 msgid "" "The :class:`subprocess.Popen` constructor and all functions that pass " "arguments through to it now accept *encoding* and *errors* arguments. " @@ -1850,18 +1850,18 @@ msgid "" "and *stderr* streams. (Contributed by Steve Dower in :issue:`6135`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1455 +#: ../Doc/whatsnew/3.6.rst:1454 msgid "sys" msgstr "sys" -#: ../Doc/whatsnew/3.6.rst:1457 +#: ../Doc/whatsnew/3.6.rst:1456 msgid "" "The new :func:`~sys.getfilesystemencodeerrors` function returns the name of " "the error mode used to convert between Unicode filenames and bytes " "filenames. (Contributed by Steve Dower in :issue:`27781`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1461 +#: ../Doc/whatsnew/3.6.rst:1460 msgid "" "On Windows the return value of the :func:`~sys.getwindowsversion` function " "now includes the *platform_version* field which contains the accurate major " @@ -1870,31 +1870,31 @@ msgid "" "by Steve Dower in :issue:`27932`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1469 +#: ../Doc/whatsnew/3.6.rst:1468 msgid "telnetlib" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1471 +#: ../Doc/whatsnew/3.6.rst:1470 msgid "" ":class:`~telnetlib.Telnet` is now a context manager (contributed by Stéphane " "Wirtel in :issue:`25485`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1476 +#: ../Doc/whatsnew/3.6.rst:1475 msgid "time" msgstr "time" -#: ../Doc/whatsnew/3.6.rst:1478 +#: ../Doc/whatsnew/3.6.rst:1477 msgid "" "The :class:`~time.struct_time` attributes :attr:`tm_gmtoff` and :attr:" "`tm_zone` are now available on all platforms." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1483 +#: ../Doc/whatsnew/3.6.rst:1482 msgid "timeit" msgstr "timeit" -#: ../Doc/whatsnew/3.6.rst:1485 +#: ../Doc/whatsnew/3.6.rst:1484 msgid "" "The new :meth:`Timer.autorange() ` convenience " "method has been added to call :meth:`Timer.timeit() ` " @@ -1902,17 +1902,17 @@ msgid "" "milliseconds. (Contributed by Steven D'Aprano in :issue:`6422`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1490 +#: ../Doc/whatsnew/3.6.rst:1489 msgid "" ":mod:`timeit` now warns when there is substantial (4x) variance between best " "and worst times. (Contributed by Serhiy Storchaka in :issue:`23552`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1496 ../Doc/whatsnew/3.6.rst:1998 +#: ../Doc/whatsnew/3.6.rst:1495 ../Doc/whatsnew/3.6.rst:1997 msgid "tkinter" msgstr "tkinter" -#: ../Doc/whatsnew/3.6.rst:1498 +#: ../Doc/whatsnew/3.6.rst:1497 msgid "" "Added methods :meth:`~tkinter.Variable.trace_add`, :meth:`~tkinter.Variable." "trace_remove` and :meth:`~tkinter.Variable.trace_info` in the :class:" @@ -1923,52 +1923,52 @@ msgid "" "Serhiy Storchaka in :issue:`22115`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1511 +#: ../Doc/whatsnew/3.6.rst:1510 msgid "traceback" msgstr "traceback" -#: ../Doc/whatsnew/3.6.rst:1513 +#: ../Doc/whatsnew/3.6.rst:1512 msgid "" "Both the traceback module and the interpreter's builtin exception display " "now abbreviate long sequences of repeated lines in tracebacks as shown in " "the following example::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1528 +#: ../Doc/whatsnew/3.6.rst:1527 msgid "(Contributed by Emanuel Barry in :issue:`26823`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1532 +#: ../Doc/whatsnew/3.6.rst:1531 msgid "tracemalloc" msgstr "tracemalloc" -#: ../Doc/whatsnew/3.6.rst:1534 +#: ../Doc/whatsnew/3.6.rst:1533 msgid "" "The :mod:`tracemalloc` module now supports tracing memory allocations in " "multiple different address spaces." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1537 +#: ../Doc/whatsnew/3.6.rst:1536 msgid "" "The new :class:`~tracemalloc.DomainFilter` filter class has been added to " "filter block traces by their address space (domain)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1540 +#: ../Doc/whatsnew/3.6.rst:1539 msgid "(Contributed by Victor Stinner in :issue:`26588`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1546 +#: ../Doc/whatsnew/3.6.rst:1545 msgid "typing" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1548 +#: ../Doc/whatsnew/3.6.rst:1547 msgid "" "Since the :mod:`typing` module is :term:`provisional `, all " "changes introduced in Python 3.6 have also been backported to Python 3.5.x." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1552 +#: ../Doc/whatsnew/3.6.rst:1551 msgid "" "The :mod:`typing` module has a much improved support for generic type " "aliases. For example ``Dict[str, Tuple[S, T]]`` is now a valid type " @@ -1976,21 +1976,21 @@ msgid "" "com/python/typing/pull/195>`_.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1558 +#: ../Doc/whatsnew/3.6.rst:1557 msgid "" "The :class:`typing.ContextManager` class has been added for representing :" "class:`contextlib.AbstractContextManager`. (Contributed by Brett Cannon in :" "issue:`25609`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1562 +#: ../Doc/whatsnew/3.6.rst:1561 msgid "" "The :class:`typing.Collection` class has been added for representing :class:" "`collections.abc.Collection`. (Contributed by Ivan Levkivskyi in :issue:" "`27598`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1566 +#: ../Doc/whatsnew/3.6.rst:1565 msgid "" "The :const:`typing.ClassVar` type construct has been added to mark class " "variables. As introduced in :pep:`526`, a variable annotation wrapped in " @@ -2000,7 +2000,7 @@ msgid "" "issues/280>`_.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1573 +#: ../Doc/whatsnew/3.6.rst:1572 msgid "" "A new :const:`~typing.TYPE_CHECKING` constant that is assumed to be ``True`` " "by the static type chekers, but is ``False`` at runtime. (Contributed by " @@ -2008,38 +2008,38 @@ msgid "" "issues/230>`_.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1578 +#: ../Doc/whatsnew/3.6.rst:1577 msgid "" "A new :func:`~typing.NewType` helper function has been added to create " "lightweight distinct types for annotations::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1586 +#: ../Doc/whatsnew/3.6.rst:1585 msgid "" "The static type checker will treat the new type as if it were a subclass of " "the original type. (Contributed by Ivan Levkivskyi in `Github #189 `_.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1592 +#: ../Doc/whatsnew/3.6.rst:1591 msgid "unicodedata" msgstr "unicodedata" -#: ../Doc/whatsnew/3.6.rst:1594 +#: ../Doc/whatsnew/3.6.rst:1593 msgid "" "The :mod:`unicodedata` module now uses data from `Unicode 9.0.0 `_. (Contributed by Benjamin Peterson.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1600 +#: ../Doc/whatsnew/3.6.rst:1599 msgid "unittest.mock" msgstr "unittest.mock" -#: ../Doc/whatsnew/3.6.rst:1602 +#: ../Doc/whatsnew/3.6.rst:1601 msgid "The :class:`~unittest.mock.Mock` class has the following improvements:" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1604 +#: ../Doc/whatsnew/3.6.rst:1603 msgid "" "Two new methods, :meth:`Mock.assert_called() ` and :meth:`Mock.assert_called_once() ` method now has " "two optional keyword only arguments: *return_value* and *side_effect*. " "(Contributed by Kushal Das in :issue:`21271`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1617 +#: ../Doc/whatsnew/3.6.rst:1616 msgid "urllib.request" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1619 +#: ../Doc/whatsnew/3.6.rst:1618 msgid "" "If a HTTP request has a file or iterable body (other than a bytes object) " "but no ``Content-Length`` header, rather than throwing an error, :class:" @@ -2066,33 +2066,33 @@ msgid "" "encoding. (Contributed by Demian Brecht and Rolf Krahl in :issue:`12319`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1627 +#: ../Doc/whatsnew/3.6.rst:1626 msgid "urllib.robotparser" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1629 +#: ../Doc/whatsnew/3.6.rst:1628 msgid "" ":class:`~urllib.robotparser.RobotFileParser` now supports the ``Crawl-" "delay`` and ``Request-rate`` extensions. (Contributed by Nikolay Bogoychev " "in :issue:`16099`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1635 ../Doc/whatsnew/3.6.rst:2004 +#: ../Doc/whatsnew/3.6.rst:1634 ../Doc/whatsnew/3.6.rst:2003 msgid "venv" msgstr "venv" -#: ../Doc/whatsnew/3.6.rst:1637 +#: ../Doc/whatsnew/3.6.rst:1636 msgid "" ":mod:`venv` accepts a new parameter ``--prompt``. This parameter provides an " "alternative prefix for the virtual environment. (Proposed by Łukasz " "Balcerzak and ported to 3.6 by Stéphane Wirtel in :issue:`22829`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1643 +#: ../Doc/whatsnew/3.6.rst:1642 msgid "warnings" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1645 +#: ../Doc/whatsnew/3.6.rst:1644 msgid "" "A new optional *source* parameter has been added to the :func:`warnings." "warn_explicit` function: the destroyed object which emitted a :exc:" @@ -2101,65 +2101,65 @@ msgid "" "and :issue:`26567`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1651 +#: ../Doc/whatsnew/3.6.rst:1650 msgid "" "When a :exc:`ResourceWarning` warning is logged, the :mod:`tracemalloc` " "module is now used to try to retrieve the traceback where the destroyed " "object was allocated." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1654 +#: ../Doc/whatsnew/3.6.rst:1653 msgid "Example with the script ``example.py``::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1664 +#: ../Doc/whatsnew/3.6.rst:1663 msgid "Output of the command ``python3.6 -Wd -X tracemalloc=5 example.py``::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1674 +#: ../Doc/whatsnew/3.6.rst:1673 msgid "" "The \"Object allocated at\" traceback is new and is only displayed if :mod:" "`tracemalloc` is tracing Python memory allocations and if the :mod:" "`warnings` module was already imported." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1680 +#: ../Doc/whatsnew/3.6.rst:1679 msgid "winreg" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1682 +#: ../Doc/whatsnew/3.6.rst:1681 msgid "" "Added the 64-bit integer type :data:`REG_QWORD `. " "(Contributed by Clement Rouault in :issue:`23026`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1687 +#: ../Doc/whatsnew/3.6.rst:1686 msgid "winsound" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1689 +#: ../Doc/whatsnew/3.6.rst:1688 msgid "" "Allowed keyword arguments to be passed to :func:`Beep `, :" "func:`MessageBeep `, and :func:`PlaySound ` (:issue:`27982`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1695 +#: ../Doc/whatsnew/3.6.rst:1694 msgid "xmlrpc.client" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1697 +#: ../Doc/whatsnew/3.6.rst:1696 msgid "" "The :mod:`xmlrpc.client` module now supports unmarshalling additional data " "types used by the Apache XML-RPC implementation for numerics and ``None``. " "(Contributed by Serhiy Storchaka in :issue:`26885`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1704 +#: ../Doc/whatsnew/3.6.rst:1703 msgid "zipfile" msgstr "zipfile" -#: ../Doc/whatsnew/3.6.rst:1706 +#: ../Doc/whatsnew/3.6.rst:1705 msgid "" "A new :meth:`ZipInfo.from_file() ` class method " "allows making a :class:`~zipfile.ZipInfo` instance from a filesystem file. A " @@ -2168,29 +2168,29 @@ msgid "" "(Contributed by Thomas Kluyver in :issue:`26039`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1712 +#: ../Doc/whatsnew/3.6.rst:1711 msgid "" "The :meth:`ZipFile.open() ` method can now be used to " "write data into a ZIP file, as well as for extracting data. (Contributed by " "Thomas Kluyver in :issue:`26039`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1718 +#: ../Doc/whatsnew/3.6.rst:1717 msgid "zlib" msgstr "zlib" -#: ../Doc/whatsnew/3.6.rst:1720 +#: ../Doc/whatsnew/3.6.rst:1719 msgid "" "The :func:`~zlib.compress` and :func:`~zlib.decompress` functions now accept " "keyword arguments. (Contributed by Aviv Palivoda in :issue:`26243` and Xiang " "Zhang in :issue:`16764` respectively.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1727 +#: ../Doc/whatsnew/3.6.rst:1726 msgid "Optimizations" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1729 +#: ../Doc/whatsnew/3.6.rst:1728 msgid "" "The Python interpreter now uses a 16-bit wordcode instead of bytecode which " "made a number of opcode optimizations possible. (Contributed by Demur Rumed " @@ -2198,79 +2198,79 @@ msgid "" "`26647` and :issue:`28050`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1734 +#: ../Doc/whatsnew/3.6.rst:1733 msgid "" "The :class:`asyncio.Future` class now has an optimized C implementation. " "(Contributed by Yury Selivanov and INADA Naoki in :issue:`26081`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1737 +#: ../Doc/whatsnew/3.6.rst:1736 msgid "" "The :class:`asyncio.Task` class now has an optimized C implementation. " "(Contributed by Yury Selivanov in :issue:`28544`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1740 +#: ../Doc/whatsnew/3.6.rst:1739 msgid "" "Various implementation improvements in the :mod:`typing` module (such as " "caching of generic types) allow up to 30 times performance improvements and " "reduced memory footprint." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1744 +#: ../Doc/whatsnew/3.6.rst:1743 msgid "" "The ASCII decoder is now up to 60 times as fast for error handlers " "``surrogateescape``, ``ignore`` and ``replace`` (Contributed by Victor " "Stinner in :issue:`24870`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1748 +#: ../Doc/whatsnew/3.6.rst:1747 msgid "" "The ASCII and the Latin1 encoders are now up to 3 times as fast for the " "error handler ``surrogateescape`` (Contributed by Victor Stinner in :issue:" "`25227`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1752 +#: ../Doc/whatsnew/3.6.rst:1751 msgid "" "The UTF-8 encoder is now up to 75 times as fast for error handlers " "``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass`` (Contributed " "by Victor Stinner in :issue:`25267`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1756 +#: ../Doc/whatsnew/3.6.rst:1755 msgid "" "The UTF-8 decoder is now up to 15 times as fast for error handlers " "``ignore``, ``replace`` and ``surrogateescape`` (Contributed by Victor " "Stinner in :issue:`25301`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1760 +#: ../Doc/whatsnew/3.6.rst:1759 msgid "" "``bytes % args`` is now up to 2 times faster. (Contributed by Victor Stinner " "in :issue:`25349`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1763 +#: ../Doc/whatsnew/3.6.rst:1762 msgid "" "``bytearray % args`` is now between 2.5 and 5 times faster. (Contributed by " "Victor Stinner in :issue:`25399`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1766 +#: ../Doc/whatsnew/3.6.rst:1765 msgid "" "Optimize :meth:`bytes.fromhex` and :meth:`bytearray.fromhex`: they are now " "between 2x and 3.5x faster. (Contributed by Victor Stinner in :issue:" "`25401`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1769 +#: ../Doc/whatsnew/3.6.rst:1768 msgid "" "Optimize ``bytes.replace(b'', b'.')`` and ``bytearray.replace(b'', b'.')``: " "up to 80% faster. (Contributed by Josh Snider in :issue:`26574`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1772 +#: ../Doc/whatsnew/3.6.rst:1771 msgid "" "Allocator functions of the :c:func:`PyMem_Malloc` domain (:c:data:" "`PYMEM_DOMAIN_MEM`) now use the :ref:`pymalloc memory allocator ` " @@ -2280,14 +2280,14 @@ msgid "" "(Contributed by Victor Stinner in :issue:`26249`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1779 +#: ../Doc/whatsnew/3.6.rst:1778 msgid "" ":func:`pickle.load` and :func:`pickle.loads` are now up to 10% faster when " "deserializing many small objects (Contributed by Victor Stinner in :issue:" "`27056`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1783 +#: ../Doc/whatsnew/3.6.rst:1782 msgid "" "Passing :term:`keyword arguments ` to a function has an " "overhead in comparison with passing :term:`positional arguments ` must now be held when allocator " "functions of :c:data:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) and :" "c:data:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) domains are called." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1828 +#: ../Doc/whatsnew/3.6.rst:1827 msgid "" "New :c:func:`Py_FinalizeEx` API which indicates if flushing buffered data " "failed. (Contributed by Martin Panter in :issue:`5319`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1832 +#: ../Doc/whatsnew/3.6.rst:1831 msgid "" ":c:func:`PyArg_ParseTupleAndKeywords` now supports :ref:`positional-only " "parameters `. Positional-only parameters are " "defined by empty names. (Contributed by Serhiy Storchaka in :issue:`26282`)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1837 +#: ../Doc/whatsnew/3.6.rst:1836 msgid "" "``PyTraceback_Print`` method now abbreviates long sequences of repeated " "lines as ``\"[Previous line repeated {count} more times]\"``. (Contributed " "by Emanuel Barry in :issue:`26823`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1841 +#: ../Doc/whatsnew/3.6.rst:1840 msgid "" "The new :c:func:`PyErr_SetImportErrorSubclass` function allows for " "specifying a subclass of :exc:`ImportError` to raise. (Contributed by Eric " "Snow in :issue:`15767`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1845 +#: ../Doc/whatsnew/3.6.rst:1844 msgid "" "The new :c:func:`PyErr_ResourceWarning` function can be used to generate a :" "exc:`ResourceWarning` providing the source of the resource allocation. " "(Contributed by Victor Stinner in :issue:`26567`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1849 +#: ../Doc/whatsnew/3.6.rst:1848 msgid "" "The new :c:func:`PyOS_FSPath` function returns the file system " "representation of a :term:`path-like object`. (Contributed by Brett Cannon " "in :issue:`27186`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1853 +#: ../Doc/whatsnew/3.6.rst:1852 msgid "" "The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder` " "functions will now accept :term:`path-like objects `." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1858 +#: ../Doc/whatsnew/3.6.rst:1857 msgid "Other Improvements" msgstr "Autres Améliorations" -#: ../Doc/whatsnew/3.6.rst:1860 +#: ../Doc/whatsnew/3.6.rst:1859 msgid "" "When :option:`--version` (short form: :option:`-V`) is supplied twice, " "Python prints :data:`sys.version` for detailed information." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1871 +#: ../Doc/whatsnew/3.6.rst:1870 msgid "Deprecated" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1874 +#: ../Doc/whatsnew/3.6.rst:1873 msgid "New Keywords" msgstr "Nouveaux mot-clefs" -#: ../Doc/whatsnew/3.6.rst:1876 +#: ../Doc/whatsnew/3.6.rst:1875 msgid "" "``async`` and ``await`` are not recommended to be used as variable, class, " "function or module names. Introduced by :pep:`492` in Python 3.5, they will " @@ -2432,18 +2432,18 @@ msgid "" "``async`` or ``await`` as names will generate a :exc:`DeprecationWarning`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1883 +#: ../Doc/whatsnew/3.6.rst:1882 msgid "Deprecated Python behavior" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1885 +#: ../Doc/whatsnew/3.6.rst:1884 msgid "" "Raising the :exc:`StopIteration` exception inside a generator will now " "generate a :exc:`DeprecationWarning`, and will trigger a :exc:`RuntimeError` " "in Python 3.7. See :ref:`whatsnew-pep-479` for details." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1889 +#: ../Doc/whatsnew/3.6.rst:1888 msgid "" "The :meth:`__aiter__` method is now expected to return an asynchronous " "iterator directly instead of returning an awaitable as previously. Doing the " @@ -2452,7 +2452,7 @@ msgid "" "`27243`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1895 +#: ../Doc/whatsnew/3.6.rst:1894 msgid "" "A backslash-character pair that is not a valid escape sequence now generates " "a :exc:`DeprecationWarning`. Although this will eventually become a :exc:" @@ -2460,7 +2460,7 @@ msgid "" "Emanuel Barry in :issue:`27364`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1900 +#: ../Doc/whatsnew/3.6.rst:1899 msgid "" "When performing a relative import, falling back on ``__name__`` and " "``__path__`` from the calling module when ``__spec__`` or ``__package__`` " @@ -2468,35 +2468,35 @@ msgid "" "Ames in :issue:`25791`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1907 +#: ../Doc/whatsnew/3.6.rst:1906 msgid "Deprecated Python modules, functions and methods" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1910 +#: ../Doc/whatsnew/3.6.rst:1909 msgid "asynchat" msgstr "asynchat" -#: ../Doc/whatsnew/3.6.rst:1912 +#: ../Doc/whatsnew/3.6.rst:1911 msgid "" "The :mod:`asynchat` has been deprecated in favor of :mod:`asyncio`. " "(Contributed by Mariatta in :issue:`25002`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1917 +#: ../Doc/whatsnew/3.6.rst:1916 msgid "asyncore" msgstr "asyncore" -#: ../Doc/whatsnew/3.6.rst:1919 +#: ../Doc/whatsnew/3.6.rst:1918 msgid "" "The :mod:`asyncore` has been deprecated in favor of :mod:`asyncio`. " "(Contributed by Mariatta in :issue:`25002`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1924 +#: ../Doc/whatsnew/3.6.rst:1923 msgid "dbm" msgstr "dbm" -#: ../Doc/whatsnew/3.6.rst:1926 +#: ../Doc/whatsnew/3.6.rst:1925 msgid "" "Unlike other :mod:`dbm` implementations, the :mod:`dbm.dumb` module creates " "databases with the ``'rw'`` mode and allows modifying the database opened " @@ -2504,7 +2504,7 @@ msgid "" "in 3.8. (Contributed by Serhiy Storchaka in :issue:`21708`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1936 +#: ../Doc/whatsnew/3.6.rst:1935 msgid "" "The undocumented ``extra_path`` argument to the :class:`~distutils." "Distribution` constructor is now considered deprecated and will raise a " @@ -2512,17 +2512,17 @@ msgid "" "Python release. See :issue:`27919` for details." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1943 +#: ../Doc/whatsnew/3.6.rst:1942 msgid "grp" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1945 +#: ../Doc/whatsnew/3.6.rst:1944 msgid "" "The support of non-integer arguments in :func:`~grp.getgrgid` has been " "deprecated. (Contributed by Serhiy Storchaka in :issue:`26129`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1953 +#: ../Doc/whatsnew/3.6.rst:1952 msgid "" "The :meth:`importlib.machinery.SourceFileLoader.load_module` and :meth:" "`importlib.machinery.SourcelessFileLoader.load_module` methods are now " @@ -2532,14 +2532,14 @@ msgid "" "exec_module`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1960 +#: ../Doc/whatsnew/3.6.rst:1959 msgid "" "The :class:`importlib.machinery.WindowsRegistryFinder` class is now " "deprecated. As of 3.6.0, it is still added to :attr:`sys.meta_path` by " "default (on Windows), but this may change in future releases." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1967 +#: ../Doc/whatsnew/3.6.rst:1966 msgid "" "Undocumented support of general :term:`bytes-like objects ` as paths in :mod:`os` functions, :func:`compile` and similar " @@ -2547,7 +2547,7 @@ msgid "" "`25791` and :issue:`26754`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1975 +#: ../Doc/whatsnew/3.6.rst:1974 msgid "" "Support for inline flags ``(?letters)`` in the middle of the regular " "expression has been deprecated and will be removed in a future Python " @@ -2555,14 +2555,14 @@ msgid "" "(Contributed by Serhiy Storchaka in :issue:`22493`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1983 +#: ../Doc/whatsnew/3.6.rst:1982 msgid "" "OpenSSL 0.9.8, 1.0.0 and 1.0.1 are deprecated and no longer supported. In " "the future the :mod:`ssl` module will require at least OpenSSL 1.0.2 or " "1.1.0." msgstr "" -#: ../Doc/whatsnew/3.6.rst:1987 +#: ../Doc/whatsnew/3.6.rst:1986 msgid "" "SSL-related arguments like ``certfile``, ``keyfile`` and ``check_hostname`` " "in :mod:`ftplib`, :mod:`http.client`, :mod:`imaplib`, :mod:`poplib`, and :" @@ -2570,7 +2570,7 @@ msgid "" "Christian Heimes in :issue:`28022`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:1992 +#: ../Doc/whatsnew/3.6.rst:1991 msgid "" "A couple of protocols and functions of the :mod:`ssl` module are now " "deprecated. Some features will no longer be available in future versions of " @@ -2578,13 +2578,13 @@ msgid "" "(Contributed by Christian Heimes in :issue:`28022` and :issue:`26470`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2000 +#: ../Doc/whatsnew/3.6.rst:1999 msgid "" "The :mod:`tkinter.tix` module is now deprecated. :mod:`tkinter` users " "should use :mod:`tkinter.ttk` instead." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2006 +#: ../Doc/whatsnew/3.6.rst:2005 msgid "" "The ``pyvenv`` script has been deprecated in favour of ``python3 -m venv``. " "This prevents confusion as to what Python interpreter ``pyvenv`` is " @@ -2592,11 +2592,11 @@ msgid "" "environment. (Contributed by Brett Cannon in :issue:`25154`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2013 +#: ../Doc/whatsnew/3.6.rst:2012 msgid "Deprecated functions and types of the C API" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2015 +#: ../Doc/whatsnew/3.6.rst:2014 msgid "" "Undocumented functions :c:func:`PyUnicode_AsEncodedObject`, :c:func:" "`PyUnicode_AsDecodedObject`, :c:func:`PyUnicode_AsEncodedUnicode` and :c:" @@ -2604,11 +2604,11 @@ msgid "" "codec based API ` instead." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2022 +#: ../Doc/whatsnew/3.6.rst:2021 msgid "Deprecated Build Options" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2024 +#: ../Doc/whatsnew/3.6.rst:2023 msgid "" "The ``--with-system-ffi`` configure flag is now on by default on non-macOS " "UNIX platforms. It may be disabled by using ``--without-system-ffi``, but " @@ -2617,15 +2617,15 @@ msgid "" "the ``--with-system-ffi`` flag when building their system Python." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2032 +#: ../Doc/whatsnew/3.6.rst:2031 msgid "Removed" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2035 +#: ../Doc/whatsnew/3.6.rst:2034 msgid "API and Feature Removals" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2037 +#: ../Doc/whatsnew/3.6.rst:2036 msgid "" "Unknown escapes consisting of ``'\\'`` and an ASCII letter in regular " "expressions will now cause an error. In replacement templates for :func:`re." @@ -2633,14 +2633,14 @@ msgid "" "now only be used with binary patterns." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2042 +#: ../Doc/whatsnew/3.6.rst:2041 msgid "" "``inspect.getmoduleinfo()`` was removed (was deprecated since CPython 3.3). :" "func:`inspect.getmodulename` should be used for obtaining the module name " "for a given path. (Contributed by Yury Selivanov in :issue:`13248`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2047 +#: ../Doc/whatsnew/3.6.rst:2046 msgid "" "``traceback.Ignore`` class and ``traceback.usage``, ``traceback.modname``, " "``traceback.fullmodname``, ``traceback.find_lines_from_code``, ``traceback." @@ -2650,14 +2650,14 @@ msgid "" "equivalent functionality is available from private methods." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2054 +#: ../Doc/whatsnew/3.6.rst:2053 msgid "" "The ``tk_menuBar()`` and ``tk_bindForTraversal()`` dummy methods in :mod:" "`tkinter` widget classes were removed (corresponding Tk commands were " "obsolete since Tk 4.0)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2058 +#: ../Doc/whatsnew/3.6.rst:2057 msgid "" "The :meth:`~zipfile.ZipFile.open` method of the :class:`zipfile.ZipFile` " "class no longer supports the ``'U'`` mode (was deprecated since Python 3.4). " @@ -2665,7 +2665,7 @@ msgid "" "`universal newlines` mode." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2063 +#: ../Doc/whatsnew/3.6.rst:2062 msgid "" "The undocumented ``IN``, ``CDROM``, ``DLFCN``, ``TYPES``, ``CDIO``, and " "``STROPTS`` modules have been removed. They had been available in the " @@ -2675,25 +2675,25 @@ msgid "" "distribution at :source:`Tools/scripts/h2py.py`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2070 +#: ../Doc/whatsnew/3.6.rst:2069 msgid "The deprecated ``asynchat.fifo`` class has been removed." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2074 +#: ../Doc/whatsnew/3.6.rst:2073 msgid "Porting to Python 3.6" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2076 +#: ../Doc/whatsnew/3.6.rst:2075 msgid "" "This section lists previously described changes and other bugfixes that may " "require changes to your code." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2080 +#: ../Doc/whatsnew/3.6.rst:2079 msgid "Changes in 'python' Command Behavior" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2082 +#: ../Doc/whatsnew/3.6.rst:2081 msgid "" "The output of a special Python build with defined ``COUNT_ALLOCS``, " "``SHOW_ALLOC_COUNT`` or ``SHOW_TRACK_COUNT`` macros is now off by default. " @@ -2702,42 +2702,42 @@ msgid "" "issue:`23034`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2090 +#: ../Doc/whatsnew/3.6.rst:2089 msgid "Changes in the Python API" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2092 +#: ../Doc/whatsnew/3.6.rst:2091 msgid "" ":func:`open() ` will no longer allow combining the ``'U'`` mode flag " "with ``'+'``. (Contributed by Jeff Balogh and John O'Connor in :issue:" "`2091`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2096 +#: ../Doc/whatsnew/3.6.rst:2095 msgid "" ":mod:`sqlite3` no longer implicitly commits an open transaction before DDL " "statements." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2099 +#: ../Doc/whatsnew/3.6.rst:2098 msgid "" "On Linux, :func:`os.urandom` now blocks until the system urandom entropy " "pool is initialized to increase the security." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2102 +#: ../Doc/whatsnew/3.6.rst:2101 msgid "" "When :meth:`importlib.abc.Loader.exec_module` is defined, :meth:`importlib." "abc.Loader.create_module` must also be defined." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2105 +#: ../Doc/whatsnew/3.6.rst:2104 msgid "" ":c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg** " "argument is not set. Previously only ``NULL`` was returned." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2108 +#: ../Doc/whatsnew/3.6.rst:2107 msgid "" "The format of the ``co_lnotab`` attribute of code objects changed to support " "a negative line number delta. By default, Python does not emit bytecode with " @@ -2750,7 +2750,7 @@ msgid "" "see the :pep:`511` for the rationale." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2118 +#: ../Doc/whatsnew/3.6.rst:2117 msgid "" "The functions in the :mod:`compileall` module now return booleans instead of " "``1`` or ``0`` to represent success or failure, respectively. Thanks to " @@ -2758,7 +2758,7 @@ msgid "" "were doing identity checks for ``1`` or ``0``. See :issue:`25768`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2123 +#: ../Doc/whatsnew/3.6.rst:2122 msgid "" "Reading the :attr:`~urllib.parse.SplitResult.port` attribute of :func:" "`urllib.parse.urlsplit` and :func:`~urllib.parse.urlparse` results now " @@ -2766,13 +2766,13 @@ msgid "" "const:`None`. See :issue:`20059`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2128 +#: ../Doc/whatsnew/3.6.rst:2127 msgid "" "The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of :exc:" "`PendingDeprecationWarning`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2131 +#: ../Doc/whatsnew/3.6.rst:2130 msgid "" "The following modules have had missing APIs added to their :attr:`__all__` " "attributes to match the documented APIs: :mod:`calendar`, :mod:`cgi`, :mod:" @@ -2784,21 +2784,21 @@ msgid "" "Kołodziej in :issue:`23883`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2142 +#: ../Doc/whatsnew/3.6.rst:2141 msgid "" "When performing a relative import, if ``__package__`` does not compare equal " "to ``__spec__.parent`` then :exc:`ImportWarning` is raised. (Contributed by " "Brett Cannon in :issue:`25791`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2146 +#: ../Doc/whatsnew/3.6.rst:2145 msgid "" "When a relative import is performed and no parent package is known, then :" "exc:`ImportError` will be raised. Previously, :exc:`SystemError` could be " "raised. (Contributed by Brett Cannon in :issue:`18018`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2150 +#: ../Doc/whatsnew/3.6.rst:2149 msgid "" "Servers based on the :mod:`socketserver` module, including those defined in :" "mod:`http.server`, :mod:`xmlrpc.server` and :mod:`wsgiref.simple_server`, " @@ -2809,20 +2809,20 @@ msgid "" "(Contributed by Martin Panter in :issue:`23430`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2159 +#: ../Doc/whatsnew/3.6.rst:2158 msgid "" ":func:`spwd.getspnam` now raises a :exc:`PermissionError` instead of :exc:" "`KeyError` if the user doesn't have privileges." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2162 +#: ../Doc/whatsnew/3.6.rst:2161 msgid "" "The :meth:`socket.socket.close` method now raises an exception if an error " "(e.g. ``EBADF``) was reported by the underlying system call. (Contributed by " "Martin Panter in :issue:`26685`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2166 +#: ../Doc/whatsnew/3.6.rst:2165 msgid "" "The *decode_data* argument for the :class:`smtpd.SMTPChannel` and :class:" "`smtpd.SMTPServer` constructors is now ``False`` by default. This means that " @@ -2832,7 +2832,7 @@ msgid "" "deprecation warning generated by 3.5 will not be affected." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2174 +#: ../Doc/whatsnew/3.6.rst:2173 msgid "" "All optional arguments of the :func:`~json.dump`, :func:`~json.dumps`, :func:" "`~json.load` and :func:`~json.loads` functions and :class:`~json." @@ -2841,7 +2841,7 @@ msgid "" "(Contributed by Serhiy Storchaka in :issue:`18726`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2181 +#: ../Doc/whatsnew/3.6.rst:2180 msgid "" "Subclasses of :class:`type` which don't override ``type.__new__`` may no " "longer use the one-argument form to get the type of an object." @@ -2850,7 +2850,7 @@ msgstr "" "ne devraient plus utiliser la forme à un argument pour récupérer le type " "d'un objet." -#: ../Doc/whatsnew/3.6.rst:2184 +#: ../Doc/whatsnew/3.6.rst:2183 msgid "" "As part of :pep:`487`, the handling of keyword arguments passed to :class:" "`type` (other than the metaclass hint, ``metaclass``) is now consistently " @@ -2862,7 +2862,7 @@ msgid "" "__new__` (whether direct or via :class:`super`) accordingly." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2193 +#: ../Doc/whatsnew/3.6.rst:2192 msgid "" "In :class:`distutils.command.sdist.sdist`, the ``default_format`` attribute " "has been removed and is no longer honored. Instead, the gzipped tarfile " @@ -2872,13 +2872,13 @@ msgid "" "containing the following::" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2204 +#: ../Doc/whatsnew/3.6.rst:2203 msgid "" "This behavior has also been backported to earlier Python versions by " "Setuptools 26.0.0." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2207 +#: ../Doc/whatsnew/3.6.rst:2206 msgid "" "In the :mod:`urllib.request` module and the :meth:`http.client." "HTTPConnection.request` method, if no Content-Length header field has been " @@ -2889,47 +2889,47 @@ msgid "" "`12319`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2216 +#: ../Doc/whatsnew/3.6.rst:2215 msgid "" "The :class:`~csv.DictReader` now returns rows of type :class:`~collections." "OrderedDict`. (Contributed by Steve Holden in :issue:`27842`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2220 +#: ../Doc/whatsnew/3.6.rst:2219 msgid "" "The :const:`crypt.METHOD_CRYPT` will no longer be added to ``crypt.methods`` " "if unsupported by the platform. (Contributed by Victor Stinner in :issue:" "`25287`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2228 +#: ../Doc/whatsnew/3.6.rst:2227 msgid "" "On Linux, :func:`ctypes.util.find_library` now looks in ``LD_LIBRARY_PATH`` " "for shared libraries. (Contributed by Vinay Sajip in :issue:`9998`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2232 +#: ../Doc/whatsnew/3.6.rst:2231 msgid "" "The :class:`imaplib.IMAP4` class now handles flags containing the ``']'`` " "character in messages sent from the server to improve real-world " "compatibility. (Contributed by Lita Cho in :issue:`21815`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2237 +#: ../Doc/whatsnew/3.6.rst:2236 msgid "" "The :func:`mmap.write() ` function now returns the number of " "bytes written like other write methods. (Contributed by Jakub Stasiak in :" "issue:`26335`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2241 +#: ../Doc/whatsnew/3.6.rst:2240 msgid "" "The :func:`pkgutil.iter_modules` and :func:`pkgutil.walk_packages` functions " "now return :class:`~pkgutil.ModuleInfo` named tuples. (Contributed by " "Ramchandra Apte in :issue:`17211`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2245 +#: ../Doc/whatsnew/3.6.rst:2244 msgid "" ":func:`re.sub` now raises an error for invalid numerical group references in " "replacement templates even if the pattern is not found in the string. The " @@ -2938,7 +2938,7 @@ msgid "" "in :issue:`25953`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2251 +#: ../Doc/whatsnew/3.6.rst:2250 msgid "" ":class:`zipfile.ZipFile` will now raise :exc:`NotImplementedError` for " "unrecognized compression values. Previously a plain :exc:`RuntimeError` was " @@ -2948,7 +2948,7 @@ msgid "" "`RuntimeError` was raised in those scenarios." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2258 +#: ../Doc/whatsnew/3.6.rst:2257 msgid "" "when custom metaclasses are combined with zero-argument :func:`super` or " "direct references from methods to the implicit ``__class__`` closure " @@ -2957,11 +2957,11 @@ msgid "" "a :exc:`DeprecationWarning` in 3.6 and a :exc:`RuntimeWarning` in the future." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2265 +#: ../Doc/whatsnew/3.6.rst:2264 msgid "Changes in the C API" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2267 +#: ../Doc/whatsnew/3.6.rst:2266 msgid "" "The :c:func:`PyMem_Malloc` allocator family now uses the :ref:`pymalloc " "allocator ` rather than the system :c:func:`malloc`. Applications " @@ -2970,29 +2970,29 @@ msgid "" "usage of memory allocators in your application. See :issue:`26249`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2273 +#: ../Doc/whatsnew/3.6.rst:2272 msgid "" ":c:func:`Py_Exit` (and the main interpreter) now override the exit status " "with 120 if flushing buffered data failed. See :issue:`5319`." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2278 +#: ../Doc/whatsnew/3.6.rst:2277 msgid "CPython bytecode changes" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2280 +#: ../Doc/whatsnew/3.6.rst:2279 msgid "" "There have been several major changes to the :term:`bytecode` in Python 3.6." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2282 +#: ../Doc/whatsnew/3.6.rst:2281 msgid "" "The Python interpreter now uses a 16-bit wordcode instead of bytecode. " "(Contributed by Demur Rumed with input and reviews from Serhiy Storchaka and " "Victor Stinner in :issue:`26647` and :issue:`28050`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2286 +#: ../Doc/whatsnew/3.6.rst:2285 msgid "" "The new :opcode:`FORMAT_VALUE` and :opcode:`BUILD_STRING` opcodes as part of " "the :ref:`formatted string literal ` implementation. " @@ -3000,14 +3000,14 @@ msgid "" "`27078`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2291 +#: ../Doc/whatsnew/3.6.rst:2290 msgid "" "The new :opcode:`BUILD_CONST_KEY_MAP` opcode to optimize the creation of " "dictionaries with constant keys. (Contributed by Serhiy Storchaka in :issue:" "`27140`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2295 +#: ../Doc/whatsnew/3.6.rst:2294 msgid "" "The function call opcodes have been heavily reworked for better performance " "and simpler implementation. The :opcode:`MAKE_FUNCTION`, :opcode:" @@ -3019,22 +3019,22 @@ msgid "" "issue:`27095`, and Serhiy Storchaka in :issue:`27213`, :issue:`28257`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2306 +#: ../Doc/whatsnew/3.6.rst:2305 msgid "" "The new :opcode:`SETUP_ANNOTATIONS` and :opcode:`STORE_ANNOTATION` opcodes " "have been added to support the new :term:`variable annotation` syntax. " "(Contributed by Ivan Levkivskyi in :issue:`27985`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2312 +#: ../Doc/whatsnew/3.6.rst:2311 msgid "Notable changes in Python 3.6.2" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2315 +#: ../Doc/whatsnew/3.6.rst:2314 msgid "New ``make regen-all`` build target" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2317 +#: ../Doc/whatsnew/3.6.rst:2316 msgid "" "To simplify cross-compilation, and to ensure that CPython can reliably be " "compiled without requiring an existing version of Python to already be " @@ -3042,35 +3042,35 @@ msgid "" "recompile generated files based on file modification times." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2322 +#: ../Doc/whatsnew/3.6.rst:2321 msgid "" "Instead, a new ``make regen-all`` command has been added to force " "regeneration of these files when desired (e.g. after an initial version of " "Python has already been built based on the pregenerated versions)." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2326 +#: ../Doc/whatsnew/3.6.rst:2325 msgid "" "More selective regeneration targets are also defined - see :source:`Makefile." "pre.in` for details." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2329 ../Doc/whatsnew/3.6.rst:2342 +#: ../Doc/whatsnew/3.6.rst:2328 ../Doc/whatsnew/3.6.rst:2341 msgid "(Contributed by Victor Stinner in :issue:`23404`.)" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2335 +#: ../Doc/whatsnew/3.6.rst:2334 msgid "Removal of ``make touch`` build target" msgstr "" -#: ../Doc/whatsnew/3.6.rst:2337 +#: ../Doc/whatsnew/3.6.rst:2336 msgid "" "The ``make touch`` build target previously used to request implicit " "regeneration of generated files by updating their modification times has " "been removed." msgstr "" -#: ../Doc/whatsnew/3.6.rst:2340 +#: ../Doc/whatsnew/3.6.rst:2339 msgid "It has been replaced by the new ``make regen-all`` target." msgstr "" diff --git a/whatsnew/changelog.po b/whatsnew/changelog.po index 55269725..f0dc4c0e 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-08-29 14:32+0200\n" +"POT-Creation-Date: 2017-09-12 13:37+0200\n" "PO-Revision-Date: 2017-08-29 14:38+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: \n" @@ -21,20399 +21,18177 @@ msgstr "" msgid "Changelog" msgstr "Changements" -#: ../../../Misc/NEWS:5 -msgid "Python 3.6.3 release candidate 1" -msgstr "Python 3.6.3 release candidate 1" - -#: ../../../Misc/NEWS:7 -msgid "*Release date: XXXX-XX-XX*" -msgstr "*Date de sortie : XXXX-XX-XX*" - -#: ../../../Misc/NEWS:10 ../../../Misc/NEWS:47 ../../../Misc/NEWS:76 -#: ../../../Misc/NEWS:417 ../../../Misc/NEWS:441 ../../../Misc/NEWS:764 -#: ../../../Misc/NEWS:795 ../../../Misc/NEWS:857 ../../../Misc/NEWS:973 -#: ../../../Misc/NEWS:1100 ../../../Misc/NEWS:1372 ../../../Misc/NEWS:1883 -#: ../../../Misc/NEWS:2120 ../../../Misc/NEWS:2328 ../../../Misc/NEWS:2626 -#: ../../../Misc/NEWS:3919 ../../../Misc/NEWS:4605 ../../../Misc/NEWS:4626 -#: ../../../Misc/NEWS:5361 ../../../Misc/NEWS:5379 ../../../Misc/NEWS:5899 -#: ../../../Misc/NEWS:5934 ../../../Misc/NEWS:5962 ../../../Misc/NEWS:6053 -#: ../../../Misc/NEWS:6140 ../../../Misc/NEWS:6245 ../../../Misc/NEWS:6287 -#: ../../../Misc/NEWS:6560 ../../../Misc/NEWS:6791 ../../../Misc/NEWS:6977 -#: ../../../Misc/NEWS:7117 -msgid "Core and Builtins" -msgstr "Noyeau et natifs" - -#: ../../../Misc/NEWS:12 -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." - -#: ../../../Misc/NEWS:15 -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." - -#: ../../../Misc/NEWS:17 -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." - -#: ../../../Misc/NEWS:21 ../../../Misc/NEWS:50 ../../../Misc/NEWS:123 -#: ../../../Misc/NEWS:513 ../../../Misc/NEWS:811 ../../../Misc/NEWS:893 -#: ../../../Misc/NEWS:997 ../../../Misc/NEWS:1169 ../../../Misc/NEWS:1509 -#: ../../../Misc/NEWS:1928 ../../../Misc/NEWS:2137 ../../../Misc/NEWS:2368 -#: ../../../Misc/NEWS:2910 ../../../Misc/NEWS:4049 ../../../Misc/NEWS:4756 -#: ../../../Misc/NEWS:5445 ../../../Misc/NEWS:5882 ../../../Misc/NEWS:5909 -#: ../../../Misc/NEWS:5947 ../../../Misc/NEWS:5967 ../../../Misc/NEWS:6074 -#: ../../../Misc/NEWS:6167 ../../../Misc/NEWS:6263 ../../../Misc/NEWS:6337 -#: ../../../Misc/NEWS:6592 ../../../Misc/NEWS:6811 ../../../Misc/NEWS:6984 -#: ../../../Misc/NEWS:7344 -msgid "Library" -msgstr "Bibliothèque" - -#: ../../../Misc/NEWS:23 -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." - -#: ../../../Misc/NEWS:26 -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*()``." - -#: ../../../Misc/NEWS:29 -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." - -#: ../../../Misc/NEWS:34 -msgid "Python 3.6.2" -msgstr "Python 3.6.2" - -#: ../../../Misc/NEWS:36 -msgid "*Release date: 2017-07-17*" -msgstr "*Date de sortie : 2017-07-17*" - -#: ../../../Misc/NEWS:38 ../../../Misc/NEWS:755 -msgid "No changes since release candidate 2" -msgstr "Aucun changement depuis la seconde *release candidate*" - -#: ../../../Misc/NEWS:42 -msgid "Python 3.6.2 release candidate 2" -msgstr "Python 3.6.2 release candidate 2" - -#: ../../../Misc/NEWS:44 -msgid "*Release date: 2017-07-07*" -msgstr "*Date de sortie : 2017-07-07*" - -#: ../../../Misc/NEWS:52 -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." - -#: ../../../Misc/NEWS:55 -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()``." - -#: ../../../Misc/NEWS:64 -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``)." - -#: ../../../Misc/NEWS:71 -msgid "Python 3.6.2 release candidate 1" -msgstr "Python 3.6.2 release candidate 1" - -#: ../../../Misc/NEWS:73 -msgid "*Release date: 2017-06-17*" -msgstr "*Date de sortie : 2017-06-17*" - -#: ../../../Misc/NEWS:78 -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'\")." - -#: ../../../Misc/NEWS:81 -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" - -#: ../../../Misc/NEWS:83 -msgid "" -"`bpo-29104 `__: Fixed parsing " -"backslashes in f-strings." -msgstr "" -"`bpo-29104 `__: Fixed parsing " -"backslashes in f-strings." - -#: ../../../Misc/NEWS:85 -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." - -#: ../../../Misc/NEWS:89 -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." - -#: ../../../Misc/NEWS:92 -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." - -#: ../../../Misc/NEWS:96 -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." - -#: ../../../Misc/NEWS:100 -msgid "" -"`bpo-29949 `__: Fix memory usage " -"regression of set and frozenset object." -msgstr "" -"`bpo-29949 `__: Fix memory usage " -"regression of set and frozenset object." - -#: ../../../Misc/NEWS:102 -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." - -#: ../../../Misc/NEWS:105 -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." - -#: ../../../Misc/NEWS:108 -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`." - -#: ../../../Misc/NEWS:111 -msgid "" -"`bpo-29600 `__: Fix wrapping coroutine " -"return values in StopIteration." -msgstr "" -"`bpo-29600 `__: Fix wrapping coroutine " -"return values in StopIteration." - -#: ../../../Misc/NEWS:113 -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." - -#: ../../../Misc/NEWS:116 -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." - -#: ../../../Misc/NEWS:119 -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." - -#: ../../../Misc/NEWS:125 -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" - -#: ../../../Misc/NEWS:128 -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." - -#: ../../../Misc/NEWS:131 -msgid "" -"`bpo-23894 `__: lib2to3 now recognizes " -"``rb'...'`` and ``f'...'`` strings." -msgstr "" -"`bpo-23894 `__: lib2to3 now recognizes " -"``rb'...'`` and ``f'...'`` strings." - -#: ../../../Misc/NEWS:133 -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." - -#: ../../../Misc/NEWS:136 -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." - -#: ../../../Misc/NEWS:140 -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." - -#: ../../../Misc/NEWS:144 -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." - -#: ../../../Misc/NEWS:147 -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." - -#: ../../../Misc/NEWS:150 -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." - -#: ../../../Misc/NEWS:154 -msgid "" -"`bpo-24484 `__: Avoid race condition in " -"multiprocessing cleanup (#2159)" -msgstr "" -"`bpo-24484 `__: Avoid race condition in " -"multiprocessing cleanup (#2159)" - -#: ../../../Misc/NEWS:156 -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." - -#: ../../../Misc/NEWS:159 -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." - -#: ../../../Misc/NEWS:162 -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" - -#: ../../../Misc/NEWS:166 -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." - -#: ../../../Misc/NEWS:169 -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" - -#: ../../../Misc/NEWS:172 -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." - -#: ../../../Misc/NEWS:175 -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." - -#: ../../../Misc/NEWS:178 -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." - -#: ../../../Misc/NEWS:181 -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." - -#: ../../../Misc/NEWS:184 -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" - -#: ../../../Misc/NEWS:187 -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." - -#: ../../../Misc/NEWS:190 -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." - -#: ../../../Misc/NEWS:193 -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." - -#: ../../../Misc/NEWS:196 -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." - -#: ../../../Misc/NEWS:199 -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." - -#: ../../../Misc/NEWS:202 -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." - -#: ../../../Misc/NEWS:206 -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." - -#: ../../../Misc/NEWS:210 -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``." - -#: ../../../Misc/NEWS:213 -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." - -#: ../../../Misc/NEWS:217 -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)...'``)." - -#: ../../../Misc/NEWS:223 -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." - -#: ../../../Misc/NEWS:225 -msgid "" -"Revert `bpo-26293 `__ for zipfile " -"breakage. See also `bpo-29094 `__." -msgstr "" -"Revert `bpo-26293 `__ for zipfile " -"breakage. See also `bpo-29094 `__." - -#: ../../../Misc/NEWS:227 -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." - -#: ../../../Misc/NEWS:231 -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." - -#: ../../../Misc/NEWS:234 -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." - -#: ../../../Misc/NEWS:238 -msgid "" -"`bpo-30205 `__: Fix getsockname() for " -"unbound AF_UNIX sockets on Linux." -msgstr "" -"`bpo-30205 `__: Fix getsockname() for " -"unbound AF_UNIX sockets on Linux." - -#: ../../../Misc/NEWS:240 -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." - -#: ../../../Misc/NEWS:242 -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()." - -#: ../../../Misc/NEWS:247 -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." - -#: ../../../Misc/NEWS:250 -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." - -#: ../../../Misc/NEWS:253 -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." - -#: ../../../Misc/NEWS:256 -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." - -#: ../../../Misc/NEWS:259 -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." - -#: ../../../Misc/NEWS:262 -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." - -#: ../../../Misc/NEWS:265 -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." - -#: ../../../Misc/NEWS:268 -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." - -#: ../../../Misc/NEWS:271 -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." - -#: ../../../Misc/NEWS:275 -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." - -#: ../../../Misc/NEWS:278 -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." - -#: ../../../Misc/NEWS:281 -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." - -#: ../../../Misc/NEWS:284 -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." - -#: ../../../Misc/NEWS:286 -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." - -#: ../../../Misc/NEWS:289 -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." - -#: ../../../Misc/NEWS:292 -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." - -#: ../../../Misc/NEWS:295 -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." - -#: ../../../Misc/NEWS:298 -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." - -#: ../../../Misc/NEWS:301 -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." - -#: ../../../Misc/NEWS:304 -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." - -#: ../../../Misc/NEWS:308 -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." - -#: ../../../Misc/NEWS:312 ../../../Misc/NEWS:643 ../../../Misc/NEWS:1764 -#: ../../../Misc/NEWS:2036 ../../../Misc/NEWS:2235 ../../../Misc/NEWS:2494 -#: ../../../Misc/NEWS:3620 ../../../Misc/NEWS:4447 ../../../Misc/NEWS:4615 -#: ../../../Misc/NEWS:5158 ../../../Misc/NEWS:5675 ../../../Misc/NEWS:6009 -#: ../../../Misc/NEWS:6516 ../../../Misc/NEWS:8533 -msgid "IDLE" -msgstr "IDLE" - -#: ../../../Misc/NEWS:314 -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." - -#: ../../../Misc/NEWS:319 -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." - -#: ../../../Misc/NEWS:322 -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." - -#: ../../../Misc/NEWS:325 -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." - -#: ../../../Misc/NEWS:328 -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." - -#: ../../../Misc/NEWS:332 -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." - -#: ../../../Misc/NEWS:337 ../../../Misc/NEWS:668 ../../../Misc/NEWS:834 -#: ../../../Misc/NEWS:1343 ../../../Misc/NEWS:1784 ../../../Misc/NEWS:2270 -#: ../../../Misc/NEWS:2606 ../../../Misc/NEWS:3894 ../../../Misc/NEWS:4475 -#: ../../../Misc/NEWS:6780 ../../../Misc/NEWS:7096 ../../../Misc/NEWS:8692 -msgid "C API" -msgstr "API C" - -#: ../../../Misc/NEWS:339 -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." - -#: ../../../Misc/NEWS:344 ../../../Misc/NEWS:428 ../../../Misc/NEWS:719 -#: ../../../Misc/NEWS:784 ../../../Misc/NEWS:956 ../../../Misc/NEWS:1077 -#: ../../../Misc/NEWS:1350 ../../../Misc/NEWS:1806 ../../../Misc/NEWS:2092 -#: ../../../Misc/NEWS:2276 ../../../Misc/NEWS:2591 ../../../Misc/NEWS:3791 -#: ../../../Misc/NEWS:4535 ../../../Misc/NEWS:5257 ../../../Misc/NEWS:5810 -#: ../../../Misc/NEWS:5870 ../../../Misc/NEWS:5887 ../../../Misc/NEWS:6128 -#: ../../../Misc/NEWS:6233 ../../../Misc/NEWS:6740 ../../../Misc/NEWS:6952 -#: ../../../Misc/NEWS:7088 ../../../Misc/NEWS:8612 -msgid "Build" -msgstr "Build" - -#: ../../../Misc/NEWS:346 -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``." - -#: ../../../Misc/NEWS:350 -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``." - -#: ../../../Misc/NEWS:353 -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``." - -#: ../../../Misc/NEWS:357 -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``." - -#: ../../../Misc/NEWS:361 -msgid "" -"`bpo-29643 `__: Fix ``--enable-" -"optimization`` didn't work." -msgstr "" -"`bpo-29643 `__: Fix ``--enable-" -"optimization`` didn't work." - -#: ../../../Misc/NEWS:364 ../../../Misc/NEWS:685 ../../../Misc/NEWS:839 -#: ../../../Misc/NEWS:943 ../../../Misc/NEWS:2307 ../../../Misc/NEWS:2562 -#: ../../../Misc/NEWS:3730 ../../../Misc/NEWS:4483 ../../../Misc/NEWS:5211 -#: ../../../Misc/NEWS:5772 ../../../Misc/NEWS:6025 ../../../Misc/NEWS:6224 -#: ../../../Misc/NEWS:6531 ../../../Misc/NEWS:8721 -msgid "Documentation" -msgstr "Documentation" - -#: ../../../Misc/NEWS:366 -msgid "" -"`bpo-30176 `__: Add missing attribute " -"related constants in curses documentation." -msgstr "" -"`bpo-30176 `__: Add missing attribute " -"related constants in curses documentation." - -#: ../../../Misc/NEWS:368 -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." - -#: ../../../Misc/NEWS:373 -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." - -#: ../../../Misc/NEWS:377 -msgid "" -"`bpo-26985 `__: Add missing info of code " -"object in inspect documentation." -msgstr "" -"`bpo-26985 `__: Add missing info of code " -"object in inspect documentation." - -#: ../../../Misc/NEWS:380 ../../../Misc/NEWS:774 ../../../Misc/NEWS:846 -#: ../../../Misc/NEWS:1841 ../../../Misc/NEWS:2299 ../../../Misc/NEWS:2614 -#: ../../../Misc/NEWS:3873 ../../../Misc/NEWS:4507 ../../../Misc/NEWS:5333 -#: ../../../Misc/NEWS:5859 ../../../Misc/NEWS:6541 ../../../Misc/NEWS:6757 -#: ../../../Misc/NEWS:6964 ../../../Misc/NEWS:8867 -msgid "Tools/Demos" -msgstr "Outils / Démos" - -#: ../../../Misc/NEWS:382 -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." - -#: ../../../Misc/NEWS:386 ../../../Misc/NEWS:698 ../../../Misc/NEWS:948 -#: ../../../Misc/NEWS:1086 ../../../Misc/NEWS:1361 ../../../Misc/NEWS:1792 -#: ../../../Misc/NEWS:2065 ../../../Misc/NEWS:2316 ../../../Misc/NEWS:2574 -#: ../../../Misc/NEWS:3748 ../../../Misc/NEWS:4488 ../../../Misc/NEWS:4610 -#: ../../../Misc/NEWS:5234 ../../../Misc/NEWS:5797 ../../../Misc/NEWS:6040 -#: ../../../Misc/NEWS:6217 ../../../Misc/NEWS:6522 ../../../Misc/NEWS:6748 -#: ../../../Misc/NEWS:6957 ../../../Misc/NEWS:8761 -msgid "Tests" -msgstr "Tests" - -#: ../../../Misc/NEWS:388 -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." - -#: ../../../Misc/NEWS:393 -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." - -#: ../../../Misc/NEWS:400 ../../../Misc/NEWS:651 ../../../Misc/NEWS:779 -#: ../../../Misc/NEWS:1072 ../../../Misc/NEWS:1316 ../../../Misc/NEWS:1848 -#: ../../../Misc/NEWS:2080 ../../../Misc/NEWS:2584 ../../../Misc/NEWS:3854 -#: ../../../Misc/NEWS:4519 ../../../Misc/NEWS:5316 ../../../Misc/NEWS:5367 -#: ../../../Misc/NEWS:5821 ../../../Misc/NEWS:7102 ../../../Misc/NEWS:8907 -msgid "Windows" -msgstr "Windows" - -#: ../../../Misc/NEWS:402 -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" - -#: ../../../Misc/NEWS:405 -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." - -#: ../../../Misc/NEWS:412 -msgid "Python 3.6.1" -msgstr "Python 3.6.1" - -#: ../../../Misc/NEWS:414 -msgid "*Release date: 2017-03-21*" -msgstr "*Release date: 2017-03-21*" - -#: ../../../Misc/NEWS:419 -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." - -#: ../../../Misc/NEWS:430 -msgid "" -"`bpo-27593 `__: fix format of git " -"information used in sys.version" -msgstr "" -"`bpo-27593 `__: fix format of git " -"information used in sys.version" - -#: ../../../Misc/NEWS:432 -msgid "Fix incompatible comment in python.h" -msgstr "" - -#: ../../../Misc/NEWS:436 -msgid "Python 3.6.1 release candidate 1" -msgstr "Python 3.6.1 release candidate 1" - -#: ../../../Misc/NEWS:438 -msgid "*Release date: 2017-03-04*" -msgstr "*Date de sortie : 2017-03-04*" - -#: ../../../Misc/NEWS:443 -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__." - -#: ../../../Misc/NEWS:446 -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." - -#: ../../../Misc/NEWS:449 -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." - -#: ../../../Misc/NEWS:453 -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." - -#: ../../../Misc/NEWS:456 -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." - -#: ../../../Misc/NEWS:459 -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." - -#: ../../../Misc/NEWS:463 -msgid "" -"`bpo-29347 `__: Fixed possibly " -"dereferencing undefined pointers when creating weakref objects." -msgstr "" -"`bpo-29347 `__: Fixed possibly " -"dereferencing undefined pointers when creating weakref objects." - -#: ../../../Misc/NEWS:466 -msgid "" -"`bpo-29438 `__: Fixed use-after-free " -"problem in key sharing dict." -msgstr "" -"`bpo-29438 `__: Fixed use-after-free " -"problem in key sharing dict." - -#: ../../../Misc/NEWS:468 -msgid "" -"`bpo-29319 `__: Prevent " -"RunMainFromImporter overwriting sys.path[0]." -msgstr "" -"`bpo-29319 `__: Prevent " -"RunMainFromImporter overwriting sys.path[0]." - -#: ../../../Misc/NEWS:470 -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." - -#: ../../../Misc/NEWS:473 -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()." - -#: ../../../Misc/NEWS:476 -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)." - -#: ../../../Misc/NEWS:478 -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." - -#: ../../../Misc/NEWS:480 ../../../Misc/NEWS:3923 -msgid "" -"`bpo-28932 `__: Do not include if it does not exist." -msgstr "" -"`bpo-28932 `__: Do not include if it does not exist." - -#: ../../../Misc/NEWS:482 ../../../Misc/NEWS:3928 -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." - -#: ../../../Misc/NEWS:485 ../../../Misc/NEWS:3931 -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." - -#: ../../../Misc/NEWS:488 -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." - -#: ../../../Misc/NEWS:492 -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." - -#: ../../../Misc/NEWS:495 -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." - -#: ../../../Misc/NEWS:498 ../../../Misc/NEWS:3934 -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()." - -#: ../../../Misc/NEWS:501 -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." - -#: ../../../Misc/NEWS:504 -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%." - -#: ../../../Misc/NEWS:508 -msgid "Extension Modules" -msgstr "" - -#: ../../../Misc/NEWS:510 -msgid "" -"`bpo-29169 `__: Update zlib to 1.2.11." -msgstr "" -"`bpo-29169 `__: Update zlib to 1.2.11." - -#: ../../../Misc/NEWS:515 -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." - -#: ../../../Misc/NEWS:518 -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." - -#: ../../../Misc/NEWS:521 -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." - -#: ../../../Misc/NEWS:524 -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." - -#: ../../../Misc/NEWS:527 -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." - -#: ../../../Misc/NEWS:530 -msgid "" -"`bpo-29376 `__: Fix assertion error in " -"threading._DummyThread.is_alive()." -msgstr "" -"`bpo-29376 `__: Fix assertion error in " -"threading._DummyThread.is_alive()." - -#: ../../../Misc/NEWS:532 -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." - -#: ../../../Misc/NEWS:535 -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." - -#: ../../../Misc/NEWS:538 -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." - -#: ../../../Misc/NEWS:541 -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." - -#: ../../../Misc/NEWS:544 -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." - -#: ../../../Misc/NEWS:548 -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." - -#: ../../../Misc/NEWS:551 -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." - -#: ../../../Misc/NEWS:554 -msgid "" -"`bpo-29416 `__: Prevent infinite loop in " -"pathlib.Path.mkdir" -msgstr "" -"`bpo-29416 `__: Prevent infinite loop in " -"pathlib.Path.mkdir" - -#: ../../../Misc/NEWS:556 -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." - -#: ../../../Misc/NEWS:559 -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)." - -#: ../../../Misc/NEWS:562 -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." - -#: ../../../Misc/NEWS:565 -msgid "" -"`bpo-28735 `__: Fixed the comparison of " -"mock.MagickMock with mock.ANY." -msgstr "" -"`bpo-28735 `__: Fixed the comparison of " -"mock.MagickMock with mock.ANY." - -#: ../../../Misc/NEWS:567 -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." - -#: ../../../Misc/NEWS:570 -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." - -#: ../../../Misc/NEWS:573 -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." - -#: ../../../Misc/NEWS:575 -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." - -#: ../../../Misc/NEWS:579 -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." - -#: ../../../Misc/NEWS:583 -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." - -#: ../../../Misc/NEWS:586 -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." - -#: ../../../Misc/NEWS:590 ../../../Misc/NEWS:4051 -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." - -#: ../../../Misc/NEWS:593 ../../../Misc/NEWS:4054 -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." - -#: ../../../Misc/NEWS:596 -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." - -#: ../../../Misc/NEWS:599 -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." - -#: ../../../Misc/NEWS:602 -msgid "" -"`bpo-29079 `__: Prevent infinite loop in " -"pathlib.resolve() on Windows" -msgstr "" -"`bpo-29079 `__: Prevent infinite loop in " -"pathlib.resolve() on Windows" - -#: ../../../Misc/NEWS:604 ../../../Misc/NEWS:4057 -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." - -#: ../../../Misc/NEWS:607 ../../../Misc/NEWS:4060 -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." - -#: ../../../Misc/NEWS:611 ../../../Misc/NEWS:4064 -msgid "" -"`bpo-9770 `__: curses.ascii predicates " -"now work correctly with negative integers." -msgstr "" -"`bpo-9770 `__: curses.ascii predicates " -"now work correctly with negative integers." - -#: ../../../Misc/NEWS:614 ../../../Misc/NEWS:4067 -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." - -#: ../../../Misc/NEWS:617 ../../../Misc/NEWS:4070 -msgid "" -"`bpo-28923 `__: Remove editor artifacts " -"from Tix.py." -msgstr "" -"`bpo-28923 `__: Remove editor artifacts " -"from Tix.py." - -#: ../../../Misc/NEWS:619 -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." - -#: ../../../Misc/NEWS:622 ../../../Misc/NEWS:4072 -msgid "" -"`bpo-28871 `__: Fixed a crash when " -"deallocate deep ElementTree." -msgstr "" -"`bpo-28871 `__: Fixed a crash when " -"deallocate deep ElementTree." - -#: ../../../Misc/NEWS:624 ../../../Misc/NEWS:4074 -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." - -#: ../../../Misc/NEWS:628 -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." - -#: ../../../Misc/NEWS:631 ../../../Misc/NEWS:4081 -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." - -#: ../../../Misc/NEWS:635 ../../../Misc/NEWS:4085 -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." - -#: ../../../Misc/NEWS:638 -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." - -#: ../../../Misc/NEWS:645 -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)." - -#: ../../../Misc/NEWS:647 -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." - -#: ../../../Misc/NEWS:653 -msgid "" -"`bpo-29579 `__: Removes readme.txt from " -"the installer" -msgstr "" -"`bpo-29579 `__: Removes readme.txt from " -"the installer" - -#: ../../../Misc/NEWS:655 -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)" - -#: ../../../Misc/NEWS:657 -msgid "" -"`bpo-28164 `__: Correctly handle special " -"console filenames (patch by Eryk Sun)" -msgstr "" -"`bpo-28164 `__: Correctly handle special " -"console filenames (patch by Eryk Sun)" - -#: ../../../Misc/NEWS:659 -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)" - -#: ../../../Misc/NEWS:661 -msgid "" -"`bpo-29392 `__: Prevent crash when " -"passing invalid arguments into msvcrt module." -msgstr "" -"`bpo-29392 `__: Prevent crash when " -"passing invalid arguments into msvcrt module." - -#: ../../../Misc/NEWS:663 -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)" - -#: ../../../Misc/NEWS:665 -msgid "" -"`bpo-28896 `__: Deprecate " -"WindowsRegistryFinder and disable it by default." -msgstr "" -"`bpo-28896 `__: Deprecate " -"WindowsRegistryFinder and disable it by default." - -#: ../../../Misc/NEWS:670 -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." - -#: ../../../Misc/NEWS:674 -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." - -#: ../../../Misc/NEWS:680 -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." - -#: ../../../Misc/NEWS:687 -msgid "" -"`bpo-28929 `__: Link the documentation " -"to its source file on GitHub." -msgstr "" -"`bpo-28929 `__: Link the documentation " -"to its source file on GitHub." - -#: ../../../Misc/NEWS:689 -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." - -#: ../../../Misc/NEWS:692 -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." - -#: ../../../Misc/NEWS:695 -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." - -#: ../../../Misc/NEWS:700 -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." - -#: ../../../Misc/NEWS:704 -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)" - -#: ../../../Misc/NEWS:709 -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." - -#: ../../../Misc/NEWS:712 -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." - -#: ../../../Misc/NEWS:715 -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." - -#: ../../../Misc/NEWS:721 -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." - -#: ../../../Misc/NEWS:725 -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." - -#: ../../../Misc/NEWS:727 -msgid "" -"`bpo-26851 `__: Set Android compilation " -"and link flags." -msgstr "" -"`bpo-26851 `__: Set Android compilation " -"and link flags." - -#: ../../../Misc/NEWS:729 -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" - -#: ../../../Misc/NEWS:732 ../../../Misc/NEWS:4537 -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" - -#: ../../../Misc/NEWS:734 ../../../Misc/NEWS:4539 -msgid "" -"`bpo-23903 `__: Added missed names to PC/" -"python3.def." -msgstr "" -"`bpo-23903 `__: Added missed names to PC/" -"python3.def." - -#: ../../../Misc/NEWS:736 -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." - -#: ../../../Misc/NEWS:739 -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." - -#: ../../../Misc/NEWS:743 -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." - -#: ../../../Misc/NEWS:747 -msgid "" -"`bpo-28849 `__: Do not define sys." -"implementation._multiarch on Android." -msgstr "" -"`bpo-28849 `__: Do not define sys." -"implementation._multiarch on Android." - -#: ../../../Misc/NEWS:751 -msgid "Python 3.6.0" -msgstr "Python 3.6.0" - -#: ../../../Misc/NEWS:753 -msgid "*Release date: 2016-12-23*" -msgstr "*Date de sortie : 2016-12-23*" - -#: ../../../Misc/NEWS:759 -msgid "Python 3.6.0 release candidate 2" -msgstr "Python 3.6.0 release candidate 2" - -#: ../../../Misc/NEWS:761 -msgid "*Release date: 2016-12-16*" -msgstr "*Date de sortie : 2016-12-16*" - -#: ../../../Misc/NEWS:766 -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." - -#: ../../../Misc/NEWS:770 -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)" - -#: ../../../Misc/NEWS:776 -msgid "" -"`bpo-28770 `__: Fix python-gdb.py for " -"fastcalls." -msgstr "" -"`bpo-28770 `__: Fix python-gdb.py for " -"fastcalls." - -#: ../../../Misc/NEWS:781 -msgid "" -"`bpo-28896 `__: Deprecate " -"WindowsRegistryFinder." -msgstr "" -"`bpo-28896 `__: Deprecate " -"WindowsRegistryFinder." - -#: ../../../Misc/NEWS:786 -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." - -#: ../../../Misc/NEWS:790 -msgid "Python 3.6.0 release candidate 1" -msgstr "Python 3.6.0 release candidate 1" - -#: ../../../Misc/NEWS:792 -msgid "*Release date: 2016-12-06*" -msgstr "*Date de sortie : 2016-12-06*" - -#: ../../../Misc/NEWS:797 -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()``." - -#: ../../../Misc/NEWS:802 -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." - -#: ../../../Misc/NEWS:806 -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 `__)." - -#: ../../../Misc/NEWS:813 -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." - -#: ../../../Misc/NEWS:816 -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." - -#: ../../../Misc/NEWS:819 -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." - -#: ../../../Misc/NEWS:824 -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." - -#: ../../../Misc/NEWS:828 -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." - -#: ../../../Misc/NEWS:831 -msgid "" -"`bpo-28843 `__: Fix asyncio C Task to " -"handle exceptions __traceback__." -msgstr "" -"`bpo-28843 `__: Fix asyncio C Task to " -"handle exceptions __traceback__." - -#: ../../../Misc/NEWS:836 ../../../Misc/NEWS:4477 -msgid "" -"`bpo-28808 `__: " -"PyUnicode_CompareWithASCIIString() now never raises exceptions." -msgstr "" -"`bpo-28808 `__: " -"PyUnicode_CompareWithASCIIString() now never raises exceptions." - -#: ../../../Misc/NEWS:841 -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()``." - -#: ../../../Misc/NEWS:848 -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." - -#: ../../../Misc/NEWS:852 -msgid "Python 3.6.0 beta 4" -msgstr "Python 3.6.0 beta 4" - -#: ../../../Misc/NEWS:854 -msgid "*Release date: 2016-11-21*" -msgstr "*Date de sortie : 2016-11-21*" - -#: ../../../Misc/NEWS:859 -msgid "" -"`bpo-28532 `__: Show sys.version when -V " -"option is supplied twice." -msgstr "" -"`bpo-28532 `__: Show sys.version when -V " -"option is supplied twice." - -#: ../../../Misc/NEWS:861 -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." - -#: ../../../Misc/NEWS:865 -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." - -#: ../../../Misc/NEWS:868 -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." - -#: ../../../Misc/NEWS:871 ../../../Misc/NEWS:3940 -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." - -#: ../../../Misc/NEWS:874 ../../../Misc/NEWS:3943 -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." - -#: ../../../Misc/NEWS:877 -msgid "" -"`bpo-28665 `__: Improve speed of the " -"STORE_DEREF opcode by 40%." -msgstr "" -"`bpo-28665 `__: Improve speed of the " -"STORE_DEREF opcode by 40%." - -#: ../../../Misc/NEWS:879 -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." - -#: ../../../Misc/NEWS:882 -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." - -#: ../../../Misc/NEWS:887 -msgid "" -"`bpo-26182 `__: Fix a refleak in code " -"that raises DeprecationWarning." -msgstr "" -"`bpo-26182 `__: Fix a refleak in code " -"that raises DeprecationWarning." - -#: ../../../Misc/NEWS:889 -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." - -#: ../../../Misc/NEWS:895 -msgid "" -"`bpo-28752 `__: Restored the " -"__reduce__() methods of datetime objects." -msgstr "" -"`bpo-28752 `__: Restored the " -"__reduce__() methods of datetime objects." - -#: ../../../Misc/NEWS:897 -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)." - -#: ../../../Misc/NEWS:902 -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." - -#: ../../../Misc/NEWS:905 ../../../Misc/NEWS:4088 -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." - -#: ../../../Misc/NEWS:908 -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" - -#: ../../../Misc/NEWS:911 -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." - -#: ../../../Misc/NEWS:915 ../../../Misc/NEWS:4097 -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." - -#: ../../../Misc/NEWS:919 -msgid "" -"`bpo-28600 `__: Optimize loop.call_soon." -msgstr "" -"`bpo-28600 `__: Optimize loop.call_soon." - -#: ../../../Misc/NEWS:921 ../../../Misc/NEWS:4427 -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." - -#: ../../../Misc/NEWS:924 -msgid "" -"`bpo-28634 `__: Fix asyncio.isfuture() " -"to support unittest.Mock." -msgstr "" -"`bpo-28634 `__: Fix asyncio.isfuture() " -"to support unittest.Mock." - -#: ../../../Misc/NEWS:926 -msgid "" -"`bpo-26081 `__: Fix refleak in _asyncio." -"Future.__iter__().throw." -msgstr "" -"`bpo-26081 `__: Fix refleak in _asyncio." -"Future.__iter__().throw." - -#: ../../../Misc/NEWS:928 ../../../Misc/NEWS:4430 -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." - -#: ../../../Misc/NEWS:931 ../../../Misc/NEWS:4433 -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." - -#: ../../../Misc/NEWS:933 ../../../Misc/NEWS:4435 -msgid "" -"`bpo-28653 `__: Fix a refleak in " -"functools.lru_cache." -msgstr "" -"`bpo-28653 `__: Fix a refleak in " -"functools.lru_cache." - -#: ../../../Misc/NEWS:935 ../../../Misc/NEWS:4437 -msgid "" -"`bpo-28703 `__: Fix asyncio." -"iscoroutinefunction to handle Mock objects." -msgstr "" -"`bpo-28703 `__: Fix asyncio." -"iscoroutinefunction to handle Mock objects." - -#: ../../../Misc/NEWS:937 -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)." - -#: ../../../Misc/NEWS:940 -msgid "" -"`bpo-28720 `__: Add collections.abc." -"AsyncGenerator." -msgstr "" -"`bpo-28720 `__: Add collections.abc." -"AsyncGenerator." - -#: ../../../Misc/NEWS:945 ../../../Misc/NEWS:4485 -msgid "" -"`bpo-28513 `__: Documented command-line " -"interface of zipfile." -msgstr "" -"`bpo-28513 `__: Documented command-line " -"interface of zipfile." - -#: ../../../Misc/NEWS:950 ../../../Misc/NEWS:4493 -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." - -#: ../../../Misc/NEWS:953 ../../../Misc/NEWS:4496 -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." - -#: ../../../Misc/NEWS:958 ../../../Misc/NEWS:4541 -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." - -#: ../../../Misc/NEWS:961 ../../../Misc/NEWS:4544 -msgid "" -"`bpo-26359 `__: Rename --with-" -"optimiations to --enable-optimizations." -msgstr "" -"`bpo-26359 `__: Rename --with-" -"optimiations to --enable-optimizations." - -#: ../../../Misc/NEWS:963 ../../../Misc/NEWS:4595 -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." - -#: ../../../Misc/NEWS:968 -msgid "Python 3.6.0 beta 3" -msgstr "Python 3.6.0 beta 3" - -#: ../../../Misc/NEWS:970 -msgid "*Release date: 2016-10-31*" -msgstr "*Date de sortie : 2016-10-31*" - -#: ../../../Misc/NEWS:975 -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." - -#: ../../../Misc/NEWS:979 -msgid "" -"`bpo-28509 `__: dict.update() no longer " -"allocate unnecessary large memory." -msgstr "" -"`bpo-28509 `__: dict.update() no longer " -"allocate unnecessary large memory." - -#: ../../../Misc/NEWS:981 ../../../Misc/NEWS:3946 -msgid "" -"`bpo-28426 `__: Fixed potential crash in " -"PyUnicode_AsDecodedObject() in debug build." -msgstr "" -"`bpo-28426 `__: Fixed potential crash in " -"PyUnicode_AsDecodedObject() in debug build." - -#: ../../../Misc/NEWS:984 -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." - -#: ../../../Misc/NEWS:987 -msgid "" -"`bpo-28214 `__: Improved exception " -"reporting for problematic __set_name__ attributes." -msgstr "" -"`bpo-28214 `__: Improved exception " -"reporting for problematic __set_name__ attributes." - -#: ../../../Misc/NEWS:990 ../../../Misc/NEWS:3949 -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()." - -#: ../../../Misc/NEWS:993 -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." - -#: ../../../Misc/NEWS:999 ../../../Misc/NEWS:4101 -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." - -#: ../../../Misc/NEWS:1002 ../../../Misc/NEWS:4104 -msgid "" -"`bpo-28549 `__: Fixed segfault in " -"curses's addch() with ncurses6." -msgstr "" -"`bpo-28549 `__: Fixed segfault in " -"curses's addch() with ncurses6." - -#: ../../../Misc/NEWS:1004 ../../../Misc/NEWS:4106 -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." - -#: ../../../Misc/NEWS:1008 ../../../Misc/NEWS:4110 -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." - -#: ../../../Misc/NEWS:1011 ../../../Misc/NEWS:4113 -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." - -#: ../../../Misc/NEWS:1015 -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." - -#: ../../../Misc/NEWS:1018 ../../../Misc/NEWS:4117 -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." - -#: ../../../Misc/NEWS:1022 ../../../Misc/NEWS:4121 -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." - -#: ../../../Misc/NEWS:1025 ../../../Misc/NEWS:4124 -msgid "" -"`bpo-28353 `__: os.fwalk() no longer " -"fails on broken links." -msgstr "" -"`bpo-28353 `__: os.fwalk() no longer " -"fails on broken links." - -#: ../../../Misc/NEWS:1027 -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)." - -#: ../../../Misc/NEWS:1030 -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." - -#: ../../../Misc/NEWS:1033 ../../../Misc/NEWS:4126 -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." - -#: ../../../Misc/NEWS:1036 -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." - -#: ../../../Misc/NEWS:1038 -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." - -#: ../../../Misc/NEWS:1044 -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." - -#: ../../../Misc/NEWS:1047 -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." - -#: ../../../Misc/NEWS:1049 -msgid "" -"`bpo-28480 `__: Fix error building " -"socket module when multithreading is disabled." -msgstr "" -"`bpo-28480 `__: Fix error building " -"socket module when multithreading is disabled." - -#: ../../../Misc/NEWS:1052 ../../../Misc/NEWS:4131 -msgid "" -"`bpo-24452 `__: Make webbrowser support " -"Chrome on Mac OS X." -msgstr "" -"`bpo-24452 `__: Make webbrowser support " -"Chrome on Mac OS X." - -#: ../../../Misc/NEWS:1054 ../../../Misc/NEWS:4133 -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." - -#: ../../../Misc/NEWS:1057 -msgid "" -"`bpo-28492 `__: Fix how StopIteration " -"exception is raised in _asyncio.Future." -msgstr "" -"`bpo-28492 `__: Fix how StopIteration " -"exception is raised in _asyncio.Future." - -#: ../../../Misc/NEWS:1059 -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." - -#: ../../../Misc/NEWS:1061 ../../../Misc/NEWS:4417 -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." - -#: ../../../Misc/NEWS:1065 ../../../Misc/NEWS:4421 -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." - -#: ../../../Misc/NEWS:1069 -msgid "" -"`bpo-28544 `__: Implement asyncio.Task " -"in C." -msgstr "" -"`bpo-28544 `__: Implement asyncio.Task " -"in C." - -#: ../../../Misc/NEWS:1074 -msgid "" -"`bpo-28522 `__: Fixes mishandled buffer " -"reallocation in getpathp.c" -msgstr "" -"`bpo-28522 `__: Fixes mishandled buffer " -"reallocation in getpathp.c" - -#: ../../../Misc/NEWS:1079 ../../../Misc/NEWS:4546 -msgid "" -"`bpo-28444 `__: Fix missing extensions " -"modules when cross compiling." -msgstr "" -"`bpo-28444 `__: Fix missing extensions " -"modules when cross compiling." - -#: ../../../Misc/NEWS:1081 -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." - -#: ../../../Misc/NEWS:1083 ../../../Misc/NEWS:4548 -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." - -#: ../../../Misc/NEWS:1088 -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." - -#: ../../../Misc/NEWS:1091 ../../../Misc/NEWS:4498 -msgid "" -"`bpo-28409 `__: regrtest: fix the parser " -"of command line arguments." -msgstr "" -"`bpo-28409 `__: regrtest: fix the parser " -"of command line arguments." - -#: ../../../Misc/NEWS:1095 -msgid "Python 3.6.0 beta 2" -msgstr "Python 3.6.0 beta 2" - -#: ../../../Misc/NEWS:1097 -msgid "*Release date: 2016-10-10*" -msgstr "*Date de sortie : 2016-10-10*" - -#: ../../../Misc/NEWS:1102 -msgid "" -"`bpo-28183 `__: Optimize and cleanup " -"dict iteration." -msgstr "" -"`bpo-28183 `__: Optimize and cleanup " -"dict iteration." - -#: ../../../Misc/NEWS:1104 -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." - -#: ../../../Misc/NEWS:1107 ../../../Misc/NEWS:3952 -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." - -#: ../../../Misc/NEWS:1110 ../../../Misc/NEWS:3955 -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." - -#: ../../../Misc/NEWS:1113 -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." - -#: ../../../Misc/NEWS:1116 ../../../Misc/NEWS:3958 -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." - -#: ../../../Misc/NEWS:1119 ../../../Misc/NEWS:3961 -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." - -#: ../../../Misc/NEWS:1122 ../../../Misc/NEWS:3964 -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." - -#: ../../../Misc/NEWS:1125 ../../../Misc/NEWS:3967 -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." - -#: ../../../Misc/NEWS:1128 -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." - -#: ../../../Misc/NEWS:1131 ../../../Misc/NEWS:3970 -msgid "" -"`bpo-28350 `__: String constants with " -"null character no longer interned." -msgstr "" -"`bpo-28350 `__: String constants with " -"null character no longer interned." - -#: ../../../Misc/NEWS:1133 ../../../Misc/NEWS:3972 -msgid "" -"`bpo-26617 `__: Fix crash when GC runs " -"during weakref callbacks." -msgstr "" -"`bpo-26617 `__: Fix crash when GC runs " -"during weakref callbacks." - -#: ../../../Misc/NEWS:1135 ../../../Misc/NEWS:3974 -msgid "" -"`bpo-27942 `__: String constants now " -"interned recursively in tuples and frozensets." -msgstr "" -"`bpo-27942 `__: String constants now " -"interned recursively in tuples and frozensets." - -#: ../../../Misc/NEWS:1137 ../../../Misc/NEWS:3976 -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." - -#: ../../../Misc/NEWS:1140 -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." - -#: ../../../Misc/NEWS:1143 -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." - -#: ../../../Misc/NEWS:1146 -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." - -#: ../../../Misc/NEWS:1149 ../../../Misc/NEWS:3982 -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." - -#: ../../../Misc/NEWS:1152 -msgid "" -"`bpo-28192 `__: Don't import readline in " -"isolated mode." -msgstr "" -"`bpo-28192 `__: Don't import readline in " -"isolated mode." - -#: ../../../Misc/NEWS:1154 -msgid "Upgrade internal unicode databases to Unicode version 9.0.0." -msgstr "" - -#: ../../../Misc/NEWS:1156 ../../../Misc/NEWS:3985 -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." - -#: ../../../Misc/NEWS:1159 -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()." - -#: ../../../Misc/NEWS:1162 -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." - -#: ../../../Misc/NEWS:1165 -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." - -#: ../../../Misc/NEWS:1171 -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." - -#: ../../../Misc/NEWS:1174 -msgid "" -"`bpo-28317 `__: The disassembler now " -"decodes FORMAT_VALUE argument." -msgstr "" -"`bpo-28317 `__: The disassembler now " -"decodes FORMAT_VALUE argument." - -#: ../../../Misc/NEWS:1176 ../../../Misc/NEWS:4136 -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." - -#: ../../../Misc/NEWS:1180 -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." - -#: ../../../Misc/NEWS:1183 -msgid "" -"`bpo-27181 `__ remove statistics." -"geometric_mean and defer until 3.7." -msgstr "" -"`bpo-27181 `__ remove statistics." -"geometric_mean and defer until 3.7." - -#: ../../../Misc/NEWS:1185 -msgid "" -"`bpo-28229 `__: lzma module now supports " -"pathlib." -msgstr "" -"`bpo-28229 `__: lzma module now supports " -"pathlib." - -#: ../../../Misc/NEWS:1187 ../../../Misc/NEWS:4140 -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." - -#: ../../../Misc/NEWS:1189 -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." - -#: ../../../Misc/NEWS:1191 -msgid "" -"`bpo-28227 `__: gzip now supports " -"pathlib. Patch by Ethan Furman." -msgstr "" -"`bpo-28227 `__: gzip now supports " -"pathlib. Patch by Ethan Furman." - -#: ../../../Misc/NEWS:1193 -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." - -#: ../../../Misc/NEWS:1196 -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." - -#: ../../../Misc/NEWS:1199 ../../../Misc/NEWS:4142 -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." - -#: ../../../Misc/NEWS:1202 -msgid "" -"`bpo-28228 `__: imghdr now supports " -"pathlib." -msgstr "" -"`bpo-28228 `__: imghdr now supports " -"pathlib." - -#: ../../../Misc/NEWS:1204 -msgid "" -"`bpo-28226 `__: compileall now supports " -"pathlib." -msgstr "" -"`bpo-28226 `__: compileall now supports " -"pathlib." - -#: ../../../Misc/NEWS:1206 -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." - -#: ../../../Misc/NEWS:1209 -msgid "" -"`bpo-28148 `__: Stop using localtime() " -"and gmtime() in the time module." -msgstr "" -"`bpo-28148 `__: Stop using localtime() " -"and gmtime() in the time module." - -#: ../../../Misc/NEWS:1212 -msgid "" -"Introduced platform independent _PyTime_localtime API that is similar to " -"POSIX localtime_r, but available on all platforms. Patch by Ed Schouten." -msgstr "" - -#: ../../../Misc/NEWS:1216 ../../../Misc/NEWS:4151 -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." - -#: ../../../Misc/NEWS:1219 ../../../Misc/NEWS:4154 -msgid "" -"Methods itermonthdays() and itermonthdays2() are reimplemented so that they " -"don't call itermonthdates() which can cause datetime.date under/overflow." -msgstr "" - -#: ../../../Misc/NEWS:1223 ../../../Misc/NEWS:4158 -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." - -#: ../../../Misc/NEWS:1227 ../../../Misc/NEWS:4162 -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." - -#: ../../../Misc/NEWS:1230 -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." - -#: ../../../Misc/NEWS:1234 ../../../Misc/NEWS:4165 -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." - -#: ../../../Misc/NEWS:1237 -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." - -#: ../../../Misc/NEWS:1240 ../../../Misc/NEWS:4170 -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." - -#: ../../../Misc/NEWS:1244 ../../../Misc/NEWS:4174 -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()." - -#: ../../../Misc/NEWS:1246 -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." - -#: ../../../Misc/NEWS:1249 -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)." - -#: ../../../Misc/NEWS:1252 -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." - -#: ../../../Misc/NEWS:1255 ../../../Misc/NEWS:4176 -msgid "" -"`bpo-27932 `__: Prevent memory leak in " -"win32_ver()." -msgstr "" -"`bpo-27932 `__: Prevent memory leak in " -"win32_ver()." - -#: ../../../Misc/NEWS:1257 ../../../Misc/NEWS:4178 -msgid "Fix UnboundLocalError in socket._sendfile_use_sendfile." -msgstr "" - -#: ../../../Misc/NEWS:1259 ../../../Misc/NEWS:4180 -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." - -#: ../../../Misc/NEWS:1262 -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." - -#: ../../../Misc/NEWS:1266 ../../../Misc/NEWS:4183 -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." - -#: ../../../Misc/NEWS:1269 ../../../Misc/NEWS:4186 -msgid "" -"`bpo-28181 `__: Get antigravity over " -"HTTPS. Patch by Kaartic Sivaraam." -msgstr "" -"`bpo-28181 `__: Get antigravity over " -"HTTPS. Patch by Kaartic Sivaraam." - -#: ../../../Misc/NEWS:1271 ../../../Misc/NEWS:4188 -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." - -#: ../../../Misc/NEWS:1274 -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." - -#: ../../../Misc/NEWS:1277 ../../../Misc/NEWS:4191 -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()." - -#: ../../../Misc/NEWS:1279 ../../../Misc/NEWS:4381 -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." - -#: ../../../Misc/NEWS:1282 ../../../Misc/NEWS:4384 -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." - -#: ../../../Misc/NEWS:1285 ../../../Misc/NEWS:4387 -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." - -#: ../../../Misc/NEWS:1288 ../../../Misc/NEWS:4390 -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." - -#: ../../../Misc/NEWS:1291 ../../../Misc/NEWS:4393 -msgid "" -"`bpo-28176 `__: Fix callbacks race in " -"asyncio.SelectorLoop.sock_connect." -msgstr "" -"`bpo-28176 `__: Fix callbacks race in " -"asyncio.SelectorLoop.sock_connect." - -#: ../../../Misc/NEWS:1293 ../../../Misc/NEWS:4395 -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." - -#: ../../../Misc/NEWS:1296 ../../../Misc/NEWS:4398 -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." - -#: ../../../Misc/NEWS:1300 ../../../Misc/NEWS:4402 -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." - -#: ../../../Misc/NEWS:1303 ../../../Misc/NEWS:4405 -msgid "" -"`bpo-28370 `__: Speedup asyncio." -"StreamReader.readexactly. Patch by Коренберг Марк." -msgstr "" -"`bpo-28370 `__: Speedup asyncio." -"StreamReader.readexactly. Patch by Коренберг Марк." - -#: ../../../Misc/NEWS:1306 ../../../Misc/NEWS:4408 -msgid "" -"`bpo-28371 `__: Deprecate passing " -"asyncio.Handles to run_in_executor." -msgstr "" -"`bpo-28371 `__: Deprecate passing " -"asyncio.Handles to run_in_executor." - -#: ../../../Misc/NEWS:1308 ../../../Misc/NEWS:4410 -msgid "" -"`bpo-28372 `__: Fix asyncio to support " -"formatting of non-python coroutines." -msgstr "" -"`bpo-28372 `__: Fix asyncio to support " -"formatting of non-python coroutines." - -#: ../../../Misc/NEWS:1310 ../../../Misc/NEWS:4412 -msgid "" -"`bpo-28399 `__: Remove UNIX socket from " -"FS before binding. Patch by Коренберг Марк." -msgstr "" -"`bpo-28399 `__: Remove UNIX socket from " -"FS before binding. Patch by Коренберг Марк." - -#: ../../../Misc/NEWS:1313 ../../../Misc/NEWS:4415 -msgid "" -"`bpo-27972 `__: Prohibit Tasks to await " -"on themselves." -msgstr "" -"`bpo-27972 `__: Prohibit Tasks to await " -"on themselves." - -#: ../../../Misc/NEWS:1318 -msgid "" -"`bpo-28402 `__: Adds signed catalog " -"files for stdlib on Windows." -msgstr "" -"`bpo-28402 `__: Adds signed catalog " -"files for stdlib on Windows." - -#: ../../../Misc/NEWS:1320 -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)" - -#: ../../../Misc/NEWS:1323 ../../../Misc/NEWS:4521 -msgid "" -"`bpo-28251 `__: Improvements to help " -"manuals on Windows." -msgstr "" -"`bpo-28251 `__: Improvements to help " -"manuals on Windows." - -#: ../../../Misc/NEWS:1325 ../../../Misc/NEWS:4523 -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" - -#: ../../../Misc/NEWS:1328 -msgid "" -"`bpo-28161 `__: Opening CON for write " -"access fails" -msgstr "" -"`bpo-28161 `__: Opening CON for write " -"access fails" - -#: ../../../Misc/NEWS:1330 -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" - -#: ../../../Misc/NEWS:1333 -msgid "" -"`bpo-28163 `__: WindowsConsoleIO " -"fileno() passes wrong flags to _open_osfhandle" -msgstr "" -"`bpo-28163 `__: WindowsConsoleIO " -"fileno() passes wrong flags to _open_osfhandle" - -#: ../../../Misc/NEWS:1336 -msgid "" -"`bpo-28164 `__: _PyIO_get_console_type " -"fails for various paths" -msgstr "" -"`bpo-28164 `__: _PyIO_get_console_type " -"fails for various paths" - -#: ../../../Misc/NEWS:1338 -msgid "" -"`bpo-28137 `__: Renames Windows path " -"file to ._pth" -msgstr "" -"`bpo-28137 `__: Renames Windows path " -"file to ._pth" - -#: ../../../Misc/NEWS:1340 -msgid "" -"`bpo-28138 `__: Windows ._pth file " -"should allow import site" -msgstr "" -"`bpo-28138 `__: Windows ._pth file " -"should allow import site" - -#: ../../../Misc/NEWS:1345 -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()." - -#: ../../../Misc/NEWS:1352 ../../../Misc/NEWS:4550 -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." - -#: ../../../Misc/NEWS:1355 ../../../Misc/NEWS:4553 -msgid "" -"`bpo-26661 `__: setup.py now detects " -"system libffi with multiarch wrapper." -msgstr "" -"`bpo-26661 `__: setup.py now detects " -"system libffi with multiarch wrapper." - -#: ../../../Misc/NEWS:1357 ../../../Misc/NEWS:4558 -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." - -#: ../../../Misc/NEWS:1363 -msgid "" -"`bpo-28217 `__: Adds _testconsole module " -"to test console input." -msgstr "" -"`bpo-28217 `__: Adds _testconsole module " -"to test console input." - -#: ../../../Misc/NEWS:1367 -msgid "Python 3.6.0 beta 1" -msgstr "Python 3.6.0 beta 1" - -#: ../../../Misc/NEWS:1369 -msgid "*Release date: 2016-09-12*" -msgstr "*Date de sortie : 2016-09-12*" - -#: ../../../Misc/NEWS:1374 -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." - -#: ../../../Misc/NEWS:1379 ../../../Misc/NEWS:3988 -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." - -#: ../../../Misc/NEWS:1382 -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." - -#: ../../../Misc/NEWS:1385 -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." - -#: ../../../Misc/NEWS:1388 -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'``." - -#: ../../../Misc/NEWS:1395 -msgid "" -"`bpo-28046 `__: Remove platform-specific " -"directories from sys.path." -msgstr "" -"`bpo-28046 `__: Remove platform-specific " -"directories from sys.path." - -#: ../../../Misc/NEWS:1397 -msgid "" -"`bpo-28071 `__: Add early-out for " -"differencing from an empty set." -msgstr "" -"`bpo-28071 `__: Add early-out for " -"differencing from an empty set." - -#: ../../../Misc/NEWS:1399 ../../../Misc/NEWS:3991 -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)" - -#: ../../../Misc/NEWS:1402 -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." - -#: ../../../Misc/NEWS:1405 -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." - -#: ../../../Misc/NEWS:1409 -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." - -#: ../../../Misc/NEWS:1411 -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." - -#: ../../../Misc/NEWS:1414 -msgid "" -"`bpo-28003 `__: Implement PEP 525 -- " -"Asynchronous Generators." -msgstr "" -"`bpo-28003 `__: Implement PEP 525 -- " -"Asynchronous Generators." - -#: ../../../Misc/NEWS:1416 -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." - -#: ../../../Misc/NEWS:1419 -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." - -#: ../../../Misc/NEWS:1423 -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." - -#: ../../../Misc/NEWS:1426 -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.)" - -#: ../../../Misc/NEWS:1430 -msgid "" -"`bpo-27911 `__: Remove unnecessary error " -"checks in ``exec_builtin_or_dynamic()``." -msgstr "" -"`bpo-27911 `__: Remove unnecessary error " -"checks in ``exec_builtin_or_dynamic()``." - -#: ../../../Misc/NEWS:1433 -msgid "" -"`bpo-27078 `__: Added BUILD_STRING " -"opcode. Optimized f-strings evaluation." -msgstr "" -"`bpo-27078 `__: Added BUILD_STRING " -"opcode. Optimized f-strings evaluation." - -#: ../../../Misc/NEWS:1435 -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" - -#: ../../../Misc/NEWS:1437 -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." - -#: ../../../Misc/NEWS:1440 -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." - -#: ../../../Misc/NEWS:1443 -msgid "Implement PEP 523." -msgstr "" - -#: ../../../Misc/NEWS:1445 -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." - -#: ../../../Misc/NEWS:1448 -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." - -#: ../../../Misc/NEWS:1452 -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." - -#: ../../../Misc/NEWS:1456 -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." - -#: ../../../Misc/NEWS:1459 ../../../Misc/NEWS:3997 -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()." - -#: ../../../Misc/NEWS:1462 ../../../Misc/NEWS:4000 -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." - -#: ../../../Misc/NEWS:1465 ../../../Misc/NEWS:4003 -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." - -#: ../../../Misc/NEWS:1469 -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." - -#: ../../../Misc/NEWS:1473 -msgid "" -"`bpo-26984 `__: int() now always returns " -"an instance of exact int." -msgstr "" -"`bpo-26984 `__: int() now always returns " -"an instance of exact int." - -#: ../../../Misc/NEWS:1475 -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." - -#: ../../../Misc/NEWS:1479 -msgid "" -"`bpo-24254 `__: Make class definition " -"namespace ordered by default." -msgstr "" -"`bpo-24254 `__: Make class definition " -"namespace ordered by default." - -#: ../../../Misc/NEWS:1481 -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." - -#: ../../../Misc/NEWS:1485 ../../../Misc/NEWS:4009 -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." - -#: ../../../Misc/NEWS:1489 ../../../Misc/NEWS:4013 -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." - -#: ../../../Misc/NEWS:1493 ../../../Misc/NEWS:4017 -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." - -#: ../../../Misc/NEWS:1497 -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." - -#: ../../../Misc/NEWS:1500 ../../../Misc/NEWS:4021 -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." - -#: ../../../Misc/NEWS:1504 -msgid "" -"`bpo-28008 `__: Implement PEP 530 -- " -"asynchronous comprehensions." -msgstr "" -"`bpo-28008 `__: Implement PEP 530 -- " -"asynchronous comprehensions." - -#: ../../../Misc/NEWS:1506 ../../../Misc/NEWS:4046 -msgid "" -"`bpo-27942 `__: Fix memory leak in " -"codeobject.c" -msgstr "" -"`bpo-27942 `__: Fix memory leak in " -"codeobject.c" - -#: ../../../Misc/NEWS:1511 ../../../Misc/NEWS:4091 -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" - -#: ../../../Misc/NEWS:1513 ../../../Misc/NEWS:4093 -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." - -#: ../../../Misc/NEWS:1517 -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." - -#: ../../../Misc/NEWS:1520 -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()." - -#: ../../../Misc/NEWS:1524 -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)\"." - -#: ../../../Misc/NEWS:1528 -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." - -#: ../../../Misc/NEWS:1531 -msgid "" -"`bpo-17941 `__: Add a *module* parameter " -"to collections.namedtuple()." -msgstr "" -"`bpo-17941 `__: Add a *module* parameter " -"to collections.namedtuple()." - -#: ../../../Misc/NEWS:1533 -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." - -#: ../../../Misc/NEWS:1537 -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." - -#: ../../../Misc/NEWS:1540 -msgid "" -"`bpo-28070 `__: Fixed parsing inline " -"verbose flag in regular expressions." -msgstr "" -"`bpo-28070 `__: Fixed parsing inline " -"verbose flag in regular expressions." - -#: ../../../Misc/NEWS:1542 -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." - -#: ../../../Misc/NEWS:1544 -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." - -#: ../../../Misc/NEWS:1548 -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." - -#: ../../../Misc/NEWS:1552 -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." - -#: ../../../Misc/NEWS:1555 -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." - -#: ../../../Misc/NEWS:1558 -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." - -#: ../../../Misc/NEWS:1563 ../../../Misc/NEWS:4145 -msgid "" -"Fix possible integer overflows and crashes in the mmap module with unusual " -"usage patterns." -msgstr "" - -#: ../../../Misc/NEWS:1566 ../../../Misc/NEWS:4148 -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." - -#: ../../../Misc/NEWS:1569 ../../../Misc/NEWS:4196 -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." - -#: ../../../Misc/NEWS:1572 -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." - -#: ../../../Misc/NEWS:1576 ../../../Misc/NEWS:4199 -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." - -#: ../../../Misc/NEWS:1579 ../../../Misc/NEWS:4202 -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." - -#: ../../../Misc/NEWS:1582 -msgid "" -"`bpo-28082 `__: Convert re flag " -"constants to IntFlag." -msgstr "" -"`bpo-28082 `__: Convert re flag " -"constants to IntFlag." - -#: ../../../Misc/NEWS:1584 -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." - -#: ../../../Misc/NEWS:1587 -msgid "" -"`bpo-23591 `__: Add Flag, IntFlag, and " -"auto() to enum module." -msgstr "" -"`bpo-23591 `__: Add Flag, IntFlag, and " -"auto() to enum module." - -#: ../../../Misc/NEWS:1589 -msgid "" -"`bpo-433028 `__: Added support of " -"modifier spans in regular expressions." -msgstr "" -"`bpo-433028 `__: Added support of " -"modifier spans in regular expressions." - -#: ../../../Misc/NEWS:1591 ../../../Misc/NEWS:4205 -msgid "" -"`bpo-24594 `__: Validates persist " -"parameter when opening MSI database" -msgstr "" -"`bpo-24594 `__: Validates persist " -"parameter when opening MSI database" - -#: ../../../Misc/NEWS:1593 ../../../Misc/NEWS:4207 -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.)" - -#: ../../../Misc/NEWS:1596 ../../../Misc/NEWS:4210 -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." - -#: ../../../Misc/NEWS:1599 -msgid "" -"`bpo-27576 `__: Fix call order in " -"OrderedDict.__init__()." -msgstr "" -"`bpo-27576 `__: Fix call order in " -"OrderedDict.__init__()." - -#: ../../../Misc/NEWS:1601 -msgid "email.generator.DecodedGenerator now supports the policy keyword." -msgstr "" - -#: ../../../Misc/NEWS:1603 -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." - -#: ../../../Misc/NEWS:1606 ../../../Misc/NEWS:4213 -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." - -#: ../../../Misc/NEWS:1609 -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." - -#: ../../../Misc/NEWS:1612 ../../../Misc/NEWS:4216 -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." - -#: ../../../Misc/NEWS:1616 ../../../Misc/NEWS:4220 -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 "" - -#: ../../../Misc/NEWS:1620 -msgid "" -"`bpo-28005 `__: Allow ImportErrors in " -"encoding implementation to propagate." -msgstr "" -"`bpo-28005 `__: Allow ImportErrors in " -"encoding implementation to propagate." - -#: ../../../Misc/NEWS:1622 -msgid "" -"`bpo-26667 `__: Support path-like " -"objects in importlib.util." -msgstr "" -"`bpo-26667 `__: Support path-like " -"objects in importlib.util." - -#: ../../../Misc/NEWS:1624 ../../../Misc/NEWS:4224 -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." - -#: ../../../Misc/NEWS:1627 ../../../Misc/NEWS:4227 -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." - -#: ../../../Misc/NEWS:1631 -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." - -#: ../../../Misc/NEWS:1633 ../../../Misc/NEWS:4231 -msgid "" -"`bpo-27988 `__: Fix email " -"iter_attachments incorrect mutation of payload list." -msgstr "" -"`bpo-27988 `__: Fix email " -"iter_attachments incorrect mutation of payload list." - -#: ../../../Misc/NEWS:1635 -msgid "" -"`bpo-16113 `__: Add SHA-3 and SHAKE " -"support to hashlib module." -msgstr "" -"`bpo-16113 `__: Add SHA-3 and SHAKE " -"support to hashlib module." - -#: ../../../Misc/NEWS:1637 -msgid "Eliminate a tautological-pointer-compare warning in _scproxy.c." -msgstr "" - -#: ../../../Misc/NEWS:1639 -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`." - -#: ../../../Misc/NEWS:1643 -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`." - -#: ../../../Misc/NEWS:1646 ../../../Misc/NEWS:4233 -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." - -#: ../../../Misc/NEWS:1649 -msgid "" -"`bpo-18844 `__: Add random.choices()." -msgstr "" -"`bpo-18844 `__: Add random.choices()." - -#: ../../../Misc/NEWS:1651 -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." - -#: ../../../Misc/NEWS:1655 -msgid "" -"`bpo-26798 `__: Add BLAKE2 (blake2b and " -"blake2s) to hashlib." -msgstr "" -"`bpo-26798 `__: Add BLAKE2 (blake2b and " -"blake2s) to hashlib." - -#: ../../../Misc/NEWS:1657 -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." - -#: ../../../Misc/NEWS:1660 -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." - -#: ../../../Misc/NEWS:1663 -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)." - -#: ../../../Misc/NEWS:1666 ../../../Misc/NEWS:4236 -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)." - -#: ../../../Misc/NEWS:1669 ../../../Misc/NEWS:4239 -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)." - -#: ../../../Misc/NEWS:1672 -msgid "" -"`bpo-25387 `__: Check return value of " -"winsound.MessageBeep." -msgstr "" -"`bpo-25387 `__: Check return value of " -"winsound.MessageBeep." - -#: ../../../Misc/NEWS:1674 -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." - -#: ../../../Misc/NEWS:1677 -msgid "" -"`bpo-27744 `__: Add AF_ALG (Linux Kernel " -"crypto) to socket module." -msgstr "" -"`bpo-27744 `__: Add AF_ALG (Linux Kernel " -"crypto) to socket module." - -#: ../../../Misc/NEWS:1679 ../../../Misc/NEWS:4242 -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." - -#: ../../../Misc/NEWS:1681 -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." - -#: ../../../Misc/NEWS:1684 -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." - -#: ../../../Misc/NEWS:1687 -msgid "" -"`bpo-27919 `__: Deprecated " -"``extra_path`` distribution option in distutils packaging." -msgstr "" -"`bpo-27919 `__: Deprecated " -"``extra_path`` distribution option in distutils packaging." - -#: ../../../Misc/NEWS:1690 -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." - -#: ../../../Misc/NEWS:1694 -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.)" - -#: ../../../Misc/NEWS:1697 ../../../Misc/NEWS:4244 -msgid "" -"Remove support for passing a file descriptor to os.access. It never worked " -"but previously didn't raise." -msgstr "" - -#: ../../../Misc/NEWS:1700 ../../../Misc/NEWS:4247 -msgid "" -"`bpo-12885 `__: Fix error when distutils " -"encounters symlink." -msgstr "" -"`bpo-12885 `__: Fix error when distutils " -"encounters symlink." - -#: ../../../Misc/NEWS:1702 ../../../Misc/NEWS:4249 -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." - -#: ../../../Misc/NEWS:1705 ../../../Misc/NEWS:4252 -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." - -#: ../../../Misc/NEWS:1708 ../../../Misc/NEWS:4255 -msgid "" -"`bpo-19884 `__: Avoid spurious output on " -"OS X with Gnu Readline." -msgstr "" -"`bpo-19884 `__: Avoid spurious output on " -"OS X with Gnu Readline." - -#: ../../../Misc/NEWS:1710 ../../../Misc/NEWS:4257 -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." - -#: ../../../Misc/NEWS:1715 ../../../Misc/NEWS:4262 -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." - -#: ../../../Misc/NEWS:1718 -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." - -#: ../../../Misc/NEWS:1725 ../../../Misc/NEWS:4265 -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)" - -#: ../../../Misc/NEWS:1731 -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``." - -#: ../../../Misc/NEWS:1734 ../../../Misc/NEWS:4271 -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." - -#: ../../../Misc/NEWS:1737 ../../../Misc/NEWS:4274 -msgid "" -"`bpo-21718 `__: cursor.description is " -"now available for queries using CTEs." -msgstr "" -"`bpo-21718 `__: cursor.description is " -"now available for queries using CTEs." - -#: ../../../Misc/NEWS:1739 -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." - -#: ../../../Misc/NEWS:1742 ../../../Misc/NEWS:4276 -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." - -#: ../../../Misc/NEWS:1745 -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." - -#: ../../../Misc/NEWS:1748 -msgid "" -"`bpo-27573 `__: exit message for code." -"interact is now configurable." -msgstr "" -"`bpo-27573 `__: exit message for code." -"interact is now configurable." - -#: ../../../Misc/NEWS:1750 ../../../Misc/NEWS:4373 -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." - -#: ../../../Misc/NEWS:1753 -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." - -#: ../../../Misc/NEWS:1756 ../../../Misc/NEWS:4376 -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." - -#: ../../../Misc/NEWS:1759 -msgid "asyncio: Add set_protocol / get_protocol to Transports." -msgstr "" - -#: ../../../Misc/NEWS:1761 ../../../Misc/NEWS:4379 -msgid "" -"`bpo-27456 `__: asyncio: Set TCP_NODELAY " -"by default." -msgstr "" -"`bpo-27456 `__: asyncio: Set TCP_NODELAY " -"by default." - -#: ../../../Misc/NEWS:1766 ../../../Misc/NEWS:4449 -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." - -#: ../../../Misc/NEWS:1769 ../../../Misc/NEWS:4452 -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." - -#: ../../../Misc/NEWS:1771 -msgid "" -"`bpo-27891 `__: Consistently group and " -"sort imports within idlelib modules." -msgstr "" -"`bpo-27891 `__: Consistently group and " -"sort imports within idlelib modules." - -#: ../../../Misc/NEWS:1773 -msgid "" -"`bpo-17642 `__: add larger font sizes " -"for classroom projection." -msgstr "" -"`bpo-17642 `__: add larger font sizes " -"for classroom projection." - -#: ../../../Misc/NEWS:1775 ../../../Misc/NEWS:4454 -msgid "Add version to title of IDLE help window." -msgstr "" - -#: ../../../Misc/NEWS:1777 ../../../Misc/NEWS:4456 -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." - -#: ../../../Misc/NEWS:1780 -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." - -#: ../../../Misc/NEWS:1786 -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." - -#: ../../../Misc/NEWS:1788 -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()." - -#: ../../../Misc/NEWS:1794 -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." - -#: ../../../Misc/NEWS:1796 -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." - -#: ../../../Misc/NEWS:1799 -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." - -#: ../../../Misc/NEWS:1802 ../../../Misc/NEWS:4500 -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." - -#: ../../../Misc/NEWS:1808 ../../../Misc/NEWS:4561 -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)" - -#: ../../../Misc/NEWS:1810 ../../../Misc/NEWS:4563 -msgid "" -"`bpo-27705 `__: Update message in " -"validate_ucrtbase.py" -msgstr "" -"`bpo-27705 `__: Update message in " -"validate_ucrtbase.py" - -#: ../../../Misc/NEWS:1812 -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." - -#: ../../../Misc/NEWS:1815 ../../../Misc/NEWS:4565 -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." - -#: ../../../Misc/NEWS:1820 -msgid "" -"`bpo-21590 `__: Support for DTrace and " -"SystemTap probes." -msgstr "" -"`bpo-21590 `__: Support for DTrace and " -"SystemTap probes." - -#: ../../../Misc/NEWS:1822 ../../../Misc/NEWS:4570 -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." - -#: ../../../Misc/NEWS:1824 -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." - -#: ../../../Misc/NEWS:1827 -msgid "" -"`bpo-27917 `__: Set platform triplets " -"for Android builds." -msgstr "" -"`bpo-27917 `__: Set platform triplets " -"for Android builds." - -#: ../../../Misc/NEWS:1829 -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." - -#: ../../../Misc/NEWS:1832 -msgid "Update OS X installer to use SQLite 3.14.1 and XZ 5.2.2." -msgstr "" - -#: ../../../Misc/NEWS:1834 -msgid "" -"`bpo-21122 `__: Fix LTO builds on OS X." -msgstr "" -"`bpo-21122 `__: Fix LTO builds on OS X." - -#: ../../../Misc/NEWS:1836 -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." - -#: ../../../Misc/NEWS:1843 ../../../Misc/NEWS:4509 -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." - -#: ../../../Misc/NEWS:1850 -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." - -#: ../../../Misc/NEWS:1852 ../../../Misc/NEWS:4526 -msgid "" -"`bpo-25144 `__: Ensures TargetDir is set " -"before continuing with custom install." -msgstr "" -"`bpo-25144 `__: Ensures TargetDir is set " -"before continuing with custom install." - -#: ../../../Misc/NEWS:1855 -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)" - -#: ../../../Misc/NEWS:1857 -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)" - -#: ../../../Misc/NEWS:1859 -msgid "" -"`bpo-27731 `__: Opt-out of MAX_PATH on " -"Windows 10" -msgstr "" -"`bpo-27731 `__: Opt-out of MAX_PATH on " -"Windows 10" - -#: ../../../Misc/NEWS:1861 -msgid "" -"`bpo-6135 `__: Adds encoding and errors " -"parameters to subprocess." -msgstr "" -"`bpo-6135 `__: Adds encoding and errors " -"parameters to subprocess." - -#: ../../../Misc/NEWS:1863 -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." - -#: ../../../Misc/NEWS:1866 -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." - -#: ../../../Misc/NEWS:1869 -msgid "" -"`bpo-20366 `__: Build full text search " -"support into SQLite on Windows." -msgstr "" -"`bpo-20366 `__: Build full text search " -"support into SQLite on Windows." - -#: ../../../Misc/NEWS:1871 -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." - -#: ../../../Misc/NEWS:1874 -msgid "" -"`bpo-27883 `__: Update sqlite to " -"3.14.1.0 on Windows." -msgstr "" -"`bpo-27883 `__: Update sqlite to " -"3.14.1.0 on Windows." - -#: ../../../Misc/NEWS:1878 -msgid "Python 3.6.0 alpha 4" -msgstr "Python 3.6.0 alpha 4" - -#: ../../../Misc/NEWS:1880 -msgid "*Release date: 2016-08-15*" -msgstr "" - -#: ../../../Misc/NEWS:1885 -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." - -#: ../../../Misc/NEWS:1889 -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." - -#: ../../../Misc/NEWS:1893 -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." - -#: ../../../Misc/NEWS:1896 -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." - -#: ../../../Misc/NEWS:1899 -msgid "" -"`bpo-17596 `__: Include to " -"help with Min GW building." -msgstr "" -"`bpo-17596 `__: Include to " -"help with Min GW building." - -#: ../../../Misc/NEWS:1901 -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." - -#: ../../../Misc/NEWS:1904 ../../../Misc/NEWS:4037 -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." - -#: ../../../Misc/NEWS:1907 ../../../Misc/NEWS:4040 -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." - -#: ../../../Misc/NEWS:1910 -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." - -#: ../../../Misc/NEWS:1913 -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__." - -#: ../../../Misc/NEWS:1918 ../../../Misc/NEWS:4029 -msgid "" -"`bpo-27083 `__: Respect the PYTHONCASEOK " -"environment variable under Windows." -msgstr "" -"`bpo-27083 `__: Respect the PYTHONCASEOK " -"environment variable under Windows." - -#: ../../../Misc/NEWS:1920 ../../../Misc/NEWS:4031 -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." - -#: ../../../Misc/NEWS:1923 -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." - -#: ../../../Misc/NEWS:1930 -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." - -#: ../../../Misc/NEWS:1933 -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." - -#: ../../../Misc/NEWS:1936 -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." - -#: ../../../Misc/NEWS:1944 -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." - -#: ../../../Misc/NEWS:1947 -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." - -#: ../../../Misc/NEWS:1951 -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." - -#: ../../../Misc/NEWS:1954 -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." - -#: ../../../Misc/NEWS:1957 -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." - -#: ../../../Misc/NEWS:1962 -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." - -#: ../../../Misc/NEWS:1965 -msgid "" -"`bpo-27181 `__: Add geometric_mean and " -"harmonic_mean to statistics module." -msgstr "" -"`bpo-27181 `__: Add geometric_mean and " -"harmonic_mean to statistics module." - -#: ../../../Misc/NEWS:1967 -msgid "" -"`bpo-27573 `__: code.interact now prints " -"an message when exiting." -msgstr "" -"`bpo-27573 `__: code.interact now prints " -"an message when exiting." - -#: ../../../Misc/NEWS:1969 -msgid "" -"`bpo-6422 `__: Add autorange method to " -"timeit.Timer objects." -msgstr "" -"`bpo-6422 `__: Add autorange method to " -"timeit.Timer objects." - -#: ../../../Misc/NEWS:1971 ../../../Misc/NEWS:4279 -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()." - -#: ../../../Misc/NEWS:1974 -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." - -#: ../../../Misc/NEWS:1978 -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." - -#: ../../../Misc/NEWS:1981 -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." - -#: ../../../Misc/NEWS:1984 -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." - -#: ../../../Misc/NEWS:1987 -msgid "" -"`bpo-27661 `__: Added tzinfo keyword " -"argument to datetime.combine." -msgstr "" -"`bpo-27661 `__: Added tzinfo keyword " -"argument to datetime.combine." - -#: ../../../Misc/NEWS:1989 ../../../Misc/NEWS:4285 -msgid "" -"In the curses module, raise an error if window.getstr() or window.instr() is " -"passed a negative value." -msgstr "" - -#: ../../../Misc/NEWS:1992 ../../../Misc/NEWS:4288 -msgid "" -"`bpo-27783 `__: Fix possible usage of " -"uninitialized memory in operator.methodcaller." -msgstr "" -"`bpo-27783 `__: Fix possible usage of " -"uninitialized memory in operator.methodcaller." - -#: ../../../Misc/NEWS:1995 ../../../Misc/NEWS:4291 -msgid "" -"`bpo-27774 `__: Fix possible Py_DECREF " -"on unowned object in _sre." -msgstr "" -"`bpo-27774 `__: Fix possible Py_DECREF " -"on unowned object in _sre." - -#: ../../../Misc/NEWS:1997 ../../../Misc/NEWS:4293 -msgid "" -"`bpo-27760 `__: Fix possible integer " -"overflow in binascii.b2a_qp." -msgstr "" -"`bpo-27760 `__: Fix possible integer " -"overflow in binascii.b2a_qp." - -#: ../../../Misc/NEWS:1999 ../../../Misc/NEWS:4295 -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." - -#: ../../../Misc/NEWS:2002 ../../../Misc/NEWS:4298 -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." - -#: ../../../Misc/NEWS:2006 -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." - -#: ../../../Misc/NEWS:2009 ../../../Misc/NEWS:4302 -msgid "" -"`bpo-27656 `__: Do not assume sched.h " -"defines any SCHED_* constants." -msgstr "" -"`bpo-27656 `__: Do not assume sched.h " -"defines any SCHED_* constants." - -#: ../../../Misc/NEWS:2011 ../../../Misc/NEWS:4304 -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." - -#: ../../../Misc/NEWS:2016 -msgid "" -"`bpo-24773 `__: Implemented PEP 495 " -"(Local Time Disambiguation)." -msgstr "" -"`bpo-24773 `__: Implemented PEP 495 " -"(Local Time Disambiguation)." - -#: ../../../Misc/NEWS:2018 -msgid "" -"Expose the EPOLLEXCLUSIVE constant (when it is defined) in the select module." -msgstr "" - -#: ../../../Misc/NEWS:2020 -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." - -#: ../../../Misc/NEWS:2023 -msgid "" -"`bpo-1621 `__: Avoid signed int negation " -"overflow in the \"audioop\" module." -msgstr "" -"`bpo-1621 `__: Avoid signed int negation " -"overflow in the \"audioop\" module." - -#: ../../../Misc/NEWS:2025 ../../../Misc/NEWS:4309 -msgid "" -"`bpo-27533 `__: Release GIL in nt._isdir" -msgstr "" -"`bpo-27533 `__: Release GIL in nt._isdir" - -#: ../../../Misc/NEWS:2027 ../../../Misc/NEWS:4311 -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." - -#: ../../../Misc/NEWS:2030 ../../../Misc/NEWS:4314 -msgid "" -"`bpo-27522 `__: Avoid an unintentional " -"reference cycle in email.feedparser." -msgstr "" -"`bpo-27522 `__: Avoid an unintentional " -"reference cycle in email.feedparser." - -#: ../../../Misc/NEWS:2032 -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." - -#: ../../../Misc/NEWS:2038 ../../../Misc/NEWS:4459 -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." - -#: ../../../Misc/NEWS:2042 -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." - -#: ../../../Misc/NEWS:2046 -msgid "" -"`bpo-27620 `__: Escape key now closes " -"Query box as cancelled." -msgstr "" -"`bpo-27620 `__: Escape key now closes " -"Query box as cancelled." - -#: ../../../Misc/NEWS:2048 -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." - -#: ../../../Misc/NEWS:2052 -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." - -#: ../../../Misc/NEWS:2055 ../../../Misc/NEWS:4463 -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." - -#: ../../../Misc/NEWS:2058 ../../../Misc/NEWS:2239 -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." - -#: ../../../Misc/NEWS:2062 ../../../Misc/NEWS:2246 ../../../Misc/NEWS:4466 -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." - -#: ../../../Misc/NEWS:2067 -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." - -#: ../../../Misc/NEWS:2070 -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." - -#: ../../../Misc/NEWS:2072 ../../../Misc/NEWS:4503 -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." - -#: ../../../Misc/NEWS:2075 -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." - -#: ../../../Misc/NEWS:2082 -msgid "" -"`bpo-27647 `__: Update bundled Tcl/Tk to " -"8.6.6." -msgstr "" -"`bpo-27647 `__: Update bundled Tcl/Tk to " -"8.6.6." - -#: ../../../Misc/NEWS:2084 -msgid "" -"`bpo-27610 `__: Adds PEP 514 metadata to " -"Windows installer" -msgstr "" -"`bpo-27610 `__: Adds PEP 514 metadata to " -"Windows installer" - -#: ../../../Misc/NEWS:2086 ../../../Misc/NEWS:4529 -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." - -#: ../../../Misc/NEWS:2089 -msgid "" -"`bpo-27309 `__: Enables proper Windows " -"styles in python[w].exe manifest." -msgstr "" -"`bpo-27309 `__: Enables proper Windows " -"styles in python[w].exe manifest." - -#: ../../../Misc/NEWS:2094 ../../../Misc/NEWS:4574 -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" - -#: ../../../Misc/NEWS:2097 -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." - -#: ../../../Misc/NEWS:2100 ../../../Misc/NEWS:4582 -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." - -#: ../../../Misc/NEWS:2103 ../../../Misc/NEWS:4585 -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." - -#: ../../../Misc/NEWS:2107 ../../../Misc/NEWS:4589 -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." - -#: ../../../Misc/NEWS:2110 ../../../Misc/NEWS:4592 -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." - -#: ../../../Misc/NEWS:2115 -msgid "Python 3.6.0 alpha 3" -msgstr "Python 3.6.0 alpha 3" - -#: ../../../Misc/NEWS:2117 -msgid "*Release date: 2016-07-11*" -msgstr "" - -#: ../../../Misc/NEWS:2122 ../../../Misc/NEWS:4034 -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." - -#: ../../../Misc/NEWS:2125 -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." - -#: ../../../Misc/NEWS:2130 ../../../Misc/NEWS:4043 -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." - -#: ../../../Misc/NEWS:2133 -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." - -#: ../../../Misc/NEWS:2139 ../../../Misc/NEWS:4316 -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." - -#: ../../../Misc/NEWS:2142 ../../../Misc/NEWS:4319 -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." - -#: ../../../Misc/NEWS:2145 ../../../Misc/NEWS:4322 -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." - -#: ../../../Misc/NEWS:2149 -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." - -#: ../../../Misc/NEWS:2153 -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." - -#: ../../../Misc/NEWS:2157 -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." - -#: ../../../Misc/NEWS:2164 -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." - -#: ../../../Misc/NEWS:2167 -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." - -#: ../../../Misc/NEWS:2170 -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." - -#: ../../../Misc/NEWS:2173 -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." - -#: ../../../Misc/NEWS:2177 -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." - -#: ../../../Misc/NEWS:2182 ../../../Misc/NEWS:4336 -msgid "" -"`bpo-27079 `__: Fixed curses.ascii " -"functions isblank(), iscntrl() and ispunct()." -msgstr "" -"`bpo-27079 `__: Fixed curses.ascii " -"functions isblank(), iscntrl() and ispunct()." - -#: ../../../Misc/NEWS:2184 -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." - -#: ../../../Misc/NEWS:2187 -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." - -#: ../../../Misc/NEWS:2190 ../../../Misc/NEWS:4338 -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." - -#: ../../../Misc/NEWS:2194 -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." - -#: ../../../Misc/NEWS:2197 ../../../Misc/NEWS:4342 -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" - -#: ../../../Misc/NEWS:2200 ../../../Misc/NEWS:4345 -msgid "" -"`bpo-27330 `__: Fixed possible leaks in " -"the ctypes module." -msgstr "" -"`bpo-27330 `__: Fixed possible leaks in " -"the ctypes module." - -#: ../../../Misc/NEWS:2202 ../../../Misc/NEWS:4347 -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." - -#: ../../../Misc/NEWS:2205 ../../../Misc/NEWS:4350 -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." - -#: ../../../Misc/NEWS:2211 ../../../Misc/NEWS:4356 -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." - -#: ../../../Misc/NEWS:2215 -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." - -#: ../../../Misc/NEWS:2218 ../../../Misc/NEWS:4360 -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." - -#: ../../../Misc/NEWS:2221 -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)." - -#: ../../../Misc/NEWS:2224 ../../../Misc/NEWS:4363 -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()." - -#: ../../../Misc/NEWS:2227 ../../../Misc/NEWS:4366 -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." - -#: ../../../Misc/NEWS:2231 ../../../Misc/NEWS:4370 -msgid "" -"`bpo-27392 `__: Add loop." -"connect_accepted_socket(). Patch by Jim Fulton." -msgstr "" -"`bpo-27392 `__: Add loop." -"connect_accepted_socket(). Patch by Jim Fulton." - -#: ../../../Misc/NEWS:2237 -msgid "" -"`bpo-27477 `__: IDLE search dialogs now " -"use ttk widgets." -msgstr "" -"`bpo-27477 `__: IDLE search dialogs now " -"use ttk widgets." - -#: ../../../Misc/NEWS:2243 -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." - -#: ../../../Misc/NEWS:2248 -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." - -#: ../../../Misc/NEWS:2255 -msgid "" -"`bpo-27372 `__: Test_idle no longer " -"changes the locale." -msgstr "" -"`bpo-27372 `__: Test_idle no longer " -"changes the locale." - -#: ../../../Misc/NEWS:2257 ../../../Misc/NEWS:4468 -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." - -#: ../../../Misc/NEWS:2259 ../../../Misc/NEWS:4470 -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." - -#: ../../../Misc/NEWS:2263 -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." - -#: ../../../Misc/NEWS:2267 -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." - -#: ../../../Misc/NEWS:2272 -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." - -#: ../../../Misc/NEWS:2278 ../../../Misc/NEWS:4555 -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." - -#: ../../../Misc/NEWS:2281 -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'." - -#: ../../../Misc/NEWS:2284 -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." - -#: ../../../Misc/NEWS:2287 ../../../Misc/NEWS:4607 -msgid "" -"`bpo-26930 `__: Update Windows builds to " -"use OpenSSL 1.0.2h." -msgstr "" -"`bpo-26930 `__: Update Windows builds to " -"use OpenSSL 1.0.2h." - -#: ../../../Misc/NEWS:2289 -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." - -#: ../../../Misc/NEWS:2296 -msgid "Don't use largefile support for GNU/Hurd." -msgstr "" - -#: ../../../Misc/NEWS:2301 ../../../Misc/NEWS:4513 -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." - -#: ../../../Misc/NEWS:2304 ../../../Misc/NEWS:4516 -msgid "" -"`bpo-27418 `__: Fixed Tools/importbench/" -"importbench.py." -msgstr "" -"`bpo-27418 `__: Fixed Tools/importbench/" -"importbench.py." - -#: ../../../Misc/NEWS:2309 ../../../Misc/NEWS:5213 -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." - -#: ../../../Misc/NEWS:2312 -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." - -#: ../../../Misc/NEWS:2318 -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." - -#: ../../../Misc/NEWS:2323 -msgid "Python 3.6.0 alpha 2" -msgstr "Python 3.6.0 alpha 2" - -#: ../../../Misc/NEWS:2325 -msgid "*Release date: 2016-06-13*" -msgstr "" - -#: ../../../Misc/NEWS:2330 -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." - -#: ../../../Misc/NEWS:2333 -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." - -#: ../../../Misc/NEWS:2336 -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." - -#: ../../../Misc/NEWS:2340 -msgid "" -"`bpo-27140 `__: Added " -"BUILD_CONST_KEY_MAP opcode." -msgstr "" -"`bpo-27140 `__: Added " -"BUILD_CONST_KEY_MAP opcode." - -#: ../../../Misc/NEWS:2342 -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)." - -#: ../../../Misc/NEWS:2344 ../../../Misc/NEWS:4628 -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." - -#: ../../../Misc/NEWS:2347 -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." - -#: ../../../Misc/NEWS:2352 -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." - -#: ../../../Misc/NEWS:2355 -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." - -#: ../../../Misc/NEWS:2358 -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." - -#: ../../../Misc/NEWS:2361 ../../../Misc/NEWS:4749 -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." - -#: ../../../Misc/NEWS:2370 -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 "" - -#: ../../../Misc/NEWS:2374 -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." - -#: ../../../Misc/NEWS:2377 -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." - -#: ../../../Misc/NEWS:2380 -msgid "" -"`bpo-27294 `__: Improved repr for " -"Tkinter event objects." -msgstr "" -"`bpo-27294 `__: Improved repr for " -"Tkinter event objects." - -#: ../../../Misc/NEWS:2382 -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." - -#: ../../../Misc/NEWS:2385 ../../../Misc/NEWS:4758 -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." - -#: ../../../Misc/NEWS:2387 -msgid "" -"[Security] Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. " -"Reported by Team Oststrom." -msgstr "" - -#: ../../../Misc/NEWS:2390 ../../../Misc/NEWS:4763 -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." - -#: ../../../Misc/NEWS:2393 -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()." - -#: ../../../Misc/NEWS:2396 -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." - -#: ../../../Misc/NEWS:2400 -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." - -#: ../../../Misc/NEWS:2403 ../../../Misc/NEWS:4766 -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." - -#: ../../../Misc/NEWS:2406 -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." - -#: ../../../Misc/NEWS:2409 -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)." - -#: ../../../Misc/NEWS:2412 -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)." - -#: ../../../Misc/NEWS:2414 ../../../Misc/NEWS:4769 -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 "" - -#: ../../../Misc/NEWS:2422 ../../../Misc/NEWS:4777 -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." - -#: ../../../Misc/NEWS:2427 ../../../Misc/NEWS:4782 -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." - -#: ../../../Misc/NEWS:2430 ../../../Misc/NEWS:4785 -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." - -#: ../../../Misc/NEWS:2435 -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." - -#: ../../../Misc/NEWS:2439 ../../../Misc/NEWS:4790 -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." - -#: ../../../Misc/NEWS:2442 ../../../Misc/NEWS:4793 -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." - -#: ../../../Misc/NEWS:2447 -msgid "" -"`bpo-21272 `__: Use _sysconfigdata.py to " -"initialize distutils.sysconfig." -msgstr "" -"`bpo-21272 `__: Use _sysconfigdata.py to " -"initialize distutils.sysconfig." - -#: ../../../Misc/NEWS:2449 -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." - -#: ../../../Misc/NEWS:2454 ../../../Misc/NEWS:4798 -msgid "" -"`bpo-26809 `__: Add ``__all__`` to :mod:" -"`string`. Patch by Emanuel Barry." -msgstr "" -"`bpo-26809 `__: Add ``__all__`` to :mod:" -"`string`. Patch by Emanuel Barry." - -#: ../../../Misc/NEWS:2456 ../../../Misc/NEWS:4800 -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." - -#: ../../../Misc/NEWS:2460 -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 "" - -#: ../../../Misc/NEWS:2465 -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." - -#: ../../../Misc/NEWS:2468 -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()." - -#: ../../../Misc/NEWS:2471 ../../../Misc/NEWS:4804 -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." - -#: ../../../Misc/NEWS:2474 -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." - -#: ../../../Misc/NEWS:2477 ../../../Misc/NEWS:4807 -msgid "" -"`bpo-27114 `__: Fix SSLContext." -"_load_windows_store_certs fails with PermissionError" -msgstr "" -"`bpo-27114 `__: Fix SSLContext." -"_load_windows_store_certs fails with PermissionError" - -#: ../../../Misc/NEWS:2480 ../../../Misc/NEWS:4810 -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." - -#: ../../../Misc/NEWS:2483 -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." - -#: ../../../Misc/NEWS:2485 -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." - -#: ../../../Misc/NEWS:2488 -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." - -#: ../../../Misc/NEWS:2491 -msgid "" -"`bpo-21271 `__: New keyword only " -"parameters in reset_mock call." -msgstr "" -"`bpo-21271 `__: New keyword only " -"parameters in reset_mock call." - -#: ../../../Misc/NEWS:2496 ../../../Misc/NEWS:5160 -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." - -#: ../../../Misc/NEWS:2500 -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." - -#: ../../../Misc/NEWS:2503 -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." - -#: ../../../Misc/NEWS:2507 -msgid "" -"`bpo-27239 `__: idlelib.macosx.isXyzTk " -"functions initialize as needed." -msgstr "" -"`bpo-27239 `__: idlelib.macosx.isXyzTk " -"functions initialize as needed." - -#: ../../../Misc/NEWS:2509 -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." - -#: ../../../Misc/NEWS:2511 ../../../Misc/NEWS:5164 -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." - -#: ../../../Misc/NEWS:2514 ../../../Misc/NEWS:5167 -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" - -#: ../../../Misc/NEWS:2519 ../../../Misc/NEWS:5172 -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." - -#: ../../../Misc/NEWS:2522 -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." - -#: ../../../Misc/NEWS:2525 -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" - -#: ../../../Misc/NEWS:2534 ../../../Misc/NEWS:5175 -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." - -#: ../../../Misc/NEWS:2537 -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." - -#: ../../../Misc/NEWS:2542 ../../../Misc/NEWS:5178 -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." - -#: ../../../Misc/NEWS:2545 ../../../Misc/NEWS:5181 -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." - -#: ../../../Misc/NEWS:2548 ../../../Misc/NEWS:5184 -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." - -#: ../../../Misc/NEWS:2551 ../../../Misc/NEWS:5187 -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." - -#: ../../../Misc/NEWS:2554 -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 ." - -#: ../../../Misc/NEWS:2557 ../../../Misc/NEWS:5193 -msgid "" -"`bpo-27044 `__: Add ConfigDialog." -"remove_var_callbacks to stop memory leaks." -msgstr "" -"`bpo-27044 `__: Add ConfigDialog." -"remove_var_callbacks to stop memory leaks." - -#: ../../../Misc/NEWS:2559 ../../../Misc/NEWS:5195 -msgid "" -"`bpo-23977 `__: Add more asserts to " -"test_delegator." -msgstr "" -"`bpo-23977 `__: Add more asserts to " -"test_delegator." - -#: ../../../Misc/NEWS:2564 -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." - -#: ../../../Misc/NEWS:2568 ../../../Misc/NEWS:5216 -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." - -#: ../../../Misc/NEWS:2570 ../../../Misc/NEWS:5774 -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." - -#: ../../../Misc/NEWS:2576 -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." - -#: ../../../Misc/NEWS:2580 -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." - -#: ../../../Misc/NEWS:2586 -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." - -#: ../../../Misc/NEWS:2593 ../../../Misc/NEWS:5267 -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." - -#: ../../../Misc/NEWS:2596 ../../../Misc/NEWS:5304 -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." - -#: ../../../Misc/NEWS:2600 ../../../Misc/NEWS:5349 -msgid "Misc" -msgstr "" - -#: ../../../Misc/NEWS:2602 ../../../Misc/NEWS:5351 -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." - -#: ../../../Misc/NEWS:2608 -msgid "" -"`bpo-27186 `__: Add the PyOS_FSPath() " -"function (part of PEP 519)." -msgstr "" -"`bpo-27186 `__: Add the PyOS_FSPath() " -"function (part of PEP 519)." - -#: ../../../Misc/NEWS:2610 -msgid "" -"`bpo-26282 `__: " -"PyArg_ParseTupleAndKeywords() now supports positional-only parameters." -msgstr "" -"`bpo-26282 `__: " -"PyArg_ParseTupleAndKeywords() now supports positional-only parameters." - -#: ../../../Misc/NEWS:2616 -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." - -#: ../../../Misc/NEWS:2621 -msgid "Python 3.6.0 alpha 1" -msgstr "Python 3.6.0 alpha 1" - -#: ../../../Misc/NEWS:2623 -msgid "Release date: 2016-05-16" -msgstr "Date de sortie : 2016-05-16" - -#: ../../../Misc/NEWS:2628 ../../../Misc/NEWS:4631 -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." - -#: ../../../Misc/NEWS:2631 ../../../Misc/NEWS:4634 -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." - -#: ../../../Misc/NEWS:2634 ../../../Misc/NEWS:4637 -msgid "" -"`bpo-26991 `__: Fix possible refleak " -"when creating a function with annotations." -msgstr "" -"`bpo-26991 `__: Fix possible refleak " -"when creating a function with annotations." - -#: ../../../Misc/NEWS:2636 -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." - -#: ../../../Misc/NEWS:2639 ../../../Misc/NEWS:4642 -msgid "" -"`bpo-23640 `__: int.from_bytes() no " -"longer bypasses constructors for subclasses." -msgstr "" -"`bpo-23640 `__: int.from_bytes() no " -"longer bypasses constructors for subclasses." - -#: ../../../Misc/NEWS:2641 -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." - -#: ../../../Misc/NEWS:2644 -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." - -#: ../../../Misc/NEWS:2647 ../../../Misc/NEWS:4644 -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." - -#: ../../../Misc/NEWS:2650 ../../../Misc/NEWS:4647 -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." - -#: ../../../Misc/NEWS:2656 -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." - -#: ../../../Misc/NEWS:2663 -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." - -#: ../../../Misc/NEWS:2667 ../../../Misc/NEWS:4653 -msgid "" -"`bpo-26659 `__: Make the builtin slice " -"type support cycle collection." -msgstr "" -"`bpo-26659 `__: Make the builtin slice " -"type support cycle collection." - -#: ../../../Misc/NEWS:2669 ../../../Misc/NEWS:4655 -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!" - -#: ../../../Misc/NEWS:2672 ../../../Misc/NEWS:4685 -msgid "" -"`bpo-27138 `__: Fix the doc comment for " -"FileFinder.find_spec()." -msgstr "" -"`bpo-27138 `__: Fix the doc comment for " -"FileFinder.find_spec()." - -#: ../../../Misc/NEWS:2674 ../../../Misc/NEWS:4729 -msgid "" -"`bpo-27147 `__: Mention PEP 420 in the " -"importlib docs." -msgstr "" -"`bpo-27147 `__: Mention PEP 420 in the " -"importlib docs." - -#: ../../../Misc/NEWS:2676 ../../../Misc/NEWS:4658 -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." - -#: ../../../Misc/NEWS:2679 ../../../Misc/NEWS:4661 -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." - -#: ../../../Misc/NEWS:2684 -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." - -#: ../../../Misc/NEWS:2687 ../../../Misc/NEWS:4666 -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." - -#: ../../../Misc/NEWS:2690 -msgid "" -"`bpo-19711 `__: Add tests for reloading " -"namespace packages." -msgstr "" -"`bpo-19711 `__: Add tests for reloading " -"namespace packages." - -#: ../../../Misc/NEWS:2692 -msgid "" -"`bpo-21099 `__: Switch applicable " -"importlib tests to use PEP 451 API." -msgstr "" -"`bpo-21099 `__: Switch applicable " -"importlib tests to use PEP 451 API." - -#: ../../../Misc/NEWS:2694 -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." - -#: ../../../Misc/NEWS:2698 -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." - -#: ../../../Misc/NEWS:2702 -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." - -#: ../../../Misc/NEWS:2706 -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." - -#: ../../../Misc/NEWS:2709 -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." - -#: ../../../Misc/NEWS:2712 -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." - -#: ../../../Misc/NEWS:2716 -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." - -#: ../../../Misc/NEWS:2719 ../../../Misc/NEWS:4669 -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." - -#: ../../../Misc/NEWS:2723 ../../../Misc/NEWS:4673 -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." - -#: ../../../Misc/NEWS:2728 ../../../Misc/NEWS:4678 -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." - -#: ../../../Misc/NEWS:2731 -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." - -#: ../../../Misc/NEWS:2735 -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``." - -#: ../../../Misc/NEWS:2740 ../../../Misc/NEWS:4681 -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." - -#: ../../../Misc/NEWS:2744 -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." - -#: ../../../Misc/NEWS:2748 -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.)" - -#: ../../../Misc/NEWS:2751 -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." - -#: ../../../Misc/NEWS:2754 -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." - -#: ../../../Misc/NEWS:2760 -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." - -#: ../../../Misc/NEWS:2763 ../../../Misc/NEWS:4687 -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." - -#: ../../../Misc/NEWS:2770 -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." - -#: ../../../Misc/NEWS:2773 ../../../Misc/NEWS:4704 -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." - -#: ../../../Misc/NEWS:2776 ../../../Misc/NEWS:4707 -msgid "" -"`bpo-25961 `__: Disallowed null " -"characters in the type name." -msgstr "" -"`bpo-25961 `__: Disallowed null " -"characters in the type name." - -#: ../../../Misc/NEWS:2778 ../../../Misc/NEWS:4709 -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." - -#: ../../../Misc/NEWS:2781 ../../../Misc/NEWS:4712 -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." - -#: ../../../Misc/NEWS:2786 ../../../Misc/NEWS:4717 -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." - -#: ../../../Misc/NEWS:2789 ../../../Misc/NEWS:4720 -msgid "" -"`bpo-25766 `__: Special method " -"__bytes__() now works in str subclasses." -msgstr "" -"`bpo-25766 `__: Special method " -"__bytes__() now works in str subclasses." - -#: ../../../Misc/NEWS:2791 ../../../Misc/NEWS:4722 -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." - -#: ../../../Misc/NEWS:2795 ../../../Misc/NEWS:4726 ../../../Misc/NEWS:5363 -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." - -#: ../../../Misc/NEWS:2798 -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." - -#: ../../../Misc/NEWS:2801 -msgid "" -"`bpo-25485 `__: telnetlib.Telnet is now " -"a context manager." -msgstr "" -"`bpo-25485 `__: telnetlib.Telnet is now " -"a context manager." - -#: ../../../Misc/NEWS:2803 ../../../Misc/NEWS:4731 -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__." - -#: ../../../Misc/NEWS:2806 ../../../Misc/NEWS:4734 -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." - -#: ../../../Misc/NEWS:2810 ../../../Misc/NEWS:5381 -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." - -#: ../../../Misc/NEWS:2813 ../../../Misc/NEWS:5384 -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." - -#: ../../../Misc/NEWS:2817 ../../../Misc/NEWS:5388 -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." - -#: ../../../Misc/NEWS:2820 ../../../Misc/NEWS:5391 -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." - -#: ../../../Misc/NEWS:2823 ../../../Misc/NEWS:5394 -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__." - -#: ../../../Misc/NEWS:2826 ../../../Misc/NEWS:5400 -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." - -#: ../../../Misc/NEWS:2830 ../../../Misc/NEWS:5397 -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." - -#: ../../../Misc/NEWS:2833 ../../../Misc/NEWS:5404 -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." - -#: ../../../Misc/NEWS:2836 ../../../Misc/NEWS:5407 -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." - -#: ../../../Misc/NEWS:2839 ../../../Misc/NEWS:5410 -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." - -#: ../../../Misc/NEWS:2842 -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." - -#: ../../../Misc/NEWS:2845 -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." - -#: ../../../Misc/NEWS:2848 ../../../Misc/NEWS:5413 -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." - -#: ../../../Misc/NEWS:2853 ../../../Misc/NEWS:5418 -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." - -#: ../../../Misc/NEWS:2856 -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." - -#: ../../../Misc/NEWS:2859 ../../../Misc/NEWS:5421 -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." - -#: ../../../Misc/NEWS:2862 -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``." - -#: ../../../Misc/NEWS:2865 ../../../Misc/NEWS:5424 -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." - -#: ../../../Misc/NEWS:2867 -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." - -#: ../../../Misc/NEWS:2871 ../../../Misc/NEWS:5426 -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." - -#: ../../../Misc/NEWS:2874 -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." - -#: ../../../Misc/NEWS:2878 ../../../Misc/NEWS:5429 -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." - -#: ../../../Misc/NEWS:2883 -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." - -#: ../../../Misc/NEWS:2887 -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." - -#: ../../../Misc/NEWS:2892 ../../../Misc/NEWS:4738 -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." - -#: ../../../Misc/NEWS:2895 ../../../Misc/NEWS:4741 -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()." - -#: ../../../Misc/NEWS:2898 ../../../Misc/NEWS:4744 -msgid "" -"`bpo-25660 `__: Fix TAB key behaviour in " -"REPL with readline." -msgstr "" -"`bpo-25660 `__: Fix TAB key behaviour in " -"REPL with readline." - -#: ../../../Misc/NEWS:2900 -msgid "" -"`bpo-26288 `__: Optimize PyLong_AsDouble." -msgstr "" -"`bpo-26288 `__: Optimize PyLong_AsDouble." - -#: ../../../Misc/NEWS:2902 -msgid "" -"Issues #26289 and #26315: Optimize floor and modulo division for single-" -"digit longs. Microbenchmarks show 2-2.5x improvement. Built-in 'divmod' " -"function is now also ~10% faster." -msgstr "" - -#: ../../../Misc/NEWS:2906 ../../../Misc/NEWS:4746 -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." - -#: ../../../Misc/NEWS:2912 ../../../Misc/NEWS:4813 -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." - -#: ../../../Misc/NEWS:2916 ../../../Misc/NEWS:4817 -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!" - -#: ../../../Misc/NEWS:2918 -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()." - -#: ../../../Misc/NEWS:2921 ../../../Misc/NEWS:4819 -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." - -#: ../../../Misc/NEWS:2924 ../../../Misc/NEWS:4822 -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." - -#: ../../../Misc/NEWS:2930 -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." - -#: ../../../Misc/NEWS:2933 -msgid "" -"`bpo-27034 `__: Removed deprecated class " -"asynchat.fifo." -msgstr "" -"`bpo-27034 `__: Removed deprecated class " -"asynchat.fifo." - -#: ../../../Misc/NEWS:2935 -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." - -#: ../../../Misc/NEWS:2939 -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." - -#: ../../../Misc/NEWS:2942 ../../../Misc/NEWS:4828 -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." - -#: ../../../Misc/NEWS:2945 ../../../Misc/NEWS:4831 -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." - -#: ../../../Misc/NEWS:2948 ../../../Misc/NEWS:4834 -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." - -#: ../../../Misc/NEWS:2951 ../../../Misc/NEWS:4837 -msgid "" -"`bpo-25745 `__: Fixed leaking a userptr " -"in curses panel destructor." -msgstr "" -"`bpo-25745 `__: Fixed leaking a userptr " -"in curses panel destructor." - -#: ../../../Misc/NEWS:2953 ../../../Misc/NEWS:4839 -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." - -#: ../../../Misc/NEWS:2956 -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." - -#: ../../../Misc/NEWS:2959 -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." - -#: ../../../Misc/NEWS:2962 -msgid "" -"`bpo-26996 `__: Add secrets module as " -"described in PEP 506." -msgstr "" -"`bpo-26996 `__: Add secrets module as " -"described in PEP 506." - -#: ../../../Misc/NEWS:2964 ../../../Misc/NEWS:4842 -msgid "" -"`bpo-26881 `__: The modulefinder module " -"now supports extended opcode arguments." -msgstr "" -"`bpo-26881 `__: The modulefinder module " -"now supports extended opcode arguments." - -#: ../../../Misc/NEWS:2966 ../../../Misc/NEWS:4844 -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." - -#: ../../../Misc/NEWS:2969 ../../../Misc/NEWS:4847 -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." - -#: ../../../Misc/NEWS:2972 ../../../Misc/NEWS:4850 -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." - -#: ../../../Misc/NEWS:2975 -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." - -#: ../../../Misc/NEWS:2980 ../../../Misc/NEWS:4853 -msgid "" -"`bpo-26711 `__: Fixed the comparison of " -"plistlib.Data with other types." -msgstr "" -"`bpo-26711 `__: Fixed the comparison of " -"plistlib.Data with other types." - -#: ../../../Misc/NEWS:2982 ../../../Misc/NEWS:4855 -msgid "" -"`bpo-24114 `__: Fix an uninitialized " -"variable in `ctypes.util`." -msgstr "" -"`bpo-24114 `__: Fix an uninitialized " -"variable in `ctypes.util`." - -#: ../../../Misc/NEWS:2984 ../../../Misc/NEWS:4857 -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 "" - -#: ../../../Misc/NEWS:2988 ../../../Misc/NEWS:4861 -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." - -#: ../../../Misc/NEWS:2993 -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." - -#: ../../../Misc/NEWS:2996 -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." - -#: ../../../Misc/NEWS:2999 ../../../Misc/NEWS:4866 -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." - -#: ../../../Misc/NEWS:3002 ../../../Misc/NEWS:4869 -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." - -#: ../../../Misc/NEWS:3006 ../../../Misc/NEWS:4873 -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()." - -#: ../../../Misc/NEWS:3010 ../../../Misc/NEWS:4877 -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." - -#: ../../../Misc/NEWS:3014 ../../../Misc/NEWS:4881 -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." - -#: ../../../Misc/NEWS:3017 ../../../Misc/NEWS:4884 -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." - -#: ../../../Misc/NEWS:3020 ../../../Misc/NEWS:4887 -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." - -#: ../../../Misc/NEWS:3024 ../../../Misc/NEWS:4891 -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." - -#: ../../../Misc/NEWS:3027 ../../../Misc/NEWS:4894 -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." - -#: ../../../Misc/NEWS:3031 ../../../Misc/NEWS:4898 -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." - -#: ../../../Misc/NEWS:3034 -msgid "" -"`bpo-26782 `__: Add STARTUPINFO to " -"subprocess.__all__ on Windows." -msgstr "" -"`bpo-26782 `__: Add STARTUPINFO to " -"subprocess.__all__ on Windows." - -#: ../../../Misc/NEWS:3036 -msgid "" -"`bpo-26404 `__: Add context manager to " -"socketserver. Patch by Aviv Palivoda." -msgstr "" -"`bpo-26404 `__: Add context manager to " -"socketserver. Patch by Aviv Palivoda." - -#: ../../../Misc/NEWS:3038 ../../../Misc/NEWS:4901 -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." - -#: ../../../Misc/NEWS:3042 -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." - -#: ../../../Misc/NEWS:3045 -msgid "" -"`bpo-26685 `__: Raise OSError if closing " -"a socket fails." -msgstr "" -"`bpo-26685 `__: Raise OSError if closing " -"a socket fails." - -#: ../../../Misc/NEWS:3047 ../../../Misc/NEWS:4905 -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'." - -#: ../../../Misc/NEWS:3049 ../../../Misc/NEWS:4907 -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." - -#: ../../../Misc/NEWS:3051 -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)." - -#: ../../../Misc/NEWS:3054 -msgid "" -"`bpo-25609 `__: Introduce contextlib." -"AbstractContextManager and typing.ContextManager." -msgstr "" -"`bpo-25609 `__: Introduce contextlib." -"AbstractContextManager and typing.ContextManager." - -#: ../../../Misc/NEWS:3057 ../../../Misc/NEWS:4909 -msgid "" -"`bpo-26709 `__: Fixed Y2038 problem in " -"loading binary PLists." -msgstr "" -"`bpo-26709 `__: Fixed Y2038 problem in " -"loading binary PLists." - -#: ../../../Misc/NEWS:3059 ../../../Misc/NEWS:4911 -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." - -#: ../../../Misc/NEWS:3062 -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." - -#: ../../../Misc/NEWS:3065 ../../../Misc/NEWS:4914 -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." - -#: ../../../Misc/NEWS:3069 -msgid "" -"`bpo-26676 `__: Added missing " -"XMLPullParser to ElementTree.__all__." -msgstr "" -"`bpo-26676 `__: Added missing " -"XMLPullParser to ElementTree.__all__." - -#: ../../../Misc/NEWS:3071 ../../../Misc/NEWS:4918 -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." - -#: ../../../Misc/NEWS:3074 -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." - -#: ../../../Misc/NEWS:3078 -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." - -#: ../../../Misc/NEWS:3082 ../../../Misc/NEWS:4921 -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." - -#: ../../../Misc/NEWS:3086 ../../../Misc/NEWS:4925 -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()." - -#: ../../../Misc/NEWS:3089 ../../../Misc/NEWS:4928 -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." - -#: ../../../Misc/NEWS:3092 ../../../Misc/NEWS:4931 -msgid "" -"`bpo-26616 `__: Fixed a bug in datetime." -"astimezone() method." -msgstr "" -"`bpo-26616 `__: Fixed a bug in datetime." -"astimezone() method." - -#: ../../../Misc/NEWS:3094 -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``)." - -#: ../../../Misc/NEWS:3099 -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." - -#: ../../../Misc/NEWS:3104 -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)." - -#: ../../../Misc/NEWS:3108 -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." - -#: ../../../Misc/NEWS:3113 -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)." - -#: ../../../Misc/NEWS:3116 ../../../Misc/NEWS:4937 -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." - -#: ../../../Misc/NEWS:3119 -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." - -#: ../../../Misc/NEWS:3122 -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." - -#: ../../../Misc/NEWS:3125 ../../../Misc/NEWS:4940 -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." - -#: ../../../Misc/NEWS:3128 -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." - -#: ../../../Misc/NEWS:3133 ../../../Misc/NEWS:4943 -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." - -#: ../../../Misc/NEWS:3136 ../../../Misc/NEWS:4946 -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." - -#: ../../../Misc/NEWS:3139 ../../../Misc/NEWS:4949 -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." - -#: ../../../Misc/NEWS:3143 ../../../Misc/NEWS:4953 -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." - -#: ../../../Misc/NEWS:3146 ../../../Misc/NEWS:4956 -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." - -#: ../../../Misc/NEWS:3149 ../../../Misc/NEWS:4959 -msgid "" -"`bpo-26513 `__: Fixes platform module " -"detection of Windows Server" -msgstr "" -"`bpo-26513 `__: Fixes platform module " -"detection of Windows Server" - -#: ../../../Misc/NEWS:3151 ../../../Misc/NEWS:4961 -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." - -#: ../../../Misc/NEWS:3154 -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." - -#: ../../../Misc/NEWS:3157 ../../../Misc/NEWS:4964 -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." - -#: ../../../Misc/NEWS:3160 ../../../Misc/NEWS:4967 -msgid "" -"`bpo-26177 `__: Fixed the keys() method " -"for Canvas and Scrollbar widgets." -msgstr "" -"`bpo-26177 `__: Fixed the keys() method " -"for Canvas and Scrollbar widgets." - -#: ../../../Misc/NEWS:3162 -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." - -#: ../../../Misc/NEWS:3165 -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." - -#: ../../../Misc/NEWS:3168 ../../../Misc/NEWS:4972 -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." - -#: ../../../Misc/NEWS:3172 -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." - -#: ../../../Misc/NEWS:3176 ../../../Misc/NEWS:4976 -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." - -#: ../../../Misc/NEWS:3179 ../../../Misc/NEWS:4979 -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." - -#: ../../../Misc/NEWS:3182 -msgid "" -"`bpo-26482 `__: Allowed pickling " -"recursive dequeues." -msgstr "" -"`bpo-26482 `__: Allowed pickling " -"recursive dequeues." - -#: ../../../Misc/NEWS:3184 -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." - -#: ../../../Misc/NEWS:3187 ../../../Misc/NEWS:4982 -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." - -#: ../../../Misc/NEWS:3191 ../../../Misc/NEWS:4986 -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." - -#: ../../../Misc/NEWS:3194 ../../../Misc/NEWS:4989 -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." - -#: ../../../Misc/NEWS:3198 ../../../Misc/NEWS:4993 -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." - -#: ../../../Misc/NEWS:3201 ../../../Misc/NEWS:4996 -msgid "" -"`bpo-26186 `__: Remove an invalid type " -"check in importlib.util.LazyLoader." -msgstr "" -"`bpo-26186 `__: Remove an invalid type " -"check in importlib.util.LazyLoader." - -#: ../../../Misc/NEWS:3203 -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." - -#: ../../../Misc/NEWS:3207 ../../../Misc/NEWS:5002 -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." - -#: ../../../Misc/NEWS:3211 -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." - -#: ../../../Misc/NEWS:3217 ../../../Misc/NEWS:5006 -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." - -#: ../../../Misc/NEWS:3220 ../../../Misc/NEWS:5009 -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." - -#: ../../../Misc/NEWS:3222 -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." - -#: ../../../Misc/NEWS:3225 -msgid "" -"`bpo-23992 `__: multiprocessing: make " -"MapResult not fail-fast upon exception." -msgstr "" -"`bpo-23992 `__: multiprocessing: make " -"MapResult not fail-fast upon exception." - -#: ../../../Misc/NEWS:3227 -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." - -#: ../../../Misc/NEWS:3230 ../../../Misc/NEWS:5011 -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." - -#: ../../../Misc/NEWS:3233 -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." - -#: ../../../Misc/NEWS:3236 ../../../Misc/NEWS:5014 -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." - -#: ../../../Misc/NEWS:3238 ../../../Misc/NEWS:5016 -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." - -#: ../../../Misc/NEWS:3241 -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." - -#: ../../../Misc/NEWS:3244 ../../../Misc/NEWS:5019 -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." - -#: ../../../Misc/NEWS:3247 ../../../Misc/NEWS:5022 -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." - -#: ../../../Misc/NEWS:3252 ../../../Misc/NEWS:5027 -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." - -#: ../../../Misc/NEWS:3255 ../../../Misc/NEWS:5030 -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." - -#: ../../../Misc/NEWS:3258 ../../../Misc/NEWS:5033 -msgid "" -"`bpo-19883 `__: Fixed possible integer " -"overflows in zipimport." -msgstr "" -"`bpo-19883 `__: Fixed possible integer " -"overflows in zipimport." - -#: ../../../Misc/NEWS:3260 ../../../Misc/NEWS:5035 -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." - -#: ../../../Misc/NEWS:3264 -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." - -#: ../../../Misc/NEWS:3268 ../../../Misc/NEWS:5039 -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." - -#: ../../../Misc/NEWS:3271 ../../../Misc/NEWS:5042 -msgid "" -"`bpo-25935 `__: Garbage collector now " -"breaks reference loops with OrderedDict." -msgstr "" -"`bpo-25935 `__: Garbage collector now " -"breaks reference loops with OrderedDict." - -#: ../../../Misc/NEWS:3273 ../../../Misc/NEWS:5044 -msgid "" -"`bpo-16620 `__: Fixed AttributeError in " -"msilib.Directory.glob()." -msgstr "" -"`bpo-16620 `__: Fixed AttributeError in " -"msilib.Directory.glob()." - -#: ../../../Misc/NEWS:3275 ../../../Misc/NEWS:5046 -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)." - -#: ../../../Misc/NEWS:3278 -msgid "" -"`bpo-26129 `__: Deprecated accepting non-" -"integers in grp.getgrgid()." -msgstr "" -"`bpo-26129 `__: Deprecated accepting non-" -"integers in grp.getgrgid()." - -#: ../../../Misc/NEWS:3280 ../../../Misc/NEWS:5049 -msgid "" -"`bpo-25850 `__: Use cross-compilation by " -"default for 64-bit Windows." -msgstr "" -"`bpo-25850 `__: Use cross-compilation by " -"default for 64-bit Windows." - -#: ../../../Misc/NEWS:3282 -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." - -#: ../../../Misc/NEWS:3285 -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." - -#: ../../../Misc/NEWS:3288 ../../../Misc/NEWS:5053 -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." - -#: ../../../Misc/NEWS:3291 -msgid "" -"`bpo-26069 `__: Remove the deprecated " -"apis in the trace module." -msgstr "" -"`bpo-26069 `__: Remove the deprecated " -"apis in the trace module." - -#: ../../../Misc/NEWS:3293 ../../../Misc/NEWS:5056 -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." - -#: ../../../Misc/NEWS:3296 ../../../Misc/NEWS:5059 -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." - -#: ../../../Misc/NEWS:3299 ../../../Misc/NEWS:5062 -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()." - -#: ../../../Misc/NEWS:3302 ../../../Misc/NEWS:5065 -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." - -#: ../../../Misc/NEWS:3305 -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." - -#: ../../../Misc/NEWS:3309 ../../../Misc/NEWS:5068 -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)." - -#: ../../../Misc/NEWS:3312 -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." - -#: ../../../Misc/NEWS:3315 -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()." - -#: ../../../Misc/NEWS:3318 -msgid "" -"`bpo-25928 `__: Add Decimal." -"as_integer_ratio()." -msgstr "" -"`bpo-25928 `__: Add Decimal." -"as_integer_ratio()." - -#: ../../../Misc/NEWS:3320 -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)." - -#: ../../../Misc/NEWS:3324 -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." - -#: ../../../Misc/NEWS:3327 ../../../Misc/NEWS:5075 -msgid "" -"`bpo-24103 `__: Fixed possible use after " -"free in ElementTree.XMLPullParser." -msgstr "" -"`bpo-24103 `__: Fixed possible use after " -"free in ElementTree.XMLPullParser." - -#: ../../../Misc/NEWS:3329 ../../../Misc/NEWS:5077 -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." - -#: ../../../Misc/NEWS:3332 ../../../Misc/NEWS:5080 -msgid "" -"`bpo-25914 `__: Fixed and simplified " -"OrderedDict.__sizeof__." -msgstr "" -"`bpo-25914 `__: Fixed and simplified " -"OrderedDict.__sizeof__." - -#: ../../../Misc/NEWS:3334 -msgid "" -"`bpo-25869 `__: Optimized deepcopying " -"ElementTree; it is now 20 times faster." -msgstr "" -"`bpo-25869 `__: Optimized deepcopying " -"ElementTree; it is now 20 times faster." - -#: ../../../Misc/NEWS:3336 -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." - -#: ../../../Misc/NEWS:3340 ../../../Misc/NEWS:5082 -msgid "" -"`bpo-25902 `__: Fixed various refcount " -"issues in ElementTree iteration." -msgstr "" -"`bpo-25902 `__: Fixed various refcount " -"issues in ElementTree iteration." - -#: ../../../Misc/NEWS:3342 -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." - -#: ../../../Misc/NEWS:3345 -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." - -#: ../../../Misc/NEWS:3348 -msgid "" -"`bpo-25761 `__: Improved detecting " -"errors in broken pickle data." -msgstr "" -"`bpo-25761 `__: Improved detecting " -"errors in broken pickle data." - -#: ../../../Misc/NEWS:3350 ../../../Misc/NEWS:5084 -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." - -#: ../../../Misc/NEWS:3354 ../../../Misc/NEWS:5088 -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." - -#: ../../../Misc/NEWS:3358 ../../../Misc/NEWS:5092 -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." - -#: ../../../Misc/NEWS:3361 -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." - -#: ../../../Misc/NEWS:3364 ../../../Misc/NEWS:5095 -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()." - -#: ../../../Misc/NEWS:3367 ../../../Misc/NEWS:5098 -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." - -#: ../../../Misc/NEWS:3372 ../../../Misc/NEWS:5103 -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)." - -#: ../../../Misc/NEWS:3376 ../../../Misc/NEWS:5107 -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." - -#: ../../../Misc/NEWS:3380 ../../../Misc/NEWS:5111 -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." - -#: ../../../Misc/NEWS:3382 ../../../Misc/NEWS:5113 -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." - -#: ../../../Misc/NEWS:3385 -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." - -#: ../../../Misc/NEWS:3388 ../../../Misc/NEWS:5116 -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." - -#: ../../../Misc/NEWS:3391 ../../../Misc/NEWS:5119 -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." - -#: ../../../Misc/NEWS:3394 ../../../Misc/NEWS:5122 -msgid "" -"`bpo-25688 `__: Fixed file leak in " -"ElementTree.iterparse() raising an error." -msgstr "" -"`bpo-25688 `__: Fixed file leak in " -"ElementTree.iterparse() raising an error." - -#: ../../../Misc/NEWS:3396 ../../../Misc/NEWS:5124 -msgid "" -"`bpo-23914 `__: Fixed SystemError raised " -"by unpickler on broken pickle data." -msgstr "" -"`bpo-23914 `__: Fixed SystemError raised " -"by unpickler on broken pickle data." - -#: ../../../Misc/NEWS:3398 ../../../Misc/NEWS:5126 -msgid "" -"`bpo-25691 `__: Fixed crash on deleting " -"ElementTree.Element attributes." -msgstr "" -"`bpo-25691 `__: Fixed crash on deleting " -"ElementTree.Element attributes." - -#: ../../../Misc/NEWS:3400 ../../../Misc/NEWS:5128 -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." - -#: ../../../Misc/NEWS:3403 ../../../Misc/NEWS:5447 -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." - -#: ../../../Misc/NEWS:3410 ../../../Misc/NEWS:5454 -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." - -#: ../../../Misc/NEWS:3413 ../../../Misc/NEWS:5457 -msgid "" -"`bpo-25593 `__: Change semantics of " -"EventLoop.stop() in asyncio." -msgstr "" -"`bpo-25593 `__: Change semantics of " -"EventLoop.stop() in asyncio." - -#: ../../../Misc/NEWS:3415 ../../../Misc/NEWS:5459 -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." - -#: ../../../Misc/NEWS:3419 -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." - -#: ../../../Misc/NEWS:3425 -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." - -#: ../../../Misc/NEWS:3429 ../../../Misc/NEWS:5466 -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." - -#: ../../../Misc/NEWS:3433 ../../../Misc/NEWS:5470 -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." - -#: ../../../Misc/NEWS:3435 ../../../Misc/NEWS:5472 -msgid "" -"`bpo-25584 `__: Fixed recursive glob() " -"with patterns starting with ``**``." -msgstr "" -"`bpo-25584 `__: Fixed recursive glob() " -"with patterns starting with ``**``." - -#: ../../../Misc/NEWS:3437 ../../../Misc/NEWS:5474 -msgid "" -"`bpo-25446 `__: Fix regression in " -"smtplib's AUTH LOGIN support." -msgstr "" -"`bpo-25446 `__: Fix regression in " -"smtplib's AUTH LOGIN support." - -#: ../../../Misc/NEWS:3439 ../../../Misc/NEWS:5476 -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." - -#: ../../../Misc/NEWS:3442 ../../../Misc/NEWS:5479 -msgid "" -"`bpo-25554 `__: Got rid of circular " -"references in regular expression parsing." -msgstr "" -"`bpo-25554 `__: Got rid of circular " -"references in regular expression parsing." - -#: ../../../Misc/NEWS:3444 -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." - -#: ../../../Misc/NEWS:3447 ../../../Misc/NEWS:5481 -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." - -#: ../../../Misc/NEWS:3451 ../../../Misc/NEWS:5485 -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." - -#: ../../../Misc/NEWS:3454 ../../../Misc/NEWS:5488 -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." - -#: ../../../Misc/NEWS:3456 ../../../Misc/NEWS:5490 -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." - -#: ../../../Misc/NEWS:3460 ../../../Misc/NEWS:5494 -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)." - -#: ../../../Misc/NEWS:3463 ../../../Misc/NEWS:5497 -msgid "" -"`bpo-25390 `__: typing: Don't crash on " -"Union[str, Pattern]." -msgstr "" -"`bpo-25390 `__: typing: Don't crash on " -"Union[str, Pattern]." - -#: ../../../Misc/NEWS:3465 ../../../Misc/NEWS:5499 -msgid "" -"`bpo-25441 `__: asyncio: Raise error " -"from drain() when socket is closed." -msgstr "" -"`bpo-25441 `__: asyncio: Raise error " -"from drain() when socket is closed." - -#: ../../../Misc/NEWS:3467 ../../../Misc/NEWS:5501 -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." - -#: ../../../Misc/NEWS:3470 ../../../Misc/NEWS:5504 -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." - -#: ../../../Misc/NEWS:3473 -msgid "" -"Move the imp module from a PendingDeprecationWarning to DeprecationWarning." -msgstr "" - -#: ../../../Misc/NEWS:3475 ../../../Misc/NEWS:5507 -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." - -#: ../../../Misc/NEWS:3478 ../../../Misc/NEWS:5510 -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." - -#: ../../../Misc/NEWS:3482 -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." - -#: ../../../Misc/NEWS:3485 -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." - -#: ../../../Misc/NEWS:3488 -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." - -#: ../../../Misc/NEWS:3491 ../../../Misc/NEWS:5514 -msgid "" -"`bpo-25364 `__: zipfile now works in " -"threads disabled builds." -msgstr "" -"`bpo-25364 `__: zipfile now works in " -"threads disabled builds." - -#: ../../../Misc/NEWS:3493 ../../../Misc/NEWS:5516 -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." - -#: ../../../Misc/NEWS:3496 -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." - -#: ../../../Misc/NEWS:3499 ../../../Misc/NEWS:5519 -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." - -#: ../../../Misc/NEWS:3502 ../../../Misc/NEWS:5522 -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." - -#: ../../../Misc/NEWS:3505 ../../../Misc/NEWS:5525 -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." - -#: ../../../Misc/NEWS:3511 ../../../Misc/NEWS:5531 -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." - -#: ../../../Misc/NEWS:3515 ../../../Misc/NEWS:5535 -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." - -#: ../../../Misc/NEWS:3518 ../../../Misc/NEWS:5538 -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." - -#: ../../../Misc/NEWS:3521 -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." - -#: ../../../Misc/NEWS:3525 ../../../Misc/NEWS:5565 -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." - -#: ../../../Misc/NEWS:3528 ../../../Misc/NEWS:5562 -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." - -#: ../../../Misc/NEWS:3531 -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." - -#: ../../../Misc/NEWS:3534 -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." - -#: ../../../Misc/NEWS:3537 -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'." - -#: ../../../Misc/NEWS:3539 -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)." - -#: ../../../Misc/NEWS:3544 -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." - -#: ../../../Misc/NEWS:3547 -msgid "" -"`bpo-24633 `__: site-packages/README -> " -"README.txt." -msgstr "" -"`bpo-24633 `__: site-packages/README -> " -"README.txt." - -#: ../../../Misc/NEWS:3549 -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." - -#: ../../../Misc/NEWS:3553 -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." - -#: ../../../Misc/NEWS:3556 -msgid "" -"Fix crash in itertools.cycle.__setstate__() when the first argument wasn't a " -"list." -msgstr "" - -#: ../../../Misc/NEWS:3559 -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." - -#: ../../../Misc/NEWS:3562 -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." - -#: ../../../Misc/NEWS:3565 -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." - -#: ../../../Misc/NEWS:3568 -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." - -#: ../../../Misc/NEWS:3570 -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." - -#: ../../../Misc/NEWS:3573 -msgid "" -"`bpo-8585 `__: improved tests for " -"zipimporter2. Patch from Mark Lawrence." -msgstr "" -"`bpo-8585 `__: improved tests for " -"zipimporter2. Patch from Mark Lawrence." - -#: ../../../Misc/NEWS:3575 ../../../Misc/NEWS:6106 -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." - -#: ../../../Misc/NEWS:3578 -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." - -#: ../../../Misc/NEWS:3582 ../../../Misc/NEWS:6109 -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" - -#: ../../../Misc/NEWS:3585 -msgid "" -"`bpo-13248 `__: Remove deprecated " -"inspect.getmoduleinfo function." -msgstr "" -"`bpo-13248 `__: Remove deprecated " -"inspect.getmoduleinfo function." - -#: ../../../Misc/NEWS:3587 ../../../Misc/NEWS:5638 -msgid "" -"`bpo-25578 `__: Fix (another) memory " -"leak in SSLSocket.getpeercer()." -msgstr "" -"`bpo-25578 `__: Fix (another) memory " -"leak in SSLSocket.getpeercer()." - -#: ../../../Misc/NEWS:3589 ../../../Misc/NEWS:5640 -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." - -#: ../../../Misc/NEWS:3592 ../../../Misc/NEWS:5643 -msgid "" -"`bpo-25569 `__: Fix memory leak in " -"SSLSocket.getpeercert()." -msgstr "" -"`bpo-25569 `__: Fix memory leak in " -"SSLSocket.getpeercert()." - -#: ../../../Misc/NEWS:3594 ../../../Misc/NEWS:5645 -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." - -#: ../../../Misc/NEWS:3597 ../../../Misc/NEWS:5648 -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." - -#: ../../../Misc/NEWS:3600 ../../../Misc/NEWS:5131 -msgid "" -"Skip getaddrinfo if host is already resolved. Patch by A. Jesse Jiryu Davis." -msgstr "" - -#: ../../../Misc/NEWS:3603 ../../../Misc/NEWS:5134 -msgid "" -"`bpo-26050 `__: Add asyncio.StreamReader." -"readuntil() method. Patch by Марк Коренберг." -msgstr "" -"`bpo-26050 `__: Add asyncio.StreamReader." -"readuntil() method. Patch by Марк Коренберг." - -#: ../../../Misc/NEWS:3606 ../../../Misc/NEWS:5137 -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." - -#: ../../../Misc/NEWS:3609 ../../../Misc/NEWS:5140 -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." - -#: ../../../Misc/NEWS:3612 ../../../Misc/NEWS:5143 -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." - -#: ../../../Misc/NEWS:3615 ../../../Misc/NEWS:5146 -msgid "" -"`bpo-27040 `__: Add loop." -"get_exception_handler method" -msgstr "" -"`bpo-27040 `__: Add loop." -"get_exception_handler method" - -#: ../../../Misc/NEWS:3617 ../../../Misc/NEWS:5148 -msgid "" -"`bpo-27041 `__: asyncio: Add loop." -"create_future method" -msgstr "" -"`bpo-27041 `__: asyncio: Add loop." -"create_future method" - -#: ../../../Misc/NEWS:3622 ../../../Misc/NEWS:5197 -msgid "" -"`bpo-20640 `__: Add tests for idlelib." -"configHelpSourceEdit. Patch by Saimadhav Heblikar." -msgstr "" -"`bpo-20640 `__: Add tests for idlelib." -"configHelpSourceEdit. Patch by Saimadhav Heblikar." - -#: ../../../Misc/NEWS:3625 ../../../Misc/NEWS:5200 -msgid "" -"In the 'IDLE-console differences' section of the IDLE doc, clarify how " -"running with IDLE affects sys.modules and the standard streams." -msgstr "" - -#: ../../../Misc/NEWS:3628 ../../../Misc/NEWS:5203 -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." - -#: ../../../Misc/NEWS:3631 ../../../Misc/NEWS:5206 -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'." - -#: ../../../Misc/NEWS:3635 ../../../Misc/NEWS:5677 -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." - -#: ../../../Misc/NEWS:3639 ../../../Misc/NEWS:5681 -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." - -#: ../../../Misc/NEWS:3647 ../../../Misc/NEWS:5689 -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 "" - -#: ../../../Misc/NEWS:3651 ../../../Misc/NEWS:5693 -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." - -#: ../../../Misc/NEWS:3654 ../../../Misc/NEWS:5696 -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." - -#: ../../../Misc/NEWS:3658 ../../../Misc/NEWS:5700 -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." - -#: ../../../Misc/NEWS:3662 ../../../Misc/NEWS:5704 -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." - -#: ../../../Misc/NEWS:3665 ../../../Misc/NEWS:5707 -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." - -#: ../../../Misc/NEWS:3673 ../../../Misc/NEWS:5715 -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'." - -#: ../../../Misc/NEWS:3677 ../../../Misc/NEWS:5719 -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." - -#: ../../../Misc/NEWS:3680 ../../../Misc/NEWS:5722 -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." - -#: ../../../Misc/NEWS:3684 ../../../Misc/NEWS:5726 -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." - -#: ../../../Misc/NEWS:3687 ../../../Misc/NEWS:5729 -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." - -#: ../../../Misc/NEWS:3690 ../../../Misc/NEWS:5732 -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." - -#: ../../../Misc/NEWS:3693 ../../../Misc/NEWS:5735 -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." - -#: ../../../Misc/NEWS:3696 ../../../Misc/NEWS:5738 -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." - -#: ../../../Misc/NEWS:3703 ../../../Misc/NEWS:5745 -msgid "" -"`bpo-25225 `__: Condense and rewrite " -"Idle doc section on text colors." -msgstr "" -"`bpo-25225 `__: Condense and rewrite " -"Idle doc section on text colors." - -#: ../../../Misc/NEWS:3705 ../../../Misc/NEWS:5747 -msgid "" -"`bpo-21995 `__: Explain some differences " -"between IDLE and console Python." -msgstr "" -"`bpo-21995 `__: Explain some differences " -"between IDLE and console Python." - -#: ../../../Misc/NEWS:3707 ../../../Misc/NEWS:5749 -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." - -#: ../../../Misc/NEWS:3709 ../../../Misc/NEWS:5751 -msgid "" -"`bpo-25224 `__: Doc: augment Idle " -"feature list and no-subprocess section." -msgstr "" -"`bpo-25224 `__: Doc: augment Idle " -"feature list and no-subprocess section." - -#: ../../../Misc/NEWS:3711 ../../../Misc/NEWS:5753 -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." - -#: ../../../Misc/NEWS:3714 ../../../Misc/NEWS:5756 -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__." - -#: ../../../Misc/NEWS:3717 ../../../Misc/NEWS:5759 -msgid "" -"`bpo-25199 `__: Idle: add " -"synchronization comments for future maintainers." -msgstr "" -"`bpo-25199 `__: Idle: add " -"synchronization comments for future maintainers." - -#: ../../../Misc/NEWS:3719 -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." - -#: ../../../Misc/NEWS:3725 ../../../Misc/NEWS:5767 -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." - -#: ../../../Misc/NEWS:3727 ../../../Misc/NEWS:5769 -msgid "" -"`bpo-24790 `__: Remove extraneous code " -"(which also create 2 & 3 conflicts)." -msgstr "" -"`bpo-24790 `__: Remove extraneous code " -"(which also create 2 & 3 conflicts)." - -#: ../../../Misc/NEWS:3732 ../../../Misc/NEWS:5218 -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." - -#: ../../../Misc/NEWS:3734 ../../../Misc/NEWS:5220 -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." - -#: ../../../Misc/NEWS:3738 ../../../Misc/NEWS:5224 -msgid "" -"`bpo-23606 `__: Adds note to ctypes " -"documentation regarding cdll.msvcrt." -msgstr "" -"`bpo-23606 `__: Adds note to ctypes " -"documentation regarding cdll.msvcrt." - -#: ../../../Misc/NEWS:3740 ../../../Misc/NEWS:5784 -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." - -#: ../../../Misc/NEWS:3743 ../../../Misc/NEWS:5229 -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" - -#: ../../../Misc/NEWS:3750 ../../../Misc/NEWS:5236 -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." - -#: ../../../Misc/NEWS:3753 -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." - -#: ../../../Misc/NEWS:3756 ../../../Misc/NEWS:5239 -msgid "" -"`bpo-26523 `__: The multiprocessing " -"thread pool (multiprocessing.dummy.Pool) was untested." -msgstr "" -"`bpo-26523 `__: The multiprocessing " -"thread pool (multiprocessing.dummy.Pool) was untested." - -#: ../../../Misc/NEWS:3759 ../../../Misc/NEWS:5242 -msgid "" -"`bpo-26015 `__: Added new tests for " -"pickling iterators of mutable sequences." -msgstr "" -"`bpo-26015 `__: Added new tests for " -"pickling iterators of mutable sequences." - -#: ../../../Misc/NEWS:3761 ../../../Misc/NEWS:5244 -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." - -#: ../../../Misc/NEWS:3764 -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." - -#: ../../../Misc/NEWS:3767 ../../../Misc/NEWS:5250 -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." - -#: ../../../Misc/NEWS:3770 ../../../Misc/NEWS:5799 -msgid "" -"`bpo-25449 `__: Added tests for " -"OrderedDict subclasses." -msgstr "" -"`bpo-25449 `__: Added tests for " -"OrderedDict subclasses." - -#: ../../../Misc/NEWS:3772 -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." - -#: ../../../Misc/NEWS:3776 -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." - -#: ../../../Misc/NEWS:3778 -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." - -#: ../../../Misc/NEWS:3781 -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." - -#: ../../../Misc/NEWS:3784 ../../../Misc/NEWS:5806 -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 "" - -#: ../../../Misc/NEWS:3787 ../../../Misc/NEWS:5253 -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." - -#: ../../../Misc/NEWS:3793 -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." - -#: ../../../Misc/NEWS:3795 ../../../Misc/NEWS:5259 -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." - -#: ../../../Misc/NEWS:3798 -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." - -#: ../../../Misc/NEWS:3801 ../../../Misc/NEWS:5262 -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." - -#: ../../../Misc/NEWS:3806 -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." - -#: ../../../Misc/NEWS:3809 ../../../Misc/NEWS:5273 -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." - -#: ../../../Misc/NEWS:3815 ../../../Misc/NEWS:5279 -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." - -#: ../../../Misc/NEWS:3818 ../../../Misc/NEWS:5282 -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." - -#: ../../../Misc/NEWS:3821 ../../../Misc/NEWS:5285 -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." - -#: ../../../Misc/NEWS:3824 ../../../Misc/NEWS:5288 -msgid "" -"`bpo-26465 `__: Update Windows builds to " -"use OpenSSL 1.0.2g." -msgstr "" -"`bpo-26465 `__: Update Windows builds to " -"use OpenSSL 1.0.2g." - -#: ../../../Misc/NEWS:3826 -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." - -#: ../../../Misc/NEWS:3830 ../../../Misc/NEWS:5299 -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." - -#: ../../../Misc/NEWS:3833 ../../../Misc/NEWS:5302 -msgid "" -"`bpo-25696 `__: Fix installation of " -"Python on UNIX with make -j9." -msgstr "" -"`bpo-25696 `__: Fix installation of " -"Python on UNIX with make -j9." - -#: ../../../Misc/NEWS:3835 ../../../Misc/NEWS:5817 -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." - -#: ../../../Misc/NEWS:3838 ../../../Misc/NEWS:5290 -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." - -#: ../../../Misc/NEWS:3842 -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." - -#: ../../../Misc/NEWS:3845 ../../../Misc/NEWS:5307 -msgid "" -"`bpo-26268 `__: Update Windows builds to " -"use OpenSSL 1.0.2f." -msgstr "" -"`bpo-26268 `__: Update Windows builds to " -"use OpenSSL 1.0.2f." - -#: ../../../Misc/NEWS:3847 ../../../Misc/NEWS:5309 -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." - -#: ../../../Misc/NEWS:3849 ../../../Misc/NEWS:5311 -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." - -#: ../../../Misc/NEWS:3856 ../../../Misc/NEWS:5318 -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." - -#: ../../../Misc/NEWS:3858 ../../../Misc/NEWS:5320 -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)." - -#: ../../../Misc/NEWS:3862 ../../../Misc/NEWS:5324 -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" - -#: ../../../Misc/NEWS:3865 ../../../Misc/NEWS:5327 -msgid "" -"`bpo-26073 `__: Update the list of magic " -"numbers in launcher" -msgstr "" -"`bpo-26073 `__: Update the list of magic " -"numbers in launcher" - -#: ../../../Misc/NEWS:3867 ../../../Misc/NEWS:5329 -msgid "" -"`bpo-26065 `__: Excludes venv from " -"library when generating embeddable distro." -msgstr "" -"`bpo-26065 `__: Excludes venv from " -"library when generating embeddable distro." - -#: ../../../Misc/NEWS:3870 ../../../Misc/NEWS:5856 -msgid "" -"`bpo-25022 `__: Removed very outdated PC/" -"example_nt/ directory." -msgstr "" -"`bpo-25022 `__: Removed very outdated PC/" -"example_nt/ directory." - -#: ../../../Misc/NEWS:3875 ../../../Misc/NEWS:5335 -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." - -#: ../../../Misc/NEWS:3880 ../../../Misc/NEWS:5340 -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." - -#: ../../../Misc/NEWS:3883 ../../../Misc/NEWS:5343 -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." - -#: ../../../Misc/NEWS:3886 ../../../Misc/NEWS:5346 -msgid "" -"`bpo-26316 `__: Fix variable name typo " -"in Argument Clinic." -msgstr "" -"`bpo-26316 `__: Fix variable name typo " -"in Argument Clinic." - -#: ../../../Misc/NEWS:3888 ../../../Misc/NEWS:5861 -msgid "" -"`bpo-25440 `__: Fix output of python-" -"config --extension-suffix." -msgstr "" -"`bpo-25440 `__: Fix output of python-" -"config --extension-suffix." - -#: ../../../Misc/NEWS:3890 -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`." - -#: ../../../Misc/NEWS:3896 -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." - -#: ../../../Misc/NEWS:3900 -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." - -#: ../../../Misc/NEWS:3906 -msgid "Python 3.5.3" -msgstr "Python 3.5.3" - -#: ../../../Misc/NEWS:3908 -msgid "Release date: 2017-01-17" -msgstr "Date de sortie : 2014-01-26" - -#: ../../../Misc/NEWS:3910 -msgid "There were no code changes between 3.5.3rc1 and 3.5.3 final." -msgstr "" - -#: ../../../Misc/NEWS:3914 -msgid "Python 3.5.3 release candidate 1" -msgstr "Python 3.5.3 release candidate 1" - -#: ../../../Misc/NEWS:3916 -msgid "Release date: 2017-01-02" -msgstr "Date de sortie : 05-01-2014" - -#: ../../../Misc/NEWS:3921 -msgid "" -"`bpo-29073 `__: bytearray formatting no " -"longer truncates on first null byte." -msgstr "" -"`bpo-29073 `__: bytearray formatting no " -"longer truncates on first null byte." - -#: ../../../Misc/NEWS:3925 -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." - -#: ../../../Misc/NEWS:3937 -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." - -#: ../../../Misc/NEWS:3979 -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." - -#: ../../../Misc/NEWS:3994 -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)" - -#: ../../../Misc/NEWS:4007 -msgid "" -"`bpo-26020 `__: set literal evaluation " -"order did not match documented behaviour." -msgstr "" -"`bpo-26020 `__: set literal evaluation " -"order did not match documented behaviour." - -#: ../../../Misc/NEWS:4025 -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." - -#: ../../../Misc/NEWS:4078 -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." - -#: ../../../Misc/NEWS:4129 -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." - -#: ../../../Misc/NEWS:4168 -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." - -#: ../../../Misc/NEWS:4193 -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." - -#: ../../../Misc/NEWS:4282 -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." - -#: ../../../Misc/NEWS:4326 -msgid "" -"`bpo-26664 `__: Fix activate.fish by " -"removing mis-use of ``$``." -msgstr "" -"`bpo-26664 `__: Fix activate.fish by " -"removing mis-use of ``$``." - -#: ../../../Misc/NEWS:4328 -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." - -#: ../../../Misc/NEWS:4332 -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 "" - -#: ../../../Misc/NEWS:4425 -msgid "" -"`bpo-28600 `__: Optimize loop." -"call_soon()." -msgstr "" -"`bpo-28600 `__: Optimize loop." -"call_soon()." - -#: ../../../Misc/NEWS:4439 -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." - -#: ../../../Misc/NEWS:4442 -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)" - -#: ../../../Misc/NEWS:4479 -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." - -#: ../../../Misc/NEWS:4490 -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." - -#: ../../../Misc/NEWS:4532 -msgid "" -"`bpo-27309 `__: Enabled proper Windows " -"styles in python[w].exe manifest." -msgstr "" -"`bpo-27309 `__: Enabled proper Windows " -"styles in python[w].exe manifest." - -#: ../../../Misc/NEWS:4572 -msgid "" -"`bpo-26359 `__: Add the --with-" -"optimizations configure flag." -msgstr "" -"`bpo-26359 `__: Add the --with-" -"optimizations configure flag." - -#: ../../../Misc/NEWS:4577 -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." - -#: ../../../Misc/NEWS:4600 -msgid "Python 3.5.2" -msgstr "Python 3.5.2" - -#: ../../../Misc/NEWS:4602 -msgid "Release date: 2016-06-26" -msgstr "Date de sortie : 2016-06-26" - -#: ../../../Misc/NEWS:4612 -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." - -#: ../../../Misc/NEWS:4617 -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." - -#: ../../../Misc/NEWS:4621 -msgid "Python 3.5.2 release candidate 1" -msgstr "Python 3.5.2 release candidate 1" - -#: ../../../Misc/NEWS:4623 -msgid "Release date: 2016-06-12" -msgstr "Date de sortie : 2016-06-12" - -#: ../../../Misc/NEWS:4639 -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." - -#: ../../../Misc/NEWS:4694 -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." - -#: ../../../Misc/NEWS:4698 -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." - -#: ../../../Misc/NEWS:4760 -msgid "" -"[Security] Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. " -"Reported by Team Oststrom" -msgstr "" - -#: ../../../Misc/NEWS:4933 -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." - -#: ../../../Misc/NEWS:4969 -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." - -#: ../../../Misc/NEWS:4998 -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." - -#: ../../../Misc/NEWS:5051 -msgid "" -"`bpo-17633 `__: Improve zipimport's " -"support for namespace packages." -msgstr "" -"`bpo-17633 `__: Improve zipimport's " -"support for namespace packages." - -#: ../../../Misc/NEWS:5071 -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)." - -#: ../../../Misc/NEWS:5150 -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." - -#: ../../../Misc/NEWS:5154 -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." - -#: ../../../Misc/NEWS:5190 -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 ." - -#: ../../../Misc/NEWS:5226 -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." - -#: ../../../Misc/NEWS:5247 -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." - -#: ../../../Misc/NEWS:5270 -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." - -#: ../../../Misc/NEWS:5294 -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 %*``." - -#: ../../../Misc/NEWS:5356 -msgid "Python 3.5.1 final" -msgstr "Python 3.5.1 final" - -#: ../../../Misc/NEWS:5358 -msgid "Release date: 2015-12-06" -msgstr "Date de sortie : 2015-12-06" - -#: ../../../Misc/NEWS:5369 -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." - -#: ../../../Misc/NEWS:5374 -msgid "Python 3.5.1 release candidate 1" -msgstr "Python 3.5.1 release candidate 1" - -#: ../../../Misc/NEWS:5376 -msgid "Release date: 2015-11-22" -msgstr "Date de sortie : 2015-11-22" - -#: ../../../Misc/NEWS:5434 -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." - -#: ../../../Misc/NEWS:5437 -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." - -#: ../../../Misc/NEWS:5440 -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." - -#: ../../../Misc/NEWS:5463 -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." - -#: ../../../Misc/NEWS:5541 -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." - -#: ../../../Misc/NEWS:5544 -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." - -#: ../../../Misc/NEWS:5547 -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." - -#: ../../../Misc/NEWS:5550 -msgid "" -"`bpo-25111 `__: Fixed comparison of " -"traceback.FrameSummary." -msgstr "" -"`bpo-25111 `__: Fixed comparison of " -"traceback.FrameSummary." - -#: ../../../Misc/NEWS:5552 -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." - -#: ../../../Misc/NEWS:5556 -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." - -#: ../../../Misc/NEWS:5559 -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." - -#: ../../../Misc/NEWS:5568 -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." - -#: ../../../Misc/NEWS:5571 -msgid "Prevent overflow in _Unpickler_Read." -msgstr "" - -#: ../../../Misc/NEWS:5573 -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." - -#: ../../../Misc/NEWS:5577 -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." - -#: ../../../Misc/NEWS:5580 -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." - -#: ../../../Misc/NEWS:5583 -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." - -#: ../../../Misc/NEWS:5586 -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." - -#: ../../../Misc/NEWS:5594 -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." - -#: ../../../Misc/NEWS:5598 -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." - -#: ../../../Misc/NEWS:5601 -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." - -#: ../../../Misc/NEWS:5603 -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." - -#: ../../../Misc/NEWS:5609 -msgid "" -"`bpo-25060 `__: Correctly compute stack " -"usage of the BUILD_MAP opcode." -msgstr "" -"`bpo-25060 `__: Correctly compute stack " -"usage of the BUILD_MAP opcode." - -#: ../../../Misc/NEWS:5611 -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." - -#: ../../../Misc/NEWS:5614 -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." - -#: ../../../Misc/NEWS:5617 -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." - -#: ../../../Misc/NEWS:5620 -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." - -#: ../../../Misc/NEWS:5623 -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." - -#: ../../../Misc/NEWS:5626 -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." - -#: ../../../Misc/NEWS:5632 -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." - -#: ../../../Misc/NEWS:5635 -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." - -#: ../../../Misc/NEWS:5651 -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." - -#: ../../../Misc/NEWS:5654 -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." - -#: ../../../Misc/NEWS:5658 ../../../Misc/NEWS:5924 -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." - -#: ../../../Misc/NEWS:5661 -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." - -#: ../../../Misc/NEWS:5663 -msgid "" -"`bpo-21159 `__: Improve message in " -"configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." -msgstr "" -"`bpo-21159 `__: Improve message in " -"configparser.InterpolationMissingOptionError. Patch from Łukasz Langa." - -#: ../../../Misc/NEWS:5666 -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." - -#: ../../../Misc/NEWS:5669 -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." - -#: ../../../Misc/NEWS:5672 -msgid "asyncio: ensure_future() now accepts awaitable objects." -msgstr "" - -#: ../../../Misc/NEWS:5761 -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." - -#: ../../../Misc/NEWS:5777 -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." - -#: ../../../Misc/NEWS:5787 -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." - -#: ../../../Misc/NEWS:5790 -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." - -#: ../../../Misc/NEWS:5793 -msgid "" -"`bpo-22812 `__: Fix unittest discovery " -"examples. Patch from Pam McA'Nulty." -msgstr "" -"`bpo-22812 `__: Fix unittest discovery " -"examples. Patch from Pam McA'Nulty." - -#: ../../../Misc/NEWS:5801 -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)." - -#: ../../../Misc/NEWS:5804 -msgid "" -"`bpo-23919 `__: Prevents assert dialogs " -"appearing in the test suite." -msgstr "" -"`bpo-23919 `__: Prevents assert dialogs " -"appearing in the test suite." - -#: ../../../Misc/NEWS:5812 -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." - -#: ../../../Misc/NEWS:5815 -msgid "" -"`bpo-24910 `__: Windows MSIs now have " -"unique display names." -msgstr "" -"`bpo-24910 `__: Windows MSIs now have " -"unique display names." - -#: ../../../Misc/NEWS:5823 -msgid "" -"`bpo-25450 `__: Updates shortcuts to " -"start Python in installation directory." -msgstr "" -"`bpo-25450 `__: Updates shortcuts to " -"start Python in installation directory." - -#: ../../../Misc/NEWS:5825 -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." - -#: ../../../Misc/NEWS:5828 -msgid "" -"`bpo-25143 `__: Improves installer error " -"messages for unsupported platforms." -msgstr "" -"`bpo-25143 `__: Improves installer error " -"messages for unsupported platforms." - -#: ../../../Misc/NEWS:5830 -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." - -#: ../../../Misc/NEWS:5833 -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" - -#: ../../../Misc/NEWS:5835 -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." - -#: ../../../Misc/NEWS:5838 -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" - -#: ../../../Misc/NEWS:5841 -msgid "" -"`bpo-25112 `__: py.exe launcher is " -"missing icons" -msgstr "" -"`bpo-25112 `__: py.exe launcher is " -"missing icons" - -#: ../../../Misc/NEWS:5843 -msgid "" -"`bpo-25102 `__: Windows installer does " -"not precompile for -O or -OO." -msgstr "" -"`bpo-25102 `__: Windows installer does " -"not precompile for -O or -OO." - -#: ../../../Misc/NEWS:5845 -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." - -#: ../../../Misc/NEWS:5848 -msgid "" -"`bpo-25091 `__: Increases font size of " -"the installer." -msgstr "" -"`bpo-25091 `__: Increases font size of " -"the installer." - -#: ../../../Misc/NEWS:5850 -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." - -#: ../../../Misc/NEWS:5853 -msgid "" -"`bpo-25213 `__: Restores " -"requestedExecutionLevel to manifest to disable UAC virtualization." -msgstr "" -"`bpo-25213 `__: Restores " -"requestedExecutionLevel to manifest to disable UAC virtualization." - -#: ../../../Misc/NEWS:5865 -msgid "Python 3.5.0 final" -msgstr "Python 3.5.0 final" - -#: ../../../Misc/NEWS:5867 -msgid "Release date: 2015-09-13" -msgstr "Date de sortie : 2015-09-13" - -#: ../../../Misc/NEWS:5872 -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." - -#: ../../../Misc/NEWS:5877 -msgid "Python 3.5.0 release candidate 4" -msgstr "Python 3.5.0 release candidate 4" - -#: ../../../Misc/NEWS:5879 -msgid "Release date: 2015-09-09" -msgstr "Date de sortie : 2015-09-09" - -#: ../../../Misc/NEWS:5884 -msgid "" -"`bpo-25029 `__: Fixes MemoryError in " -"test_strptime." -msgstr "" -"`bpo-25029 `__: Fixes MemoryError in " -"test_strptime." - -#: ../../../Misc/NEWS:5889 -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." - -#: ../../../Misc/NEWS:5894 -msgid "Python 3.5.0 release candidate 3" -msgstr "Python 3.5.0 release candidate 3" - -#: ../../../Misc/NEWS:5896 -msgid "Release date: 2015-09-07" -msgstr "Date de sortie : 2015-09-07" - -#: ../../../Misc/NEWS:5901 -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." - -#: ../../../Misc/NEWS:5904 -msgid "" -"`bpo-24912 `__: Prevent __class__ " -"assignment to immutable built-in objects." -msgstr "" -"`bpo-24912 `__: Prevent __class__ " -"assignment to immutable built-in objects." - -#: ../../../Misc/NEWS:5906 -msgid "" -"`bpo-24975 `__: Fix AST compilation for " -"PEP 448 syntax." -msgstr "" -"`bpo-24975 `__: Fix AST compilation for " -"PEP 448 syntax." - -#: ../../../Misc/NEWS:5911 -msgid "" -"`bpo-24917 `__: time_strftime() buffer " -"over-read." -msgstr "" -"`bpo-24917 `__: time_strftime() buffer " -"over-read." - -#: ../../../Misc/NEWS:5913 -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." - -#: ../../../Misc/NEWS:5918 -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." - -#: ../../../Misc/NEWS:5921 -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." - -#: ../../../Misc/NEWS:5929 -msgid "Python 3.5.0 release candidate 2" -msgstr "Python 3.5.0 release candidate 2" - -#: ../../../Misc/NEWS:5931 -msgid "Release date: 2015-08-25" -msgstr "Date de sortie : 2015-08-25" - -#: ../../../Misc/NEWS:5936 -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." - -#: ../../../Misc/NEWS:5939 -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." - -#: ../../../Misc/NEWS:5942 -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." - -#: ../../../Misc/NEWS:5949 -msgid "" -"`bpo-24847 `__: Removes vcruntime140.dll " -"dependency from Tcl/Tk." -msgstr "" -"`bpo-24847 `__: Removes vcruntime140.dll " -"dependency from Tcl/Tk." - -#: ../../../Misc/NEWS:5951 -msgid "" -"`bpo-24839 `__: platform._syscmd_ver " -"raises DeprecationWarning" -msgstr "" -"`bpo-24839 `__: platform._syscmd_ver " -"raises DeprecationWarning" - -#: ../../../Misc/NEWS:5953 -msgid "" -"`bpo-24867 `__: Fix Task.get_stack() for " -"'async def' coroutines" -msgstr "" -"`bpo-24867 `__: Fix Task.get_stack() for " -"'async def' coroutines" - -#: ../../../Misc/NEWS:5957 -msgid "Python 3.5.0 release candidate 1" -msgstr "Python 3.5.0 release candidate 1" - -#: ../../../Misc/NEWS:5959 -msgid "Release date: 2015-08-09" -msgstr "Date de sortie : 2015-08-09" - -#: ../../../Misc/NEWS:5964 -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." - -#: ../../../Misc/NEWS:5969 -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." - -#: ../../../Misc/NEWS:5972 -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" - -#: ../../../Misc/NEWS:5974 -msgid "" -"`bpo-24798 `__: _msvccompiler.py doesn't " -"properly support manifests" -msgstr "" -"`bpo-24798 `__: _msvccompiler.py doesn't " -"properly support manifests" - -#: ../../../Misc/NEWS:5976 -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." - -#: ../../../Misc/NEWS:5979 -msgid "" -"`bpo-23973 `__: Update typing.py from " -"GitHub repo." -msgstr "" -"`bpo-23973 `__: Update typing.py from " -"GitHub repo." - -#: ../../../Misc/NEWS:5981 -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." - -#: ../../../Misc/NEWS:5984 -msgid "" -"`bpo-23888 `__: Handle fractional time " -"in cookie expiry. Patch by ssh." -msgstr "" -"`bpo-23888 `__: Handle fractional time " -"in cookie expiry. Patch by ssh." - -#: ../../../Misc/NEWS:5986 -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." - -#: ../../../Misc/NEWS:5990 -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." - -#: ../../../Misc/NEWS:5993 -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." - -#: ../../../Misc/NEWS:5996 -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." - -#: ../../../Misc/NEWS:5999 -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." - -#: ../../../Misc/NEWS:6002 -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." - -#: ../../../Misc/NEWS:6004 -msgid "" -"`bpo-17527 `__: Add PATCH to wsgiref." -"validator. Patch from Luca Sbardella." -msgstr "" -"`bpo-17527 `__: Add PATCH to wsgiref." -"validator. Patch from Luca Sbardella." - -#: ../../../Misc/NEWS:6006 -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)'." - -#: ../../../Misc/NEWS:6011 -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." - -#: ../../../Misc/NEWS:6014 -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." - -#: ../../../Misc/NEWS:6019 -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." - -#: ../../../Misc/NEWS:6022 -msgid "" -"`bpo-13884 `__: Idle menus. Remove " -"tearoff lines. Patch by Roger Serwy." -msgstr "" -"`bpo-13884 `__: Idle menus. Remove " -"tearoff lines. Patch by Roger Serwy." - -#: ../../../Misc/NEWS:6027 -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." - -#: ../../../Misc/NEWS:6032 -msgid "" -"`bpo-20769 `__: Improve reload() docs. " -"Patch by Dorian Pula." -msgstr "" -"`bpo-20769 `__: Improve reload() docs. " -"Patch by Dorian Pula." - -#: ../../../Misc/NEWS:6034 -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." - -#: ../../../Misc/NEWS:6036 -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." - -#: ../../../Misc/NEWS:6042 -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." - -#: ../../../Misc/NEWS:6048 -msgid "Python 3.5.0 beta 4" -msgstr "Python 3.5.0 beta 4" - -#: ../../../Misc/NEWS:6050 -msgid "Release date: 2015-07-26" -msgstr "Date de sortie : 2015-07-26" - -#: ../../../Misc/NEWS:6055 -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." - -#: ../../../Misc/NEWS:6058 -msgid "" -"`bpo-24569 `__: Make PEP 448 dictionary " -"evaluation more consistent." -msgstr "" -"`bpo-24569 `__: Make PEP 448 dictionary " -"evaluation more consistent." - -#: ../../../Misc/NEWS:6060 -msgid "" -"`bpo-24583 `__: Fix crash when set is " -"mutated while being updated." -msgstr "" -"`bpo-24583 `__: Fix crash when set is " -"mutated while being updated." - -#: ../../../Misc/NEWS:6062 -msgid "" -"`bpo-24407 `__: Fix crash when dict is " -"mutated while being updated." -msgstr "" -"`bpo-24407 `__: Fix crash when dict is " -"mutated while being updated." - -#: ../../../Misc/NEWS:6064 -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." - -#: ../../../Misc/NEWS:6067 -msgid "" -"`bpo-24687 `__: Plug refleak on " -"SyntaxError in function parameters annotations." -msgstr "" -"`bpo-24687 `__: Plug refleak on " -"SyntaxError in function parameters annotations." - -#: ../../../Misc/NEWS:6070 -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." - -#: ../../../Misc/NEWS:6076 -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." - -#: ../../../Misc/NEWS:6079 -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." - -#: ../../../Misc/NEWS:6082 -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." - -#: ../../../Misc/NEWS:6085 -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)." - -#: ../../../Misc/NEWS:6088 -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." - -#: ../../../Misc/NEWS:6092 -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." - -#: ../../../Misc/NEWS:6094 -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." - -#: ../../../Misc/NEWS:6097 -msgid "" -"`bpo-22153 `__: Improve unittest docs. " -"Patch from Martin Panter and evilzero." -msgstr "" -"`bpo-22153 `__: Improve unittest docs. " -"Patch from Martin Panter and evilzero." - -#: ../../../Misc/NEWS:6099 -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." - -#: ../../../Misc/NEWS:6102 -msgid "" -"`bpo-24206 `__: Fixed __eq__ and __ne__ " -"methods of inspect classes." -msgstr "" -"`bpo-24206 `__: Fixed __eq__ and __ne__ " -"methods of inspect classes." - -#: ../../../Misc/NEWS:6104 -msgid "" -"`bpo-24631 `__: Fixed regression in the " -"timeit module with multiline setup." -msgstr "" -"`bpo-24631 `__: Fixed regression in the " -"timeit module with multiline setup." - -#: ../../../Misc/NEWS:6112 -msgid "" -"`bpo-24608 `__: chunk.Chunk.read() now " -"always returns bytes, not str." -msgstr "" -"`bpo-24608 `__: chunk.Chunk.read() now " -"always returns bytes, not str." - -#: ../../../Misc/NEWS:6114 -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." - -#: ../../../Misc/NEWS:6116 -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." - -#: ../../../Misc/NEWS:6119 -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." - -#: ../../../Misc/NEWS:6122 -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." - -#: ../../../Misc/NEWS:6125 -msgid "" -"`bpo-24688 `__: ast.get_docstring() for " -"'async def' functions." -msgstr "" -"`bpo-24688 `__: ast.get_docstring() for " -"'async def' functions." - -#: ../../../Misc/NEWS:6130 -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." - -#: ../../../Misc/NEWS:6135 -msgid "Python 3.5.0 beta 3" -msgstr "Python 3.5.0 beta 3" - -#: ../../../Misc/NEWS:6137 -msgid "Release date: 2015-07-05" -msgstr "Date de sortie : 2015-07-05" - -#: ../../../Misc/NEWS:6142 -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." - -#: ../../../Misc/NEWS:6146 -msgid "Upgrade to Unicode 8.0.0." -msgstr "Upgrade to Unicode 8.0.0." - -#: ../../../Misc/NEWS:6148 -msgid "" -"`bpo-24345 `__: Add Py_tp_finalize slot " -"for the stable ABI." -msgstr "" -"`bpo-24345 `__: Add Py_tp_finalize slot " -"for the stable ABI." - -#: ../../../Misc/NEWS:6150 -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." - -#: ../../../Misc/NEWS:6161 -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." - -#: ../../../Misc/NEWS:6164 -msgid "" -"`bpo-19235 `__: Add new RecursionError " -"exception. Patch by Georg Brandl." -msgstr "" -"`bpo-19235 `__: Add new RecursionError " -"exception. Patch by Georg Brandl." - -#: ../../../Misc/NEWS:6169 -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." - -#: ../../../Misc/NEWS:6172 -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." - -#: ../../../Misc/NEWS:6174 -msgid "" -"`bpo-24514 `__: tarfile now tolerates " -"number fields consisting of only whitespace." -msgstr "" -"`bpo-24514 `__: tarfile now tolerates " -"number fields consisting of only whitespace." - -#: ../../../Misc/NEWS:6177 -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." - -#: ../../../Misc/NEWS:6183 -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." - -#: ../../../Misc/NEWS:6186 -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." - -#: ../../../Misc/NEWS:6189 -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." - -#: ../../../Misc/NEWS:6192 -msgid "" -"`bpo-24522 `__: Fix possible integer " -"overflow in json accelerator module." -msgstr "" -"`bpo-24522 `__: Fix possible integer " -"overflow in json accelerator module." - -#: ../../../Misc/NEWS:6194 -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()." - -#: ../../../Misc/NEWS:6196 -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." - -#: ../../../Misc/NEWS:6199 -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." - -#: ../../../Misc/NEWS:6202 -msgid "" -"`bpo-24347 `__: Set KeyError if " -"PyDict_GetItemWithError returns NULL." -msgstr "" -"`bpo-24347 `__: Set KeyError if " -"PyDict_GetItemWithError returns NULL." - -#: ../../../Misc/NEWS:6204 -msgid "" -"`bpo-24348 `__: Drop superfluous incref/" -"decref." -msgstr "" -"`bpo-24348 `__: Drop superfluous incref/" -"decref." - -#: ../../../Misc/NEWS:6206 -msgid "" -"`bpo-24359 `__: Check for changed " -"OrderedDict size during iteration." -msgstr "" -"`bpo-24359 `__: Check for changed " -"OrderedDict size during iteration." - -#: ../../../Misc/NEWS:6208 -msgid "" -"`bpo-24368 `__: Support keyword " -"arguments in OrderedDict methods." -msgstr "" -"`bpo-24368 `__: Support keyword " -"arguments in OrderedDict methods." - -#: ../../../Misc/NEWS:6210 -msgid "" -"`bpo-24362 `__: Simplify the C " -"OrderedDict fast nodes resize logic." -msgstr "" -"`bpo-24362 `__: Simplify the C " -"OrderedDict fast nodes resize logic." - -#: ../../../Misc/NEWS:6212 -msgid "" -"`bpo-24377 `__: Fix a ref leak in " -"OrderedDict.__repr__." -msgstr "" -"`bpo-24377 `__: Fix a ref leak in " -"OrderedDict.__repr__." - -#: ../../../Misc/NEWS:6214 -msgid "" -"`bpo-24369 `__: Defend against key-" -"changes during iteration." -msgstr "" -"`bpo-24369 `__: Defend against key-" -"changes during iteration." - -#: ../../../Misc/NEWS:6219 -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)" - -#: ../../../Misc/NEWS:6226 -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." - -#: ../../../Misc/NEWS:6229 -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." - -#: ../../../Misc/NEWS:6235 -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." - -#: ../../../Misc/NEWS:6240 -msgid "Python 3.5.0 beta 2" -msgstr "Python 3.5.0 beta 2" - -#: ../../../Misc/NEWS:6242 -msgid "Release date: 2015-05-31" -msgstr "Date de sortie : 2015-05-31" - -#: ../../../Misc/NEWS:6247 -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." - -#: ../../../Misc/NEWS:6251 -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." - -#: ../../../Misc/NEWS:6255 -msgid "" -"`bpo-24328 `__: Fix importing one " -"character extension modules." -msgstr "" -"`bpo-24328 `__: Fix importing one " -"character extension modules." - -#: ../../../Misc/NEWS:6257 -msgid "" -"`bpo-11205 `__: In dictionary displays, " -"evaluate the key before the value." -msgstr "" -"`bpo-11205 `__: In dictionary displays, " -"evaluate the key before the value." - -#: ../../../Misc/NEWS:6259 -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." - -#: ../../../Misc/NEWS:6265 -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." - -#: ../../../Misc/NEWS:6267 -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." - -#: ../../../Misc/NEWS:6270 -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." - -#: ../../../Misc/NEWS:6272 -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." - -#: ../../../Misc/NEWS:6275 -msgid "" -"`bpo-16991 `__: Add a C implementation " -"of OrderedDict." -msgstr "" -"`bpo-16991 `__: Add a C implementation " -"of OrderedDict." - -#: ../../../Misc/NEWS:6277 -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." - -#: ../../../Misc/NEWS:6282 -msgid "Python 3.5.0 beta 1" -msgstr "Python 3.5.0 beta 1" - -#: ../../../Misc/NEWS:6284 -msgid "Release date: 2015-05-24" -msgstr "Date de sortie : 2015-05-24" - -#: ../../../Misc/NEWS:6289 -msgid "" -"`bpo-24276 `__: Fixed optimization of " -"property descriptor getter." -msgstr "" -"`bpo-24276 `__: Fixed optimization of " -"property descriptor getter." - -#: ../../../Misc/NEWS:6291 -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." - -#: ../../../Misc/NEWS:6294 -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." - -#: ../../../Misc/NEWS:6297 -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." - -#: ../../../Misc/NEWS:6300 -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." - -#: ../../../Misc/NEWS:6303 -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." - -#: ../../../Misc/NEWS:6306 -msgid "" -"`bpo-24102 `__: Fixed exception type " -"checking in standard error handlers." -msgstr "" -"`bpo-24102 `__: Fixed exception type " -"checking in standard error handlers." - -#: ../../../Misc/NEWS:6308 -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." - -#: ../../../Misc/NEWS:6310 -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.)" - -#: ../../../Misc/NEWS:6313 -msgid "" -"`bpo-2292 `__: PEP 448: Additional " -"Unpacking Generalizations." -msgstr "" -"`bpo-2292 `__: PEP 448: Additional " -"Unpacking Generalizations." - -#: ../../../Misc/NEWS:6315 -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." - -#: ../../../Misc/NEWS:6318 -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." - -#: ../../../Misc/NEWS:6321 -msgid "" -"`bpo-23910 `__: Optimize property() " -"getter calls. Patch by Joe Jevnik." -msgstr "" -"`bpo-23910 `__: Optimize property() " -"getter calls. Patch by Joe Jevnik." - -#: ../../../Misc/NEWS:6323 -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." - -#: ../../../Misc/NEWS:6326 -msgid "" -"`bpo-24192 `__: Fix namespace package " -"imports." -msgstr "" -"`bpo-24192 `__: Fix namespace package " -"imports." - -#: ../../../Misc/NEWS:6328 -msgid "" -"`bpo-24022 `__: Fix tokenizer crash when " -"processing undecodable source code." -msgstr "" -"`bpo-24022 `__: Fix tokenizer crash when " -"processing undecodable source code." - -#: ../../../Misc/NEWS:6330 -msgid "" -"`bpo-9951 `__: Added a hex() method to " -"bytes, bytearray, and memoryview." -msgstr "" -"`bpo-9951 `__: Added a hex() method to " -"bytes, bytearray, and memoryview." - -#: ../../../Misc/NEWS:6332 -msgid "" -"`bpo-22906 `__: PEP 479: Change " -"StopIteration handling inside generators." -msgstr "" -"`bpo-22906 `__: PEP 479: Change " -"StopIteration handling inside generators." - -#: ../../../Misc/NEWS:6334 -msgid "" -"`bpo-24017 `__: PEP 492: Coroutines with " -"async and await syntax." -msgstr "" -"`bpo-24017 `__: PEP 492: Coroutines with " -"async and await syntax." - -#: ../../../Misc/NEWS:6339 -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." - -#: ../../../Misc/NEWS:6342 -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)." - -#: ../../../Misc/NEWS:6345 -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." - -#: ../../../Misc/NEWS:6349 -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." - -#: ../../../Misc/NEWS:6352 -msgid "" -"`bpo-23973 `__: PEP 484: Add the typing " -"module." -msgstr "" -"`bpo-23973 `__: PEP 484: Add the typing " -"module." - -#: ../../../Misc/NEWS:6354 -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." - -#: ../../../Misc/NEWS:6358 -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." - -#: ../../../Misc/NEWS:6362 -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." - -#: ../../../Misc/NEWS:6365 -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." - -#: ../../../Misc/NEWS:6369 -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." - -#: ../../../Misc/NEWS:6372 -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." - -#: ../../../Misc/NEWS:6376 -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." - -#: ../../../Misc/NEWS:6381 -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." - -#: ../../../Misc/NEWS:6383 -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." - -#: ../../../Misc/NEWS:6386 -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." - -#: ../../../Misc/NEWS:6389 -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." - -#: ../../../Misc/NEWS:6393 -msgid "" -"`bpo-13866 `__: *quote_via* argument " -"added to urllib.parse.urlencode." -msgstr "" -"`bpo-13866 `__: *quote_via* argument " -"added to urllib.parse.urlencode." - -#: ../../../Misc/NEWS:6395 -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." - -#: ../../../Misc/NEWS:6398 -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." - -#: ../../../Misc/NEWS:6401 -msgid "" -"`bpo-16314 `__: Added support for the " -"LZMA compression in distutils." -msgstr "" -"`bpo-16314 `__: Added support for the " -"LZMA compression in distutils." - -#: ../../../Misc/NEWS:6403 -msgid "" -"`bpo-21804 `__: poplib now supports RFC " -"6856 (UTF8)." -msgstr "" -"`bpo-21804 `__: poplib now supports RFC " -"6856 (UTF8)." - -#: ../../../Misc/NEWS:6405 -msgid "" -"`bpo-18682 `__: Optimized pprint " -"functions for builtin scalar types." -msgstr "" -"`bpo-18682 `__: Optimized pprint " -"functions for builtin scalar types." - -#: ../../../Misc/NEWS:6407 -msgid "" -"`bpo-22027 `__: smtplib now supports RFC " -"6531 (SMTPUTF8)." -msgstr "" -"`bpo-22027 `__: smtplib now supports RFC " -"6531 (SMTPUTF8)." - -#: ../../../Misc/NEWS:6409 -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." - -#: ../../../Misc/NEWS:6411 -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." - -#: ../../../Misc/NEWS:6414 -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." - -#: ../../../Misc/NEWS:6417 -msgid "" -"`bpo-24064 `__: Property() docstrings " -"are now writeable. (Patch by Berker Peksag.)" -msgstr "" -"`bpo-24064 `__: Property() docstrings " -"are now writeable. (Patch by Berker Peksag.)" - -#: ../../../Misc/NEWS:6420 -msgid "" -"`bpo-22681 `__: Added support for the " -"koi8_t encoding." -msgstr "" -"`bpo-22681 `__: Added support for the " -"koi8_t encoding." - -#: ../../../Misc/NEWS:6422 -msgid "" -"`bpo-22682 `__: Added support for the " -"kz1048 encoding." -msgstr "" -"`bpo-22682 `__: Added support for the " -"kz1048 encoding." - -#: ../../../Misc/NEWS:6424 -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." - -#: ../../../Misc/NEWS:6427 -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." - -#: ../../../Misc/NEWS:6430 -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." - -#: ../../../Misc/NEWS:6433 -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." - -#: ../../../Misc/NEWS:6437 -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." - -#: ../../../Misc/NEWS:6440 -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." - -#: ../../../Misc/NEWS:6443 -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." - -#: ../../../Misc/NEWS:6447 -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." - -#: ../../../Misc/NEWS:6450 -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)." - -#: ../../../Misc/NEWS:6453 -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." - -#: ../../../Misc/NEWS:6456 -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." - -#: ../../../Misc/NEWS:6459 -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." - -#: ../../../Misc/NEWS:6462 -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)." - -#: ../../../Misc/NEWS:6465 -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." - -#: ../../../Misc/NEWS:6468 -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." - -#: ../../../Misc/NEWS:6470 -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 "" - -#: ../../../Misc/NEWS:6474 -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." - -#: ../../../Misc/NEWS:6477 -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." - -#: ../../../Misc/NEWS:6480 -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." - -#: ../../../Misc/NEWS:6483 -msgid "" -"asyncio: New event loop APIs: set_task_factory() and get_task_factory()." -msgstr "" - -#: ../../../Misc/NEWS:6485 -msgid "asyncio: async() function is deprecated in favour of ensure_future()." -msgstr "" - -#: ../../../Misc/NEWS:6487 -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." - -#: ../../../Misc/NEWS:6490 -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." - -#: ../../../Misc/NEWS:6493 -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." - -#: ../../../Misc/NEWS:6496 -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." - -#: ../../../Misc/NEWS:6499 -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." - -#: ../../../Misc/NEWS:6502 -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." - -#: ../../../Misc/NEWS:6506 -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()." - -#: ../../../Misc/NEWS:6509 -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." - -#: ../../../Misc/NEWS:6512 -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." - -#: ../../../Misc/NEWS:6518 -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." - -#: ../../../Misc/NEWS:6524 -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." - -#: ../../../Misc/NEWS:6527 -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." - -#: ../../../Misc/NEWS:6533 -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." - -#: ../../../Misc/NEWS:6536 -msgid "" -"`bpo-24029 `__: Document the name " -"binding behavior for submodule imports." -msgstr "" -"`bpo-24029 `__: Document the name " -"binding behavior for submodule imports." - -#: ../../../Misc/NEWS:6538 -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" - -#: ../../../Misc/NEWS:6543 -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." - -#: ../../../Misc/NEWS:6546 -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." - -#: ../../../Misc/NEWS:6549 -msgid "" -"`bpo-23330 `__: h2py now supports " -"arbitrary filenames in #include." -msgstr "" -"`bpo-23330 `__: h2py now supports " -"arbitrary filenames in #include." - -#: ../../../Misc/NEWS:6551 -msgid "" -"`bpo-24031 `__: make patchcheck now " -"supports git checkouts, too." -msgstr "" -"`bpo-24031 `__: make patchcheck now " -"supports git checkouts, too." - -#: ../../../Misc/NEWS:6555 -msgid "Python 3.5.0 alpha 4" -msgstr "Python 3.5.0 alpha 4" - -#: ../../../Misc/NEWS:6557 -msgid "Release date: 2015-04-19" -msgstr "Date de sortie : 2015-04-19" - -#: ../../../Misc/NEWS:6562 -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." - -#: ../../../Misc/NEWS:6567 -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." - -#: ../../../Misc/NEWS:6570 -msgid "" -"`bpo-23731 `__: Implement PEP 488: " -"removal of .pyo files." -msgstr "" -"`bpo-23731 `__: Implement PEP 488: " -"removal of .pyo files." - -#: ../../../Misc/NEWS:6572 -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." - -#: ../../../Misc/NEWS:6575 -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." - -#: ../../../Misc/NEWS:6580 -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." - -#: ../../../Misc/NEWS:6583 -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." - -#: ../../../Misc/NEWS:6586 -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." - -#: ../../../Misc/NEWS:6589 -msgid "" -"`bpo-21354 `__: PyCFunction_New function " -"is exposed by python DLL again." -msgstr "" -"`bpo-21354 `__: PyCFunction_New function " -"is exposed by python DLL again." - -#: ../../../Misc/NEWS:6594 -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." - -#: ../../../Misc/NEWS:6597 -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." - -#: ../../../Misc/NEWS:6599 -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." - -#: ../../../Misc/NEWS:6603 -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." - -#: ../../../Misc/NEWS:6606 -msgid "" -"`bpo-4254 `__: Adds _curses." -"update_lines_cols(). Patch by Arnon Yaari" -msgstr "" -"`bpo-4254 `__: Adds _curses." -"update_lines_cols(). Patch by Arnon Yaari" - -#: ../../../Misc/NEWS:6608 -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." - -#: ../../../Misc/NEWS:6611 -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." - -#: ../../../Misc/NEWS:6615 -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." - -#: ../../../Misc/NEWS:6618 -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." - -#: ../../../Misc/NEWS:6622 -msgid "" -"`bpo-24521 `__: Fix possible integer " -"overflows in the pickle module." -msgstr "" -"`bpo-24521 `__: Fix possible integer " -"overflows in the pickle module." - -#: ../../../Misc/NEWS:6624 -msgid "" -"`bpo-22931 `__: Allow '[' and ']' in " -"cookie values." -msgstr "" -"`bpo-22931 `__: Allow '[' and ']' in " -"cookie values." - -#: ../../../Misc/NEWS:6626 -msgid "The keywords attribute of functools.partial is now always a dictionary." -msgstr "" - -#: ../../../Misc/NEWS:6628 -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." - -#: ../../../Misc/NEWS:6631 -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." - -#: ../../../Misc/NEWS:6634 -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." - -#: ../../../Misc/NEWS:6637 -msgid "" -"`bpo-23464 `__: Removed deprecated " -"asyncio JoinableQueue." -msgstr "" -"`bpo-23464 `__: Removed deprecated " -"asyncio JoinableQueue." - -#: ../../../Misc/NEWS:6639 -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." - -#: ../../../Misc/NEWS:6644 -msgid "" -"`bpo-21859 `__: Added Python " -"implementation of io.FileIO." -msgstr "" -"`bpo-21859 `__: Added Python " -"implementation of io.FileIO." - -#: ../../../Misc/NEWS:6646 -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." - -#: ../../../Misc/NEWS:6650 -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." - -#: ../../../Misc/NEWS:6653 -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 *``." - -#: ../../../Misc/NEWS:6657 -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." - -#: ../../../Misc/NEWS:6661 -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." - -#: ../../../Misc/NEWS:6664 -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." - -#: ../../../Misc/NEWS:6668 -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." - -#: ../../../Misc/NEWS:6672 -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." - -#: ../../../Misc/NEWS:6676 -msgid "" -"`bpo-10590 `__: xml.sax.parseString() " -"now supports string argument." -msgstr "" -"`bpo-10590 `__: xml.sax.parseString() " -"now supports string argument." - -#: ../../../Misc/NEWS:6678 -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." - -#: ../../../Misc/NEWS:6681 -msgid "" -"`bpo-15582 `__: inspect.getdoc() now " -"follows inheritance chains." -msgstr "" -"`bpo-15582 `__: inspect.getdoc() now " -"follows inheritance chains." - -#: ../../../Misc/NEWS:6683 -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." - -#: ../../../Misc/NEWS:6685 -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." - -#: ../../../Misc/NEWS:6688 -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." - -#: ../../../Misc/NEWS:6691 -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." - -#: ../../../Misc/NEWS:6697 -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." - -#: ../../../Misc/NEWS:6699 -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." - -#: ../../../Misc/NEWS:6702 -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." - -#: ../../../Misc/NEWS:6705 -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." - -#: ../../../Misc/NEWS:6708 -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." - -#: ../../../Misc/NEWS:6711 -msgid "" -"`bpo-13583 `__: sqlite3.Row now supports " -"slice indexing." -msgstr "" -"`bpo-13583 `__: sqlite3.Row now supports " -"slice indexing." - -#: ../../../Misc/NEWS:6713 -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." - -#: ../../../Misc/NEWS:6717 -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." - -#: ../../../Misc/NEWS:6721 -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." - -#: ../../../Misc/NEWS:6725 -msgid "" -"`bpo-23704 `__: collections.deque() " -"objects now support __add__, __mul__, and __imul__()." -msgstr "" -"`bpo-23704 `__: collections.deque() " -"objects now support __add__, __mul__, and __imul__()." - -#: ../../../Misc/NEWS:6728 -msgid "" -"`bpo-23171 `__: csv.Writer.writerow() " -"now supports arbitrary iterables." -msgstr "" -"`bpo-23171 `__: csv.Writer.writerow() " -"now supports arbitrary iterables." - -#: ../../../Misc/NEWS:6730 -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." - -#: ../../../Misc/NEWS:6733 -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." - -#: ../../../Misc/NEWS:6736 -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." - -#: ../../../Misc/NEWS:6742 -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\"." - -#: ../../../Misc/NEWS:6745 -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." - -#: ../../../Misc/NEWS:6750 -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." - -#: ../../../Misc/NEWS:6753 -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." - -#: ../../../Misc/NEWS:6759 -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." - -#: ../../../Misc/NEWS:6762 -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." - -#: ../../../Misc/NEWS:6766 -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." - -#: ../../../Misc/NEWS:6768 -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." - -#: ../../../Misc/NEWS:6771 -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." - -#: ../../../Misc/NEWS:6774 -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." - -#: ../../../Misc/NEWS:6782 -msgid "" -"`bpo-23998 `__: PyImport_ReInitLock() " -"now checks for lock allocation error" -msgstr "" -"`bpo-23998 `__: PyImport_ReInitLock() " -"now checks for lock allocation error" - -#: ../../../Misc/NEWS:6786 -msgid "Python 3.5.0 alpha 3" -msgstr "Python 3.5.0 alpha 3" - -#: ../../../Misc/NEWS:6788 -msgid "Release date: 2015-03-28" -msgstr "Date de sortie : 2015-03-28" - -#: ../../../Misc/NEWS:6793 -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)." - -#: ../../../Misc/NEWS:6797 -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." - -#: ../../../Misc/NEWS:6800 -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." - -#: ../../../Misc/NEWS:6802 -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)." - -#: ../../../Misc/NEWS:6805 -msgid "" -"`bpo-23192 `__: Fixed generator " -"lambdas. Patch by Bruno Cauet." -msgstr "" -"`bpo-23192 `__: Fixed generator " -"lambdas. Patch by Bruno Cauet." - -#: ../../../Misc/NEWS:6807 -msgid "" -"`bpo-23629 `__: Fix the default " -"__sizeof__ implementation for variable-sized objects." -msgstr "" -"`bpo-23629 `__: Fix the default " -"__sizeof__ implementation for variable-sized objects." - -#: ../../../Misc/NEWS:6813 -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." - -#: ../../../Misc/NEWS:6816 -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." - -#: ../../../Misc/NEWS:6820 -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()." - -#: ../../../Misc/NEWS:6823 -msgid "" -"`bpo-23765 `__: Removed IsBadStringPtr " -"calls in ctypes" -msgstr "" -"`bpo-23765 `__: Removed IsBadStringPtr " -"calls in ctypes" - -#: ../../../Misc/NEWS:6825 -msgid "" -"`bpo-22364 `__: Improved some re error " -"messages using regex for hints." -msgstr "" -"`bpo-22364 `__: Improved some re error " -"messages using regex for hints." - -#: ../../../Misc/NEWS:6827 -msgid "" -"`bpo-23742 `__: ntpath.expandvars() no " -"longer loses unbalanced single quotes." -msgstr "" -"`bpo-23742 `__: ntpath.expandvars() no " -"longer loses unbalanced single quotes." - -#: ../../../Misc/NEWS:6829 -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." - -#: ../../../Misc/NEWS:6832 -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()." - -#: ../../../Misc/NEWS:6835 -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." - -#: ../../../Misc/NEWS:6839 -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." - -#: ../../../Misc/NEWS:6843 -msgid "" -"`bpo-23502 `__: The pprint module now " -"supports mapping proxies." -msgstr "" -"`bpo-23502 `__: The pprint module now " -"supports mapping proxies." - -#: ../../../Misc/NEWS:6845 -msgid "" -"`bpo-17530 `__: pprint now wraps long " -"bytes objects and bytearrays." -msgstr "" -"`bpo-17530 `__: pprint now wraps long " -"bytes objects and bytearrays." - -#: ../../../Misc/NEWS:6847 -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." - -#: ../../../Misc/NEWS:6850 -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." - -#: ../../../Misc/NEWS:6854 -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)." - -#: ../../../Misc/NEWS:6858 -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." - -#: ../../../Misc/NEWS:6861 -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." - -#: ../../../Misc/NEWS:6865 -msgid "" -"`bpo-23252 `__: Added support for " -"writing ZIP files to unseekable streams." -msgstr "" -"`bpo-23252 `__: Added support for " -"writing ZIP files to unseekable streams." - -#: ../../../Misc/NEWS:6867 -msgid "" -"`bpo-23647 `__: Increase impalib's " -"MAXLINE to accommodate modern mailbox sizes." -msgstr "" -"`bpo-23647 `__: Increase impalib's " -"MAXLINE to accommodate modern mailbox sizes." - -#: ../../../Misc/NEWS:6869 -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." - -#: ../../../Misc/NEWS:6873 -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." - -#: ../../../Misc/NEWS:6877 -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." - -#: ../../../Misc/NEWS:6881 -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." - -#: ../../../Misc/NEWS:6886 -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." - -#: ../../../Misc/NEWS:6890 -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)." - -#: ../../../Misc/NEWS:6894 -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." - -#: ../../../Misc/NEWS:6897 -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." - -#: ../../../Misc/NEWS:6900 -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." - -#: ../../../Misc/NEWS:6903 -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." - -#: ../../../Misc/NEWS:6908 -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." - -#: ../../../Misc/NEWS:6916 -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." - -#: ../../../Misc/NEWS:6919 -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." - -#: ../../../Misc/NEWS:6921 -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." - -#: ../../../Misc/NEWS:6924 -msgid "" -"`bpo-2052 `__: Add charset parameter to " -"HtmlDiff.make_file()." -msgstr "" -"`bpo-2052 `__: Add charset parameter to " -"HtmlDiff.make_file()." - -#: ../../../Misc/NEWS:6926 -msgid "" -"`bpo-23668 `__: Support os.truncate and " -"os.ftruncate on Windows." -msgstr "" -"`bpo-23668 `__: Support os.truncate and " -"os.ftruncate on Windows." - -#: ../../../Misc/NEWS:6928 -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." - -#: ../../../Misc/NEWS:6931 -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." - -#: ../../../Misc/NEWS:6935 -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." - -#: ../../../Misc/NEWS:6937 -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." - -#: ../../../Misc/NEWS:6941 -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." - -#: ../../../Misc/NEWS:6944 -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." - -#: ../../../Misc/NEWS:6947 -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." - -#: ../../../Misc/NEWS:6954 -msgid "" -"`bpo-23585 `__: make patchcheck will " -"ensure the interpreter is built." -msgstr "" -"`bpo-23585 `__: make patchcheck will " -"ensure the interpreter is built." - -#: ../../../Misc/NEWS:6959 -msgid "" -"`bpo-23583 `__: Added tests for standard " -"IO streams in IDLE." -msgstr "" -"`bpo-23583 `__: Added tests for standard " -"IO streams in IDLE." - -#: ../../../Misc/NEWS:6961 -msgid "" -"`bpo-22289 `__: Prevent test_urllib2net " -"failures due to ftp connection timeout." -msgstr "" -"`bpo-22289 `__: Prevent test_urllib2net " -"failures due to ftp connection timeout." - -#: ../../../Misc/NEWS:6966 -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)." - -#: ../../../Misc/NEWS:6972 -msgid "Python 3.5 alpha 2" -msgstr "Python 3.5 alpha 2" - -#: ../../../Misc/NEWS:6974 -msgid "Release date: 2015-03-09" -msgstr "Date de sortie : 2015-03-09" - -#: ../../../Misc/NEWS:6979 -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." - -#: ../../../Misc/NEWS:6986 -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." - -#: ../../../Misc/NEWS:6990 -msgid "" -"`bpo-23103 `__: Reduced the memory " -"consumption of IPv4Address and IPv6Address." -msgstr "" -"`bpo-23103 `__: Reduced the memory " -"consumption of IPv4Address and IPv6Address." - -#: ../../../Misc/NEWS:6992 -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." - -#: ../../../Misc/NEWS:6995 -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." - -#: ../../../Misc/NEWS:6998 -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." - -#: ../../../Misc/NEWS:7001 -msgid "" -"`bpo-23504 `__: Added an __all__ to the " -"types module." -msgstr "" -"`bpo-23504 `__: Added an __all__ to the " -"types module." - -#: ../../../Misc/NEWS:7003 -msgid "" -"`bpo-23563 `__: Optimized utility " -"functions in urllib.parse." -msgstr "" -"`bpo-23563 `__: Optimized utility " -"functions in urllib.parse." - -#: ../../../Misc/NEWS:7005 -msgid "" -"`bpo-7830 `__: Flatten nested functools." -"partial." -msgstr "" -"`bpo-7830 `__: Flatten nested functools." -"partial." - -#: ../../../Misc/NEWS:7007 -msgid "" -"`bpo-20204 `__: Added the __module__ " -"attribute to _tkinter classes." -msgstr "" -"`bpo-20204 `__: Added the __module__ " -"attribute to _tkinter classes." - -#: ../../../Misc/NEWS:7009 -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." - -#: ../../../Misc/NEWS:7013 -msgid "" -"`bpo-23521 `__: Corrected pure python " -"implementation of timedelta division." -msgstr "" -"`bpo-23521 `__: Corrected pure python " -"implementation of timedelta division." - -#: ../../../Misc/NEWS:7015 -msgid "Eliminated OverflowError from ``timedelta * float`` for some floats;" -msgstr "" - -#: ../../../Misc/NEWS:7016 -msgid "Corrected rounding in timedlta true division." -msgstr "" - -#: ../../../Misc/NEWS:7018 -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." - -#: ../../../Misc/NEWS:7021 -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." - -#: ../../../Misc/NEWS:7024 -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." - -#: ../../../Misc/NEWS:7027 -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." - -#: ../../../Misc/NEWS:7030 -msgid "" -"Issues #814253, #9179: Group references and conditional group references now " -"work in lookbehind assertions in regular expressions." -msgstr "" - -#: ../../../Misc/NEWS:7033 -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." - -#: ../../../Misc/NEWS:7037 -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." - -#: ../../../Misc/NEWS:7040 -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)." - -#: ../../../Misc/NEWS:7043 -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." - -#: ../../../Misc/NEWS:7045 -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." - -#: ../../../Misc/NEWS:7048 -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." - -#: ../../../Misc/NEWS:7051 -msgid "" -"`bpo-23239 `__: ssl.match_hostname() now " -"supports matching of IP addresses." -msgstr "" -"`bpo-23239 `__: ssl.match_hostname() now " -"supports matching of IP addresses." - -#: ../../../Misc/NEWS:7053 -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." - -#: ../../../Misc/NEWS:7056 -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." - -#: ../../../Misc/NEWS:7059 -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." - -#: ../../../Misc/NEWS:7061 -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." - -#: ../../../Misc/NEWS:7064 -msgid "" -"`bpo-21717 `__: tarfile.open() now " -"supports 'x' (exclusive creation) mode." -msgstr "" -"`bpo-21717 `__: tarfile.open() now " -"supports 'x' (exclusive creation) mode." - -#: ../../../Misc/NEWS:7066 -msgid "" -"`bpo-23344 `__: marshal.dumps() is now " -"20-25% faster on average." -msgstr "" -"`bpo-23344 `__: marshal.dumps() is now " -"20-25% faster on average." - -#: ../../../Misc/NEWS:7068 -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." - -#: ../../../Misc/NEWS:7071 -msgid "" -"`bpo-23421 `__: Fixed compression in " -"tarfile CLI. Patch by wdv4758h." -msgstr "" -"`bpo-23421 `__: Fixed compression in " -"tarfile CLI. Patch by wdv4758h." - -#: ../../../Misc/NEWS:7073 -msgid "" -"`bpo-23367 `__: Fix possible overflows " -"in the unicodedata module." -msgstr "" -"`bpo-23367 `__: Fix possible overflows " -"in the unicodedata module." - -#: ../../../Misc/NEWS:7075 -msgid "" -"`bpo-23361 `__: Fix possible overflow in " -"Windows subprocess creation code." -msgstr "" -"`bpo-23361 `__: Fix possible overflow in " -"Windows subprocess creation code." - -#: ../../../Misc/NEWS:7077 -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 "" - -#: ../../../Misc/NEWS:7081 -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." - -#: ../../../Misc/NEWS:7084 -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." - -#: ../../../Misc/NEWS:7090 -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." - -#: ../../../Misc/NEWS:7093 -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." - -#: ../../../Misc/NEWS:7098 -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." - -#: ../../../Misc/NEWS:7104 -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." - -#: ../../../Misc/NEWS:7107 -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." - -#: ../../../Misc/NEWS:7112 -msgid "Python 3.5 alpha 1" -msgstr "Python 3.5 alpha 1" - -#: ../../../Misc/NEWS:7114 -msgid "Release date: 2015-02-08" -msgstr "Date de sortie : 2015-02-08" - -#: ../../../Misc/NEWS:7119 -msgid "" -"`bpo-23285 `__: PEP 475 - EINTR handling." -msgstr "" -"`bpo-23285 `__: PEP 475 - EINTR handling." - -#: ../../../Misc/NEWS:7121 -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." - -#: ../../../Misc/NEWS:7124 -msgid "" -"`bpo-22896 `__: Avoid using " -"PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " -"PyObject_AsWriteBuffer()." -msgstr "" -"`bpo-22896 `__: Avoid using " -"PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and " -"PyObject_AsWriteBuffer()." - -#: ../../../Misc/NEWS:7127 -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." - -#: ../../../Misc/NEWS:7130 -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." - -#: ../../../Misc/NEWS:7133 -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." - -#: ../../../Misc/NEWS:7138 -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." - -#: ../../../Misc/NEWS:7141 -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." - -#: ../../../Misc/NEWS:7144 -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." - -#: ../../../Misc/NEWS:7147 -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." - -#: ../../../Misc/NEWS:7150 -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." - -#: ../../../Misc/NEWS:7154 -msgid "" -"`bpo-20284 `__: %-interpolation (aka " -"printf) formatting added for bytes and bytearray." -msgstr "" -"`bpo-20284 `__: %-interpolation (aka " -"printf) formatting added for bytes and bytearray." - -#: ../../../Misc/NEWS:7157 -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." - -#: ../../../Misc/NEWS:7159 -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." - -#: ../../../Misc/NEWS:7162 -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." - -#: ../../../Misc/NEWS:7165 -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" - -#: ../../../Misc/NEWS:7168 -msgid "" -"`bpo-22847 `__: Improve method cache " -"efficiency." -msgstr "" -"`bpo-22847 `__: Improve method cache " -"efficiency." - -#: ../../../Misc/NEWS:7170 -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." - -#: ../../../Misc/NEWS:7173 -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." - -#: ../../../Misc/NEWS:7176 -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)." - -#: ../../../Misc/NEWS:7179 -msgid "" -"`bpo-17636 `__: Circular imports " -"involving relative imports are now supported." -msgstr "" -"`bpo-17636 `__: Circular imports " -"involving relative imports are now supported." - -#: ../../../Misc/NEWS:7182 -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)." - -#: ../../../Misc/NEWS:7185 -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." - -#: ../../../Misc/NEWS:7188 -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." - -#: ../../../Misc/NEWS:7192 -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." - -#: ../../../Misc/NEWS:7195 -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`." - -#: ../../../Misc/NEWS:7198 -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." - -#: ../../../Misc/NEWS:7201 -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." - -#: ../../../Misc/NEWS:7204 -msgid "" -"`bpo-22519 `__: Fix overflow checking in " -"PyBytes_Repr." -msgstr "" -"`bpo-22519 `__: Fix overflow checking in " -"PyBytes_Repr." - -#: ../../../Misc/NEWS:7206 -msgid "" -"`bpo-22518 `__: Fix integer overflow " -"issues in latin-1 encoding." -msgstr "" -"`bpo-22518 `__: Fix integer overflow " -"issues in latin-1 encoding." - -#: ../../../Misc/NEWS:7208 -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." - -#: ../../../Misc/NEWS:7211 -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." - -#: ../../../Misc/NEWS:7214 -msgid "" -"`bpo-18554 `__: os.__all__ includes " -"posix functions." -msgstr "" -"`bpo-18554 `__: os.__all__ includes " -"posix functions." - -#: ../../../Misc/NEWS:7216 -msgid "" -"`bpo-21391 `__: Use os.path.abspath in " -"the shutil module." -msgstr "" -"`bpo-21391 `__: Use os.path.abspath in " -"the shutil module." - -#: ../../../Misc/NEWS:7218 -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." - -#: ../../../Misc/NEWS:7221 -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." - -#: ../../../Misc/NEWS:7224 -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``)." - -#: ../../../Misc/NEWS:7229 -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." - -#: ../../../Misc/NEWS:7232 -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." - -#: ../../../Misc/NEWS:7235 -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." - -#: ../../../Misc/NEWS:7238 -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." - -#: ../../../Misc/NEWS:7241 -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." - -#: ../../../Misc/NEWS:7245 -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." - -#: ../../../Misc/NEWS:7248 -msgid "" -"`bpo-22082 `__: Clear interned strings " -"in slotdefs." -msgstr "" -"`bpo-22082 `__: Clear interned strings " -"in slotdefs." - -#: ../../../Misc/NEWS:7250 -msgid "Upgrade Unicode database to Unicode 7.0.0." -msgstr "" - -#: ../../../Misc/NEWS:7252 -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." - -#: ../../../Misc/NEWS:7255 -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." - -#: ../../../Misc/NEWS:7261 -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." - -#: ../../../Misc/NEWS:7266 -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." - -#: ../../../Misc/NEWS:7270 -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." - -#: ../../../Misc/NEWS:7275 -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)." - -#: ../../../Misc/NEWS:7278 -msgid "" -"`bpo-21425 `__: Fix flushing of standard " -"streams in the interactive interpreter." -msgstr "" -"`bpo-21425 `__: Fix flushing of standard " -"streams in the interactive interpreter." - -#: ../../../Misc/NEWS:7281 -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." - -#: ../../../Misc/NEWS:7285 -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." - -#: ../../../Misc/NEWS:7288 -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." - -#: ../../../Misc/NEWS:7291 -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." - -#: ../../../Misc/NEWS:7293 -msgid "" -"`bpo-20904 `__: Support setting FPU " -"precision on m68k." -msgstr "" -"`bpo-20904 `__: Support setting FPU " -"precision on m68k." - -#: ../../../Misc/NEWS:7295 -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." - -#: ../../../Misc/NEWS:7298 -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." - -#: ../../../Misc/NEWS:7301 -msgid "" -"PEP 465 and `bpo-21176 `__: Add the '@' " -"operator for matrix multiplication." -msgstr "" -"PEP 465 and `bpo-21176 `__: Add the '@' " -"operator for matrix multiplication." - -#: ../../../Misc/NEWS:7303 -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." - -#: ../../../Misc/NEWS:7306 -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." - -#: ../../../Misc/NEWS:7309 -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." - -#: ../../../Misc/NEWS:7311 -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." - -#: ../../../Misc/NEWS:7314 -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." - -#: ../../../Misc/NEWS:7317 -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." - -#: ../../../Misc/NEWS:7320 -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." - -#: ../../../Misc/NEWS:7322 -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." - -#: ../../../Misc/NEWS:7327 -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." - -#: ../../../Misc/NEWS:7330 -msgid "" -"`bpo-20480 `__: Add ipaddress." -"reverse_pointer. Patch by Leon Weber." -msgstr "" -"`bpo-20480 `__: Add ipaddress." -"reverse_pointer. Patch by Leon Weber." - -#: ../../../Misc/NEWS:7332 -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." - -#: ../../../Misc/NEWS:7336 -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." - -#: ../../../Misc/NEWS:7340 -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." - -#: ../../../Misc/NEWS:7346 -msgid "" -"`bpo-23399 `__: pyvenv creates relative " -"symlinks where possible." -msgstr "" -"`bpo-23399 `__: pyvenv creates relative " -"symlinks where possible." - -#: ../../../Misc/NEWS:7348 -msgid "" -"`bpo-20289 `__: cgi.FieldStorage() now " -"supports the context management protocol." -msgstr "" -"`bpo-20289 `__: cgi.FieldStorage() now " -"supports the context management protocol." - -#: ../../../Misc/NEWS:7351 -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." - -#: ../../../Misc/NEWS:7354 -msgid "" -"`bpo-15381 `__: Optimized io.BytesIO to " -"make less allocations and copyings." -msgstr "" -"`bpo-15381 `__: Optimized io.BytesIO to " -"make less allocations and copyings." - -#: ../../../Misc/NEWS:7356 -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." - -#: ../../../Misc/NEWS:7360 -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." - -#: ../../../Misc/NEWS:7363 -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." - -#: ../../../Misc/NEWS:7366 -msgid "" -"`bpo-23363 `__: Fix possible overflow in " -"itertools.permutations." -msgstr "" -"`bpo-23363 `__: Fix possible overflow in " -"itertools.permutations." - -#: ../../../Misc/NEWS:7368 -msgid "" -"`bpo-23364 `__: Fix possible overflow in " -"itertools.product." -msgstr "" -"`bpo-23364 `__: Fix possible overflow in " -"itertools.product." - -#: ../../../Misc/NEWS:7370 -msgid "" -"`bpo-23366 `__: Fixed possible integer " -"overflow in itertools.combinations." -msgstr "" -"`bpo-23366 `__: Fixed possible integer " -"overflow in itertools.combinations." - -#: ../../../Misc/NEWS:7372 -msgid "" -"`bpo-23369 `__: Fixed possible integer " -"overflow in _json.encode_basestring_ascii." -msgstr "" -"`bpo-23369 `__: Fixed possible integer " -"overflow in _json.encode_basestring_ascii." - -#: ../../../Misc/NEWS:7375 -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." - -#: ../../../Misc/NEWS:7381 -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." - -#: ../../../Misc/NEWS:7384 -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." - -#: ../../../Misc/NEWS:7387 -msgid "" -"`bpo-19361 `__: JSON decoder now raises " -"JSONDecodeError instead of ValueError." -msgstr "" -"`bpo-19361 `__: JSON decoder now raises " -"JSONDecodeError instead of ValueError." - -#: ../../../Misc/NEWS:7389 -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\")." - -#: ../../../Misc/NEWS:7392 -msgid "" -"`bpo-23094 `__: Fixed readline with " -"frames in Python implementation of pickle." -msgstr "" -"`bpo-23094 `__: Fixed readline with " -"frames in Python implementation of pickle." - -#: ../../../Misc/NEWS:7394 -msgid "" -"`bpo-23268 `__: Fixed bugs in the " -"comparison of ipaddress classes." -msgstr "" -"`bpo-23268 `__: Fixed bugs in the " -"comparison of ipaddress classes." - -#: ../../../Misc/NEWS:7396 -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." - -#: ../../../Misc/NEWS:7400 -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." - -#: ../../../Misc/NEWS:7403 -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." - -#: ../../../Misc/NEWS:7406 -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." - -#: ../../../Misc/NEWS:7409 -msgid "" -"`bpo-23248 `__: Update ssl error codes " -"from latest OpenSSL git master." -msgstr "" -"`bpo-23248 `__: Update ssl error codes " -"from latest OpenSSL git master." - -#: ../../../Misc/NEWS:7411 -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." - -#: ../../../Misc/NEWS:7414 -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." - -#: ../../../Misc/NEWS:7416 -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." - -#: ../../../Misc/NEWS:7420 -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." - -#: ../../../Misc/NEWS:7423 -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." - -#: ../../../Misc/NEWS:7426 -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." - -#: ../../../Misc/NEWS:7429 -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." - -#: ../../../Misc/NEWS:7434 -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." - -#: ../../../Misc/NEWS:7437 -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." - -#: ../../../Misc/NEWS:7441 -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." - -#: ../../../Misc/NEWS:7444 -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." - -#: ../../../Misc/NEWS:7447 -msgid "" -"`bpo-23185 `__: Add math.inf and math." -"nan constants." -msgstr "" -"`bpo-23185 `__: Add math.inf and math." -"nan constants." - -#: ../../../Misc/NEWS:7449 -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." - -#: ../../../Misc/NEWS:7453 -msgid "" -"`bpo-23143 `__: Remove compatibility " -"with OpenSSLs older than 0.9.8." -msgstr "" -"`bpo-23143 `__: Remove compatibility " -"with OpenSSLs older than 0.9.8." - -#: ../../../Misc/NEWS:7455 -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." - -#: ../../../Misc/NEWS:7458 -msgid "" -"`bpo-19776 `__: Add an expanduser() " -"method on Path objects." -msgstr "" -"`bpo-19776 `__: Add an expanduser() " -"method on Path objects." - -#: ../../../Misc/NEWS:7460 -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." - -#: ../../../Misc/NEWS:7463 -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." - -#: ../../../Misc/NEWS:7466 -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." - -#: ../../../Misc/NEWS:7469 -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." - -#: ../../../Misc/NEWS:7472 -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." - -#: ../../../Misc/NEWS:7475 -msgid "" -"`bpo-19104 `__: pprint now produces " -"evaluable output for wrapped strings." -msgstr "" -"`bpo-19104 `__: pprint now produces " -"evaluable output for wrapped strings." - -#: ../../../Misc/NEWS:7477 -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." - -#: ../../../Misc/NEWS:7479 -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." - -#: ../../../Misc/NEWS:7482 -msgid "" -"`bpo-15513 `__: Added a __sizeof__ " -"implementation for pickle classes." -msgstr "" -"`bpo-15513 `__: Added a __sizeof__ " -"implementation for pickle classes." - -#: ../../../Misc/NEWS:7484 -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." - -#: ../../../Misc/NEWS:7488 -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." - -#: ../../../Misc/NEWS:7491 -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." - -#: ../../../Misc/NEWS:7494 -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." - -#: ../../../Misc/NEWS:7500 -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." - -#: ../../../Misc/NEWS:7503 -msgid "" -"`bpo-21740 `__: Support wrapped " -"callables in doctest. Patch by Claudiu Popa." -msgstr "" -"`bpo-21740 `__: Support wrapped " -"callables in doctest. Patch by Claudiu Popa." - -#: ../../../Misc/NEWS:7505 -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." - -#: ../../../Misc/NEWS:7508 -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." - -#: ../../../Misc/NEWS:7511 -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." - -#: ../../../Misc/NEWS:7514 -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." - -#: ../../../Misc/NEWS:7517 -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." - -#: ../../../Misc/NEWS:7522 -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." - -#: ../../../Misc/NEWS:7526 -msgid "" -"`bpo-21971 `__: Update turtledemo doc " -"and add module to the index." -msgstr "" -"`bpo-21971 `__: Update turtledemo doc " -"and add module to the index." - -#: ../../../Misc/NEWS:7528 -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." - -#: ../../../Misc/NEWS:7531 -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." - -#: ../../../Misc/NEWS:7534 -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." - -#: ../../../Misc/NEWS:7537 -msgid "" -"`bpo-22960 `__: Add a context argument " -"to xmlrpclib.ServerProxy constructor." -msgstr "" -"`bpo-22960 `__: Add a context argument " -"to xmlrpclib.ServerProxy constructor." - -#: ../../../Misc/NEWS:7539 -msgid "" -"`bpo-22389 `__: Add contextlib." -"redirect_stderr()." -msgstr "" -"`bpo-22389 `__: Add contextlib." -"redirect_stderr()." - -#: ../../../Misc/NEWS:7541 -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." - -#: ../../../Misc/NEWS:7545 -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." - -#: ../../../Misc/NEWS:7548 -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." - -#: ../../../Misc/NEWS:7551 -msgid "" -"`bpo-22940 `__: Add readline." -"append_history_file." -msgstr "" -"`bpo-22940 `__: Add readline." -"append_history_file." - -#: ../../../Misc/NEWS:7553 -msgid "" -"`bpo-19676 `__: Added the \"namereplace" -"\" error handler." -msgstr "" -"`bpo-19676 `__: Added the \"namereplace" -"\" error handler." - -#: ../../../Misc/NEWS:7555 -msgid "" -"`bpo-22788 `__: Add *context* parameter " -"to logging.handlers.HTTPHandler." -msgstr "" -"`bpo-22788 `__: Add *context* parameter " -"to logging.handlers.HTTPHandler." - -#: ../../../Misc/NEWS:7557 -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." - -#: ../../../Misc/NEWS:7560 -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." - -#: ../../../Misc/NEWS:7563 -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." - -#: ../../../Misc/NEWS:7566 -msgid "" -"`bpo-22370 `__: Windows detection in " -"pathlib is now more robust." -msgstr "" -"`bpo-22370 `__: Windows detection in " -"pathlib is now more robust." - -#: ../../../Misc/NEWS:7568 -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." - -#: ../../../Misc/NEWS:7571 -msgid "" -"`bpo-19494 `__: Added urllib.request." -"HTTPBasicPriorAuthHandler. Patch by Matej Cepl." -msgstr "" -"`bpo-19494 `__: Added urllib.request." -"HTTPBasicPriorAuthHandler. Patch by Matej Cepl." - -#: ../../../Misc/NEWS:7574 -msgid "" -"`bpo-22578 `__: Added attributes to the " -"re.error class." -msgstr "" -"`bpo-22578 `__: Added attributes to the " -"re.error class." - -#: ../../../Misc/NEWS:7576 -msgid "" -"`bpo-22849 `__: Fix possible double free " -"in the io.TextIOWrapper constructor." -msgstr "" -"`bpo-22849 `__: Fix possible double free " -"in the io.TextIOWrapper constructor." - -#: ../../../Misc/NEWS:7578 -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." - -#: ../../../Misc/NEWS:7581 -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." - -#: ../../../Misc/NEWS:7584 -msgid "" -"`bpo-21650 `__: Add an `--sort-keys` " -"option to json.tool CLI." -msgstr "" -"`bpo-21650 `__: Add an `--sort-keys` " -"option to json.tool CLI." - -#: ../../../Misc/NEWS:7586 -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." - -#: ../../../Misc/NEWS:7589 -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." - -#: ../../../Misc/NEWS:7592 -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." - -#: ../../../Misc/NEWS:7595 -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." - -#: ../../../Misc/NEWS:7598 -msgid "" -"`bpo-22769 `__: Fixed ttk.Treeview." -"tag_has() when called without arguments." -msgstr "" -"`bpo-22769 `__: Fixed ttk.Treeview." -"tag_has() when called without arguments." - -#: ../../../Misc/NEWS:7600 -msgid "" -"`bpo-22417 `__: Verify certificates by " -"default in httplib (PEP 476)." -msgstr "" -"`bpo-22417 `__: Verify certificates by " -"default in httplib (PEP 476)." - -#: ../../../Misc/NEWS:7602 -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." - -#: ../../../Misc/NEWS:7605 -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()." - -#: ../../../Misc/NEWS:7608 -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__." - -#: ../../../Misc/NEWS:7611 -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." - -#: ../../../Misc/NEWS:7614 -msgid "" -"`bpo-17381 `__: Fixed handling of case-" -"insensitive ranges in regular expressions." -msgstr "" -"`bpo-17381 `__: Fixed handling of case-" -"insensitive ranges in regular expressions." - -#: ../../../Misc/NEWS:7617 -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." - -#: ../../../Misc/NEWS:7620 -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." - -#: ../../../Misc/NEWS:7623 -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." - -#: ../../../Misc/NEWS:7627 -msgid "" -"`bpo-22217 `__: Implemented reprs of " -"classes in the zipfile module." -msgstr "" -"`bpo-22217 `__: Implemented reprs of " -"classes in the zipfile module." - -#: ../../../Misc/NEWS:7629 -msgid "" -"`bpo-22457 `__: Honour load_tests in the " -"start_dir of discovery." -msgstr "" -"`bpo-22457 `__: Honour load_tests in the " -"start_dir of discovery." - -#: ../../../Misc/NEWS:7631 -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." - -#: ../../../Misc/NEWS:7634 -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." - -#: ../../../Misc/NEWS:7638 -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." - -#: ../../../Misc/NEWS:7641 -msgid "" -"`bpo-18853 `__: Fixed ResourceWarning in " -"shlex.__nain__." -msgstr "" -"`bpo-18853 `__: Fixed ResourceWarning in " -"shlex.__nain__." - -#: ../../../Misc/NEWS:7643 -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." - -#: ../../../Misc/NEWS:7646 -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." - -#: ../../../Misc/NEWS:7650 -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." - -#: ../../../Misc/NEWS:7654 -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." - -#: ../../../Misc/NEWS:7658 -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." - -#: ../../../Misc/NEWS:7661 -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." - -#: ../../../Misc/NEWS:7664 -msgid "" -"`bpo-17401 `__: Include closefd in io." -"FileIO repr." -msgstr "" -"`bpo-17401 `__: Include closefd in io." -"FileIO repr." - -#: ../../../Misc/NEWS:7666 -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." - -#: ../../../Misc/NEWS:7670 -msgid "" -"`bpo-20152 `__: Convert the array and " -"cmath modules to Argument Clinic." -msgstr "" -"`bpo-20152 `__: Convert the array and " -"cmath modules to Argument Clinic." - -#: ../../../Misc/NEWS:7672 -msgid "" -"`bpo-18643 `__: Add socket.socketpair() " -"on Windows." -msgstr "" -"`bpo-18643 `__: Add socket.socketpair() " -"on Windows." - -#: ../../../Misc/NEWS:7674 -msgid "" -"`bpo-22435 `__: Fix a file descriptor " -"leak when socketserver bind fails." -msgstr "" -"`bpo-22435 `__: Fix a file descriptor " -"leak when socketserver bind fails." - -#: ../../../Misc/NEWS:7676 -msgid "" -"`bpo-13096 `__: Fixed segfault in CTypes " -"POINTER handling of large values." -msgstr "" -"`bpo-13096 `__: Fixed segfault in CTypes " -"POINTER handling of large values." - -#: ../../../Misc/NEWS:7679 -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." - -#: ../../../Misc/NEWS:7682 -msgid "" -"`bpo-19380 `__: Optimized parsing of " -"regular expressions." -msgstr "" -"`bpo-19380 `__: Optimized parsing of " -"regular expressions." - -#: ../../../Misc/NEWS:7684 -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()." - -#: ../../../Misc/NEWS:7687 -msgid "" -"`bpo-18615 `__: sndhdr.what/whathdr now " -"return a namedtuple." -msgstr "" -"`bpo-18615 `__: sndhdr.what/whathdr now " -"return a namedtuple." - -#: ../../../Misc/NEWS:7689 -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." - -#: ../../../Misc/NEWS:7692 -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." - -#: ../../../Misc/NEWS:7695 -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." - -#: ../../../Misc/NEWS:7698 -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." - -#: ../../../Misc/NEWS:7701 -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." - -#: ../../../Misc/NEWS:7704 -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." - -#: ../../../Misc/NEWS:7708 -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." - -#: ../../../Misc/NEWS:7711 -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." - -#: ../../../Misc/NEWS:7714 -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." - -#: ../../../Misc/NEWS:7717 -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." - -#: ../../../Misc/NEWS:7721 -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." - -#: ../../../Misc/NEWS:7723 -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." - -#: ../../../Misc/NEWS:7725 -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." - -#: ../../../Misc/NEWS:7728 -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." - -#: ../../../Misc/NEWS:7731 -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." - -#: ../../../Misc/NEWS:7734 -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." - -#: ../../../Misc/NEWS:7737 -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." - -#: ../../../Misc/NEWS:7740 -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*." - -#: ../../../Misc/NEWS:7743 -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." - -#: ../../../Misc/NEWS:7746 -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." - -#: ../../../Misc/NEWS:7749 -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." - -#: ../../../Misc/NEWS:7752 -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." - -#: ../../../Misc/NEWS:7755 -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." - -#: ../../../Misc/NEWS:7758 -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." - -#: ../../../Misc/NEWS:7761 -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." - -#: ../../../Misc/NEWS:7764 -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." - -#: ../../../Misc/NEWS:7767 -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." - -#: ../../../Misc/NEWS:7770 -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." - -#: ../../../Misc/NEWS:7773 -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." - -#: ../../../Misc/NEWS:7776 -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." - -#: ../../../Misc/NEWS:7779 -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." - -#: ../../../Misc/NEWS:7782 -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." - -#: ../../../Misc/NEWS:7785 -msgid "" -"`bpo-22247 `__: Add NNTPError to nntplib." -"__all__." -msgstr "" -"`bpo-22247 `__: Add NNTPError to nntplib." -"__all__." - -#: ../../../Misc/NEWS:7787 -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." - -#: ../../../Misc/NEWS:7791 -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." - -#: ../../../Misc/NEWS:7794 -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." - -#: ../../../Misc/NEWS:7798 -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 "" - -#: ../../../Misc/NEWS:7802 -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." - -#: ../../../Misc/NEWS:7805 -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." - -#: ../../../Misc/NEWS:7808 -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." - -#: ../../../Misc/NEWS:7810 -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." - -#: ../../../Misc/NEWS:7813 -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." - -#: ../../../Misc/NEWS:7816 -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." - -#: ../../../Misc/NEWS:7819 -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." - -#: ../../../Misc/NEWS:7822 -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." - -#: ../../../Misc/NEWS:7824 -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é." - -#: ../../../Misc/NEWS:7827 -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." - -#: ../../../Misc/NEWS:7830 -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." - -#: ../../../Misc/NEWS:7836 -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()." - -#: ../../../Misc/NEWS:7839 -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." - -#: ../../../Misc/NEWS:7842 -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." - -#: ../../../Misc/NEWS:7845 -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." - -#: ../../../Misc/NEWS:7849 -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." - -#: ../../../Misc/NEWS:7853 -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." - -#: ../../../Misc/NEWS:7857 -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." - -#: ../../../Misc/NEWS:7862 -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." - -#: ../../../Misc/NEWS:7865 -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." - -#: ../../../Misc/NEWS:7870 -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." - -#: ../../../Misc/NEWS:7873 -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." - -#: ../../../Misc/NEWS:7877 -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." - -#: ../../../Misc/NEWS:7881 -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." - -#: ../../../Misc/NEWS:7885 -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)." - -#: ../../../Misc/NEWS:7890 -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." - -#: ../../../Misc/NEWS:7893 -msgid "" -"The webbrowser module now uses subprocess's start_new_session=True rather " -"than a potentially risky preexec_fn=os.setsid call." -msgstr "" - -#: ../../../Misc/NEWS:7896 -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." - -#: ../../../Misc/NEWS:7899 -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." - -#: ../../../Misc/NEWS:7902 -msgid "" -"`bpo-22236 `__: Fixed Tkinter images " -"copying operations in NoDefaultRoot mode." -msgstr "" -"`bpo-22236 `__: Fixed Tkinter images " -"copying operations in NoDefaultRoot mode." - -#: ../../../Misc/NEWS:7904 -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." - -#: ../../../Misc/NEWS:7908 -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." - -#: ../../../Misc/NEWS:7912 -msgid "" -"`bpo-21549 `__: Added the \"members\" " -"parameter to TarFile.list()." -msgstr "" -"`bpo-21549 `__: Added the \"members\" " -"parameter to TarFile.list()." - -#: ../../../Misc/NEWS:7914 -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." - -#: ../../../Misc/NEWS:7917 -msgid "" -"`bpo-15696 `__: Add a __sizeof__ " -"implementation for mmap objects on Windows." -msgstr "" -"`bpo-15696 `__: Add a __sizeof__ " -"implementation for mmap objects on Windows." - -#: ../../../Misc/NEWS:7919 -msgid "" -"`bpo-22068 `__: Avoided reference loops " -"with Variables and Fonts in Tkinter." -msgstr "" -"`bpo-22068 `__: Avoided reference loops " -"with Variables and Fonts in Tkinter." - -#: ../../../Misc/NEWS:7921 -msgid "" -"`bpo-22165 `__: SimpleHTTPRequestHandler " -"now supports undecodable file names." -msgstr "" -"`bpo-22165 `__: SimpleHTTPRequestHandler " -"now supports undecodable file names." - -#: ../../../Misc/NEWS:7923 -msgid "" -"`bpo-15381 `__: Optimized line reading " -"in io.BytesIO." -msgstr "" -"`bpo-15381 `__: Optimized line reading " -"in io.BytesIO." - -#: ../../../Misc/NEWS:7925 -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." - -#: ../../../Misc/NEWS:7928 -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." - -#: ../../../Misc/NEWS:7931 -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." - -#: ../../../Misc/NEWS:7934 -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." - -#: ../../../Misc/NEWS:7937 -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." - -#: ../../../Misc/NEWS:7940 -msgid "" -"`bpo-21725 `__: Added support for RFC " -"6531 (SMTPUTF8) in smtpd." -msgstr "" -"`bpo-21725 `__: Added support for RFC " -"6531 (SMTPUTF8) in smtpd." - -#: ../../../Misc/NEWS:7942 -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." - -#: ../../../Misc/NEWS:7946 -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." - -#: ../../../Misc/NEWS:7948 -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." - -#: ../../../Misc/NEWS:7951 -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." - -#: ../../../Misc/NEWS:7955 -msgid "" -"`bpo-20170 `__: Convert posixmodule to " -"use Argument Clinic." -msgstr "" -"`bpo-20170 `__: Convert posixmodule to " -"use Argument Clinic." - -#: ../../../Misc/NEWS:7957 -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." - -#: ../../../Misc/NEWS:7961 -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)." - -#: ../../../Misc/NEWS:7964 -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." - -#: ../../../Misc/NEWS:7967 -msgid "Add an __all__ to html.entities." -msgstr "" - -#: ../../../Misc/NEWS:7969 -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." - -#: ../../../Misc/NEWS:7972 -msgid "" -"`bpo-22085 `__: Dropped support of Tk " -"8.3 in Tkinter." -msgstr "" -"`bpo-22085 `__: Dropped support of Tk " -"8.3 in Tkinter." - -#: ../../../Misc/NEWS:7974 -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." - -#: ../../../Misc/NEWS:7977 -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." - -#: ../../../Misc/NEWS:7981 -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." - -#: ../../../Misc/NEWS:7984 -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." - -#: ../../../Misc/NEWS:7988 -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." - -#: ../../../Misc/NEWS:7991 -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." - -#: ../../../Misc/NEWS:7994 -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." - -#: ../../../Misc/NEWS:7997 -msgid "" -"Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on " -"closed socket. repr(socket.socket) already works fine." -msgstr "" - -#: ../../../Misc/NEWS:8000 -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." - -#: ../../../Misc/NEWS:8003 -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." - -#: ../../../Misc/NEWS:8006 -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." - -#: ../../../Misc/NEWS:8009 -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." - -#: ../../../Misc/NEWS:8012 -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." - -#: ../../../Misc/NEWS:8017 -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." - -#: ../../../Misc/NEWS:8020 -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." - -#: ../../../Misc/NEWS:8024 -msgid "" -"`bpo-15275 `__: Clean up and speed up " -"the ntpath module." -msgstr "" -"`bpo-15275 `__: Clean up and speed up " -"the ntpath module." - -#: ../../../Misc/NEWS:8026 -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." - -#: ../../../Misc/NEWS:8029 -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." - -#: ../../../Misc/NEWS:8032 -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...\"." - -#: ../../../Misc/NEWS:8035 -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." - -#: ../../../Misc/NEWS:8038 -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." - -#: ../../../Misc/NEWS:8041 -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." - -#: ../../../Misc/NEWS:8043 -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()." - -#: ../../../Misc/NEWS:8045 -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." - -#: ../../../Misc/NEWS:8048 -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." - -#: ../../../Misc/NEWS:8053 -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." - -#: ../../../Misc/NEWS:8055 -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." - -#: ../../../Misc/NEWS:8058 -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" - -#: ../../../Misc/NEWS:8061 -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()." - -#: ../../../Misc/NEWS:8064 -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." - -#: ../../../Misc/NEWS:8067 -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." - -#: ../../../Misc/NEWS:8070 -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." - -#: ../../../Misc/NEWS:8073 -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." - -#: ../../../Misc/NEWS:8076 -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." - -#: ../../../Misc/NEWS:8079 -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." - -#: ../../../Misc/NEWS:8082 -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." - -#: ../../../Misc/NEWS:8084 -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." - -#: ../../../Misc/NEWS:8087 -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." - -#: ../../../Misc/NEWS:8090 -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." - -#: ../../../Misc/NEWS:8094 -msgid "" -"`bpo-21858 `__: Better handling of " -"Python exceptions in the sqlite3 module." -msgstr "" -"`bpo-21858 `__: Better handling of " -"Python exceptions in the sqlite3 module." - -#: ../../../Misc/NEWS:8096 -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." - -#: ../../../Misc/NEWS:8099 -msgid "" -"`bpo-20295 `__: imghdr now recognizes " -"OpenEXR format images." -msgstr "" -"`bpo-20295 `__: imghdr now recognizes " -"OpenEXR format images." - -#: ../../../Misc/NEWS:8101 -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." - -#: ../../../Misc/NEWS:8104 -msgid "" -"`bpo-21491 `__: socketserver: Fix a race " -"condition in child processes reaping." -msgstr "" -"`bpo-21491 `__: socketserver: Fix a race " -"condition in child processes reaping." - -#: ../../../Misc/NEWS:8106 -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." - -#: ../../../Misc/NEWS:8109 -msgid "" -"`bpo-21832 `__: Require named tuple " -"inputs to be exact strings." -msgstr "" -"`bpo-21832 `__: Require named tuple " -"inputs to be exact strings." - -#: ../../../Misc/NEWS:8111 -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." - -#: ../../../Misc/NEWS:8114 -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." - -#: ../../../Misc/NEWS:8117 -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)." - -#: ../../../Misc/NEWS:8120 -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'." - -#: ../../../Misc/NEWS:8124 -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." - -#: ../../../Misc/NEWS:8127 -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." - -#: ../../../Misc/NEWS:8131 -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." - -#: ../../../Misc/NEWS:8134 -msgid "" -"`bpo-21310 `__: Fixed possible resource " -"leak in failed open()." -msgstr "" -"`bpo-21310 `__: Fixed possible resource " -"leak in failed open()." - -#: ../../../Misc/NEWS:8136 -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." - -#: ../../../Misc/NEWS:8139 -msgid "" -"`bpo-21677 `__: Fixed chaining " -"nonnormalized exceptions in io close() methods." -msgstr "" -"`bpo-21677 `__: Fixed chaining " -"nonnormalized exceptions in io close() methods." - -#: ../../../Misc/NEWS:8141 -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." - -#: ../../../Misc/NEWS:8144 -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." - -#: ../../../Misc/NEWS:8146 -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." - -#: ../../../Misc/NEWS:8149 -msgid "" -"`bpo-21463 `__: In urllib.request, fix " -"pruning of the FTP cache." -msgstr "" -"`bpo-21463 `__: In urllib.request, fix " -"pruning of the FTP cache." - -#: ../../../Misc/NEWS:8151 -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." - -#: ../../../Misc/NEWS:8156 -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." - -#: ../../../Misc/NEWS:8159 -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." - -#: ../../../Misc/NEWS:8162 -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." - -#: ../../../Misc/NEWS:8167 -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.)" - -#: ../../../Misc/NEWS:8170 -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." - -#: ../../../Misc/NEWS:8172 -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." - -#: ../../../Misc/NEWS:8175 -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." - -#: ../../../Misc/NEWS:8178 -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." - -#: ../../../Misc/NEWS:8182 -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." - -#: ../../../Misc/NEWS:8185 -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." - -#: ../../../Misc/NEWS:8188 -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." - -#: ../../../Misc/NEWS:8191 -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." - -#: ../../../Misc/NEWS:8194 -msgid "" -"`bpo-21455 `__: Add a default backlog to " -"socket.listen()." -msgstr "" -"`bpo-21455 `__: Add a default backlog to " -"socket.listen()." - -#: ../../../Misc/NEWS:8196 -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." - -#: ../../../Misc/NEWS:8198 -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" - -#: ../../../Misc/NEWS:8202 -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." - -#: ../../../Misc/NEWS:8205 -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." - -#: ../../../Misc/NEWS:8208 -msgid "" -"`bpo-20826 `__: Optimize ipaddress." -"collapse_addresses()." -msgstr "" -"`bpo-20826 `__: Optimize ipaddress." -"collapse_addresses()." - -#: ../../../Misc/NEWS:8210 -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()." - -#: ../../../Misc/NEWS:8213 -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." - -#: ../../../Misc/NEWS:8216 -msgid "" -"`bpo-13916 `__: Disallowed the " -"surrogatepass error handler for non UTF-\\* encodings." -msgstr "" -"`bpo-13916 `__: Disallowed the " -"surrogatepass error handler for non UTF-\\* encodings." - -#: ../../../Misc/NEWS:8219 -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." - -#: ../../../Misc/NEWS:8222 -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." - -#: ../../../Misc/NEWS:8225 -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." - -#: ../../../Misc/NEWS:8228 -msgid "" -"`bpo-21226 `__: Set up modules properly " -"in PyImport_ExecCodeModuleObject (and friends)." -msgstr "" -"`bpo-21226 `__: Set up modules properly " -"in PyImport_ExecCodeModuleObject (and friends)." - -#: ../../../Misc/NEWS:8231 -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." - -#: ../../../Misc/NEWS:8234 -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." - -#: ../../../Misc/NEWS:8238 -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." - -#: ../../../Misc/NEWS:8241 -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." - -#: ../../../Misc/NEWS:8244 -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." - -#: ../../../Misc/NEWS:8247 -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" - -#: ../../../Misc/NEWS:8249 -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." - -#: ../../../Misc/NEWS:8252 -msgid "" -"`bpo-21407 `__: _decimal: The module now " -"supports function signatures." -msgstr "" -"`bpo-21407 `__: _decimal: The module now " -"supports function signatures." - -#: ../../../Misc/NEWS:8254 -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." - -#: ../../../Misc/NEWS:8258 -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()." - -#: ../../../Misc/NEWS:8262 -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." - -#: ../../../Misc/NEWS:8265 -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." - -#: ../../../Misc/NEWS:8268 -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()." - -#: ../../../Misc/NEWS:8271 -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." - -#: ../../../Misc/NEWS:8274 -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." - -#: ../../../Misc/NEWS:8278 -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." - -#: ../../../Misc/NEWS:8282 -msgid "" -"`bpo-13248 `__: removed previously " -"deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." -msgstr "" -"`bpo-13248 `__: removed previously " -"deprecated asyncore.dispatcher __getattr__ cheap inheritance hack." - -#: ../../../Misc/NEWS:8285 -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." - -#: ../../../Misc/NEWS:8288 -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." - -#: ../../../Misc/NEWS:8292 -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." - -#: ../../../Misc/NEWS:8295 -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." - -#: ../../../Misc/NEWS:8298 -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." - -#: ../../../Misc/NEWS:8301 -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." - -#: ../../../Misc/NEWS:8305 -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_``)." - -#: ../../../Misc/NEWS:8308 -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." - -#: ../../../Misc/NEWS:8312 -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." - -#: ../../../Misc/NEWS:8315 -msgid "" -"`bpo-21068 `__: The ssl.PROTOCOL* " -"constants are now enum members." -msgstr "" -"`bpo-21068 `__: The ssl.PROTOCOL* " -"constants are now enum members." - -#: ../../../Misc/NEWS:8317 -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." - -#: ../../../Misc/NEWS:8319 -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." - -#: ../../../Misc/NEWS:8322 -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." - -#: ../../../Misc/NEWS:8325 -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." - -#: ../../../Misc/NEWS:8328 -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." - -#: ../../../Misc/NEWS:8331 -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." - -#: ../../../Misc/NEWS:8334 -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." - -#: ../../../Misc/NEWS:8337 -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." - -#: ../../../Misc/NEWS:8339 -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." - -#: ../../../Misc/NEWS:8344 -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." - -#: ../../../Misc/NEWS:8347 -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." - -#: ../../../Misc/NEWS:8350 -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." - -#: ../../../Misc/NEWS:8353 -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." - -#: ../../../Misc/NEWS:8357 -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." - -#: ../../../Misc/NEWS:8361 -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." - -#: ../../../Misc/NEWS:8364 -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." - -#: ../../../Misc/NEWS:8368 -msgid "" -"`bpo-21172 `__: isinstance check relaxed " -"from dict to collections.Mapping." -msgstr "" -"`bpo-21172 `__: isinstance check relaxed " -"from dict to collections.Mapping." - -#: ../../../Misc/NEWS:8370 -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." - -#: ../../../Misc/NEWS:8373 -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." - -#: ../../../Misc/NEWS:8376 -msgid "" -"`bpo-17621 `__: Introduce importlib.util." -"LazyLoader." -msgstr "" -"`bpo-17621 `__: Introduce importlib.util." -"LazyLoader." - -#: ../../../Misc/NEWS:8378 -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'." - -#: ../../../Misc/NEWS:8381 -msgid "" -"`bpo-20636 `__: Improved the repr of " -"Tkinter widgets." -msgstr "" -"`bpo-20636 `__: Improved the repr of " -"Tkinter widgets." - -#: ../../../Misc/NEWS:8383 -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()." - -#: ../../../Misc/NEWS:8386 -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." - -#: ../../../Misc/NEWS:8389 -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" - -#: ../../../Misc/NEWS:8393 -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." - -#: ../../../Misc/NEWS:8395 -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." - -#: ../../../Misc/NEWS:8398 -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." - -#: ../../../Misc/NEWS:8401 -msgid "" -"`bpo-20633 `__: Replace relative import " -"by absolute import." -msgstr "" -"`bpo-20633 `__: Replace relative import " -"by absolute import." - -#: ../../../Misc/NEWS:8403 -msgid "" -"`bpo-20980 `__: Stop wrapping exception " -"when using ThreadPool." -msgstr "" -"`bpo-20980 `__: Stop wrapping exception " -"when using ThreadPool." - -#: ../../../Misc/NEWS:8405 -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." - -#: ../../../Misc/NEWS:8408 -msgid "" -"`bpo-20990 `__: Fix issues found by " -"pyflakes for multiprocessing." -msgstr "" -"`bpo-20990 `__: Fix issues found by " -"pyflakes for multiprocessing." - -#: ../../../Misc/NEWS:8410 -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\"." - -#: ../../../Misc/NEWS:8414 -msgid "" -"`bpo-21000 `__: Improve the command-line " -"interface of json.tool." -msgstr "" -"`bpo-21000 `__: Improve the command-line " -"interface of json.tool." - -#: ../../../Misc/NEWS:8416 -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." - -#: ../../../Misc/NEWS:8419 -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__." - -#: ../../../Misc/NEWS:8421 -msgid "" -"`bpo-21499 `__: Ignore __builtins__ in " -"several test_importlib.test_api tests." -msgstr "" -"`bpo-21499 `__: Ignore __builtins__ in " -"several test_importlib.test_api tests." - -#: ../../../Misc/NEWS:8423 -msgid "" -"`bpo-20627 `__: xmlrpc.client." -"ServerProxy is now a context manager." -msgstr "" -"`bpo-20627 `__: xmlrpc.client." -"ServerProxy is now a context manager." - -#: ../../../Misc/NEWS:8425 -msgid "" -"`bpo-19165 `__: The formatter module now " -"raises DeprecationWarning instead of PendingDeprecationWarning." -msgstr "" -"`bpo-19165 `__: The formatter module now " -"raises DeprecationWarning instead of PendingDeprecationWarning." - -#: ../../../Misc/NEWS:8428 -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." - -#: ../../../Misc/NEWS:8431 -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'." - -#: ../../../Misc/NEWS:8434 -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." - -#: ../../../Misc/NEWS:8438 -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)." - -#: ../../../Misc/NEWS:8441 -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." - -#: ../../../Misc/NEWS:8446 -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." - -#: ../../../Misc/NEWS:8449 -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." - -#: ../../../Misc/NEWS:8453 -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." - -#: ../../../Misc/NEWS:8456 -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." - -#: ../../../Misc/NEWS:8459 -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." - -#: ../../../Misc/NEWS:8463 -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." - -#: ../../../Misc/NEWS:8467 -msgid "" -"`bpo-20778 `__: Fix modulefinder to work " -"with bytecode-only modules." -msgstr "" -"`bpo-20778 `__: Fix modulefinder to work " -"with bytecode-only modules." - -#: ../../../Misc/NEWS:8469 -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." - -#: ../../../Misc/NEWS:8472 -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]." - -#: ../../../Misc/NEWS:8475 -msgid "" -"`bpo-19573 `__: inspect.signature: Use " -"enum for parameter kind constants." -msgstr "" -"`bpo-19573 `__: inspect.signature: Use " -"enum for parameter kind constants." - -#: ../../../Misc/NEWS:8477 -msgid "" -"`bpo-20726 `__: inspect.signature: Make " -"Signature and Parameter picklable." -msgstr "" -"`bpo-20726 `__: inspect.signature: Make " -"Signature and Parameter picklable." - -#: ../../../Misc/NEWS:8479 -msgid "" -"`bpo-17373 `__: Add inspect.Signature." -"from_callable method." -msgstr "" -"`bpo-17373 `__: Add inspect.Signature." -"from_callable method." - -#: ../../../Misc/NEWS:8481 -msgid "" -"`bpo-20378 `__: Improve repr of inspect." -"Signature and inspect.Parameter." -msgstr "" -"`bpo-20378 `__: Improve repr of inspect." -"Signature and inspect.Parameter." - -#: ../../../Misc/NEWS:8483 -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." - -#: ../../../Misc/NEWS:8486 -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." - -#: ../../../Misc/NEWS:8489 -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)" - -#: ../../../Misc/NEWS:8494 -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." - -#: ../../../Misc/NEWS:8499 -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." - -#: ../../../Misc/NEWS:8502 -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" - -#: ../../../Misc/NEWS:8505 -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." - -#: ../../../Misc/NEWS:8508 -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 `__)." - -#: ../../../Misc/NEWS:8511 -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." - -#: ../../../Misc/NEWS:8514 -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." - -#: ../../../Misc/NEWS:8517 -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." - -#: ../../../Misc/NEWS:8519 -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." - -#: ../../../Misc/NEWS:8522 -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." - -#: ../../../Misc/NEWS:8525 -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." - -#: ../../../Misc/NEWS:8528 -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." - -#: ../../../Misc/NEWS:8535 -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." - -#: ../../../Misc/NEWS:8540 -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." - -#: ../../../Misc/NEWS:8543 -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." - -#: ../../../Misc/NEWS:8547 -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." - -#: ../../../Misc/NEWS:8553 -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." - -#: ../../../Misc/NEWS:8557 -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." - -#: ../../../Misc/NEWS:8560 -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." - -#: ../../../Misc/NEWS:8563 -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." - -#: ../../../Misc/NEWS:8566 -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." - -#: ../../../Misc/NEWS:8570 -msgid "" -"`bpo-21765 `__: Add support for non-" -"ascii identifiers to HyperParser." -msgstr "" -"`bpo-21765 `__: Add support for non-" -"ascii identifiers to HyperParser." - -#: ../../../Misc/NEWS:8572 -msgid "" -"`bpo-21940 `__: Add unittest for " -"WidgetRedirector. Initial patch by Saimadhav Heblikar." -msgstr "" -"`bpo-21940 `__: Add unittest for " -"WidgetRedirector. Initial patch by Saimadhav Heblikar." - -#: ../../../Misc/NEWS:8575 -msgid "" -"`bpo-18592 `__: Add unittest for " -"SearchDialogBase. Patch by Phil Webster." -msgstr "" -"`bpo-18592 `__: Add unittest for " -"SearchDialogBase. Patch by Phil Webster." - -#: ../../../Misc/NEWS:8577 -msgid "" -"`bpo-21694 `__: Add unittest for " -"ParenMatch. Patch by Saimadhav Heblikar." -msgstr "" -"`bpo-21694 `__: Add unittest for " -"ParenMatch. Patch by Saimadhav Heblikar." - -#: ../../../Misc/NEWS:8579 -msgid "" -"`bpo-21686 `__: add unittest for " -"HyperParser. Original patch by Saimadhav Heblikar." -msgstr "" -"`bpo-21686 `__: add unittest for " -"HyperParser. Original patch by Saimadhav Heblikar." - -#: ../../../Misc/NEWS:8582 -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." - -#: ../../../Misc/NEWS:8585 -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." - -#: ../../../Misc/NEWS:8588 -msgid "" -"`bpo-18910 `__: Add unittest for " -"textView. Patch by Phil Webster." -msgstr "" -"`bpo-18910 `__: Add unittest for " -"textView. Patch by Phil Webster." - -#: ../../../Misc/NEWS:8590 -msgid "" -"`bpo-18292 `__: Add unittest for " -"AutoExpand. Patch by Saihadhav Heblikar." -msgstr "" -"`bpo-18292 `__: Add unittest for " -"AutoExpand. Patch by Saihadhav Heblikar." - -#: ../../../Misc/NEWS:8592 -msgid "" -"`bpo-18409 `__: Add unittest for " -"AutoComplete. Patch by Phil Webster." -msgstr "" -"`bpo-18409 `__: Add unittest for " -"AutoComplete. Patch by Phil Webster." - -#: ../../../Misc/NEWS:8594 -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" - -#: ../../../Misc/NEWS:8597 -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." - -#: ../../../Misc/NEWS:8601 -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." - -#: ../../../Misc/NEWS:8603 -msgid "" -"`bpo-21284 `__: Paragraph reformat test " -"passes after user changes reformat width." -msgstr "" -"`bpo-21284 `__: Paragraph reformat test " -"passes after user changes reformat width." - -#: ../../../Misc/NEWS:8605 -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." - -#: ../../../Misc/NEWS:8608 -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." - -#: ../../../Misc/NEWS:8614 -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." - -#: ../../../Misc/NEWS:8617 -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." - -#: ../../../Misc/NEWS:8620 -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." - -#: ../../../Misc/NEWS:8623 -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)." - -#: ../../../Misc/NEWS:8626 -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." - -#: ../../../Misc/NEWS:8629 -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." - -#: ../../../Misc/NEWS:8632 -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." - -#: ../../../Misc/NEWS:8635 -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." - -#: ../../../Misc/NEWS:8639 -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." - -#: ../../../Misc/NEWS:8642 -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." - -#: ../../../Misc/NEWS:8649 -msgid "" -"`bpo-21037 `__: Add a build option to " -"enable AddressSanitizer support." -msgstr "" -"`bpo-21037 `__: Add a build option to " -"enable AddressSanitizer support." - -#: ../../../Misc/NEWS:8651 -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." - -#: ../../../Misc/NEWS:8655 -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." - -#: ../../../Misc/NEWS:8658 -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." - -#: ../../../Misc/NEWS:8662 -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." - -#: ../../../Misc/NEWS:8665 -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." - -#: ../../../Misc/NEWS:8668 -msgid "" -"`bpo-20022 `__: Eliminate use of " -"deprecated bundlebuilder in OS X builds." -msgstr "" -"`bpo-20022 `__: Eliminate use of " -"deprecated bundlebuilder in OS X builds." - -#: ../../../Misc/NEWS:8670 -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." - -#: ../../../Misc/NEWS:8673 -msgid "" -"`bpo-17095 `__: Fix Modules/Setup " -"*shared* support." -msgstr "" -"`bpo-17095 `__: Fix Modules/Setup " -"*shared* support." - -#: ../../../Misc/NEWS:8675 -msgid "" -"`bpo-21811 `__: Anticipated fixes to " -"support OS X versions > 10.9." -msgstr "" -"`bpo-21811 `__: Anticipated fixes to " -"support OS X versions > 10.9." - -#: ../../../Misc/NEWS:8677 -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." - -#: ../../../Misc/NEWS:8680 -msgid "" -"`bpo-18096 `__: Fix library order " -"returned by python-config." -msgstr "" -"`bpo-18096 `__: Fix library order " -"returned by python-config." - -#: ../../../Misc/NEWS:8682 -msgid "" -"`bpo-17219 `__: Add library build dir " -"for Python extension cross-builds." -msgstr "" -"`bpo-17219 `__: Add library build dir " -"for Python extension cross-builds." - -#: ../../../Misc/NEWS:8684 -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." - -#: ../../../Misc/NEWS:8687 -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" - -#: ../../../Misc/NEWS:8689 -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." - -#: ../../../Misc/NEWS:8694 -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." - -#: ../../../Misc/NEWS:8698 -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." - -#: ../../../Misc/NEWS:8702 -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." - -#: ../../../Misc/NEWS:8705 -msgid "" -"`bpo-22453 `__: Removed non-documented " -"macro PyObject_REPR()." -msgstr "" -"`bpo-22453 `__: Removed non-documented " -"macro PyObject_REPR()." - -#: ../../../Misc/NEWS:8707 -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." - -#: ../../../Misc/NEWS:8711 -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." - -#: ../../../Misc/NEWS:8716 -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()." - -#: ../../../Misc/NEWS:8723 -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." - -#: ../../../Misc/NEWS:8727 -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``." - -#: ../../../Misc/NEWS:8731 -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." - -#: ../../../Misc/NEWS:8734 -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." - -#: ../../../Misc/NEWS:8738 -msgid "" -"`bpo-6916 `__: undocument deprecated " -"asynchat.fifo class." -msgstr "" -"`bpo-6916 `__: undocument deprecated " -"asynchat.fifo class." - -#: ../../../Misc/NEWS:8740 -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``." - -#: ../../../Misc/NEWS:8743 -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." - -#: ../../../Misc/NEWS:8746 -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." - -#: ../../../Misc/NEWS:8749 -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()." - -#: ../../../Misc/NEWS:8752 -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." - -#: ../../../Misc/NEWS:8758 -msgid "" -"`bpo-19697 `__: Document cases where " -"__main__.__spec__ is None." -msgstr "" -"`bpo-19697 `__: Document cases where " -"__main__.__spec__ is None." - -#: ../../../Misc/NEWS:8763 -msgid "" -"`bpo-18982 `__: Add tests for CLI of the " -"calendar module." -msgstr "" -"`bpo-18982 `__: Add tests for CLI of the " -"calendar module." - -#: ../../../Misc/NEWS:8765 -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." - -#: ../../../Misc/NEWS:8769 -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." - -#: ../../../Misc/NEWS:8771 -msgid "" -"`bpo-22173 `__: Update lib2to3 tests to " -"use unittest test discovery." -msgstr "" -"`bpo-22173 `__: Update lib2to3 tests to " -"use unittest test discovery." - -#: ../../../Misc/NEWS:8773 -msgid "" -"`bpo-16000 `__: Convert test_curses to " -"use unittest." -msgstr "" -"`bpo-16000 `__: Convert test_curses to " -"use unittest." - -#: ../../../Misc/NEWS:8775 -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." - -#: ../../../Misc/NEWS:8778 -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." - -#: ../../../Misc/NEWS:8781 -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." - -#: ../../../Misc/NEWS:8784 -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()." - -#: ../../../Misc/NEWS:8787 -msgid "" -"`bpo-22111 `__: Assorted cleanups in " -"test_imaplib. Patch by Milan Oberkirch." -msgstr "" -"`bpo-22111 `__: Assorted cleanups in " -"test_imaplib. Patch by Milan Oberkirch." - -#: ../../../Misc/NEWS:8789 -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." - -#: ../../../Misc/NEWS:8793 -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." - -#: ../../../Misc/NEWS:8796 -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." - -#: ../../../Misc/NEWS:8799 -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." - -#: ../../../Misc/NEWS:8802 -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." - -#: ../../../Misc/NEWS:8806 -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." - -#: ../../../Misc/NEWS:8809 -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." - -#: ../../../Misc/NEWS:8812 -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." - -#: ../../../Misc/NEWS:8816 -msgid "" -"`bpo-21605 `__: Added tests for Tkinter " -"images." -msgstr "" -"`bpo-21605 `__: Added tests for Tkinter " -"images." - -#: ../../../Misc/NEWS:8818 -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." - -#: ../../../Misc/NEWS:8821 -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." - -#: ../../../Misc/NEWS:8823 -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()." - -#: ../../../Misc/NEWS:8826 -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." - -#: ../../../Misc/NEWS:8828 -msgid "" -"`bpo-17752 `__: Fix distutils tests when " -"run from the installed location." -msgstr "" -"`bpo-17752 `__: Fix distutils tests when " -"run from the installed location." - -#: ../../../Misc/NEWS:8830 -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." - -#: ../../../Misc/NEWS:8834 -msgid "" -"`bpo-21275 `__: Fix a socket test on " -"KFreeBSD." -msgstr "" -"`bpo-21275 `__: Fix a socket test on " -"KFreeBSD." - -#: ../../../Misc/NEWS:8836 -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." - -#: ../../../Misc/NEWS:8839 -msgid "" -"`bpo-20635 `__: Added tests for Tk " -"geometry managers." -msgstr "" -"`bpo-20635 `__: Added tests for Tk " -"geometry managers." - -#: ../../../Misc/NEWS:8841 -msgid "Add test case for freeze." -msgstr "Ajoute un test pour *freeze*." - -#: ../../../Misc/NEWS:8843 -msgid "" -"`bpo-20743 `__: Fix a reference leak in " -"test_tcl." -msgstr "" -"`bpo-20743 `__: Fix a reference leak in " -"test_tcl." - -#: ../../../Misc/NEWS:8845 -msgid "" -"`bpo-21097 `__: Move test_namespace_pkgs " -"into test_importlib." -msgstr "" -"`bpo-21097 `__: Move test_namespace_pkgs " -"into test_importlib." - -#: ../../../Misc/NEWS:8847 -msgid "" -"`bpo-21503 `__: Use test_both() " -"consistently in test_importlib." -msgstr "" -"`bpo-21503 `__: Use test_both() " -"consistently in test_importlib." - -#: ../../../Misc/NEWS:8849 -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." - -#: ../../../Misc/NEWS:8853 -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)" - -#: ../../../Misc/NEWS:8856 -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." - -#: ../../../Misc/NEWS:8859 -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." - -#: ../../../Misc/NEWS:8861 -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." - -#: ../../../Misc/NEWS:8863 -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)." - -#: ../../../Misc/NEWS:8869 -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." - -#: ../../../Misc/NEWS:8871 -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." - -#: ../../../Misc/NEWS:8875 -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." - -#: ../../../Misc/NEWS:8877 -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." - -#: ../../../Misc/NEWS:8880 -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." - -#: ../../../Misc/NEWS:8883 -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.)" - -#: ../../../Misc/NEWS:8887 -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." - -#: ../../../Misc/NEWS:8889 -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." - -#: ../../../Misc/NEWS:8892 -msgid "" -"`bpo-21629 `__: Fix Argument Clinic's " -"\"--converters\" feature." -msgstr "" -"`bpo-21629 `__: Fix Argument Clinic's " -"\"--converters\" feature." - -#: ../../../Misc/NEWS:8894 -msgid "Add support for ``yield from`` to 2to3." -msgstr "Ajoute le support de ``yield from`` à *2to3*." - -#: ../../../Misc/NEWS:8896 -msgid "Add support for the PEP 465 matrix multiplication operator to 2to3." -msgstr "" - -#: ../../../Misc/NEWS:8898 -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." - -#: ../../../Misc/NEWS:8901 -msgid "" -"`bpo-11824 `__: Consider ABI tags in " -"freeze. Patch by Meador Inge." -msgstr "" -"`bpo-11824 `__: Consider ABI tags in " -"freeze. Patch by Meador Inge." - -#: ../../../Misc/NEWS:8903 -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." - -#: ../../../Misc/NEWS:8909 -msgid "" -"`bpo-23260 `__: Update Windows installer" -msgstr "" -"`bpo-23260 `__: Update Windows installer" - -#: ../../../Misc/NEWS:8911 -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 "" - -#: ../../../Misc/NEWS:8916 -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\\..\\..``." - -#: ../../../Misc/NEWS:8919 -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." - -#: ../../../Misc/NEWS:8922 -msgid "" -"`bpo-21907 `__: Improved the batch " -"scripts provided for building Python." -msgstr "" -"`bpo-21907 `__: Improved the batch " -"scripts provided for building Python." - -#: ../../../Misc/NEWS:8924 -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." - -#: ../../../Misc/NEWS:8926 -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." - -#: ../../../Misc/NEWS:8929 -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." - -#: ../../../Misc/NEWS:8933 -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 "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 "