merge pot files.

This commit is contained in:
Julien Palard 2017-09-21 09:23:18 +02:00
parent d9c9c36c96
commit 6b617ab69c
56 changed files with 20054 additions and 29503 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -133,14 +133,17 @@ msgid ""
msgstr ""
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
#: ../Doc/c-api/structures.rst:305
msgid "Field"
msgstr ""
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
#: ../Doc/c-api/structures.rst:305
msgid "C Type"
msgstr "Type C"
#: ../Doc/c-api/structures.rst:129 ../Doc/c-api/structures.rst:240
#: ../Doc/c-api/structures.rst:305
msgid "Meaning"
msgstr "Signification"
@ -150,7 +153,8 @@ msgstr ""
#: ../Doc/c-api/structures.rst:131 ../Doc/c-api/structures.rst:139
#: ../Doc/c-api/structures.rst:242 ../Doc/c-api/structures.rst:255
#: ../Doc/c-api/structures.rst:271
#: ../Doc/c-api/structures.rst:271 ../Doc/c-api/structures.rst:307
#: ../Doc/c-api/structures.rst:315
msgid "char \\*"
msgstr ""
@ -488,3 +492,89 @@ msgid ""
"macro:`READONLY`. Only :c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` "
"members can be deleted. (They are set to *NULL*)."
msgstr ""
#: ../Doc/c-api/structures.rst:301
msgid ""
"Structure to define property-like access for a type. See also description of "
"the :c:member:`PyTypeObject.tp_getset` slot."
msgstr ""
#: ../Doc/c-api/structures.rst:307
msgid "name"
msgstr ""
#: ../Doc/c-api/structures.rst:307
msgid "attribute name"
msgstr ""
#: ../Doc/c-api/structures.rst:309
msgid "get"
msgstr ""
#: ../Doc/c-api/structures.rst:309
msgid "getter"
msgstr ""
#: ../Doc/c-api/structures.rst:309
msgid "C Function to get the attribute"
msgstr ""
#: ../Doc/c-api/structures.rst:311
msgid "set"
msgstr ""
#: ../Doc/c-api/structures.rst:311
msgid "setter"
msgstr ""
#: ../Doc/c-api/structures.rst:311
msgid ""
"optional C function to set or delete the attribute, if omitted the attribute "
"is readonly"
msgstr ""
#: ../Doc/c-api/structures.rst:315
msgid "doc"
msgstr ""
#: ../Doc/c-api/structures.rst:315
msgid "optional docstring"
msgstr ""
#: ../Doc/c-api/structures.rst:317
msgid "closure"
msgstr ""
#: ../Doc/c-api/structures.rst:317
msgid "void \\*"
msgstr ""
#: ../Doc/c-api/structures.rst:317
msgid ""
"optional function pointer, providing additional data for getter and setter"
msgstr ""
#: ../Doc/c-api/structures.rst:322
msgid ""
"The ``get`` function takes one :c:type:`PyObject\\*` parameter (the "
"instance) and a function pointer (the associated ``closure``)::"
msgstr ""
#: ../Doc/c-api/structures.rst:327
msgid ""
"It should return a new reference on success or *NULL* with a set exception "
"on failure."
msgstr ""
#: ../Doc/c-api/structures.rst:330
msgid ""
"``set`` functions take two :c:type:`PyObject\\*` parameters (the instance "
"and the value to be set) and a function pointer (the associated "
"``closure``)::"
msgstr ""
#: ../Doc/c-api/structures.rst:335
msgid ""
"In case the attribute should be deleted the second parameter is *NULL*. "
"Should return ``0`` on success or ``-1`` with a set exception on failure."
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -120,9 +120,9 @@ msgstr ""
#: ../Doc/c-api/typeobj.rst:86 ../Doc/c-api/typeobj.rst:188
#: ../Doc/c-api/typeobj.rst:255 ../Doc/c-api/typeobj.rst:322
#: ../Doc/c-api/typeobj.rst:340 ../Doc/c-api/typeobj.rst:666
#: ../Doc/c-api/typeobj.rst:683 ../Doc/c-api/typeobj.rst:778
#: ../Doc/c-api/typeobj.rst:873 ../Doc/c-api/typeobj.rst:966
#: ../Doc/c-api/typeobj.rst:1021
#: ../Doc/c-api/typeobj.rst:683 ../Doc/c-api/typeobj.rst:763
#: ../Doc/c-api/typeobj.rst:858 ../Doc/c-api/typeobj.rst:951
#: ../Doc/c-api/typeobj.rst:1006
msgid "This field is inherited by subtypes."
msgstr ""
@ -951,11 +951,7 @@ msgid ""
"through a different mechanism)."
msgstr ""
#: ../Doc/c-api/typeobj.rst:724
msgid "Docs for PyGetSetDef::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:740
#: ../Doc/c-api/typeobj.rst:725
msgid ""
"An optional pointer to a base type from which type properties are "
"inherited. At this level, only single inheritance is supported; multiple "
@ -963,18 +959,18 @@ msgid ""
"metatype."
msgstr ""
#: ../Doc/c-api/typeobj.rst:744
#: ../Doc/c-api/typeobj.rst:729
msgid ""
"This field is not inherited by subtypes (obviously), but it defaults to "
"``&PyBaseObject_Type`` (which to Python programmers is known as the type :"
"class:`object`)."
msgstr ""
#: ../Doc/c-api/typeobj.rst:751
#: ../Doc/c-api/typeobj.rst:736
msgid "The type's dictionary is stored here by :c:func:`PyType_Ready`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:753
#: ../Doc/c-api/typeobj.rst:738
msgid ""
"This field should normally be initialized to *NULL* before PyType_Ready is "
"called; it may also be initialized to a dictionary containing initial "
@ -983,41 +979,41 @@ msgid ""
"they don't correspond to overloaded operations (like :meth:`__add__`)."
msgstr ""
#: ../Doc/c-api/typeobj.rst:759
#: ../Doc/c-api/typeobj.rst:744
msgid ""
"This field is not inherited by subtypes (though the attributes defined in "
"here are inherited through a different mechanism)."
msgstr ""
#: ../Doc/c-api/typeobj.rst:764
#: ../Doc/c-api/typeobj.rst:749
msgid ""
"It is not safe to use :c:func:`PyDict_SetItem` on or otherwise modify :c:"
"member:`~PyTypeObject.tp_dict` with the dictionary C-API."
msgstr ""
#: ../Doc/c-api/typeobj.rst:770
#: ../Doc/c-api/typeobj.rst:755
msgid "An optional pointer to a \"descriptor get\" function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:772 ../Doc/c-api/typeobj.rst:786
#: ../Doc/c-api/typeobj.rst:858 ../Doc/c-api/typeobj.rst:880
#: ../Doc/c-api/typeobj.rst:911
#: ../Doc/c-api/typeobj.rst:757 ../Doc/c-api/typeobj.rst:771
#: ../Doc/c-api/typeobj.rst:843 ../Doc/c-api/typeobj.rst:865
#: ../Doc/c-api/typeobj.rst:896
msgid "The function signature is ::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:783
#: ../Doc/c-api/typeobj.rst:768
msgid ""
"An optional pointer to a function for setting and deleting a descriptor's "
"value."
msgstr ""
#: ../Doc/c-api/typeobj.rst:790
#: ../Doc/c-api/typeobj.rst:775
msgid ""
"The *value* argument is set to *NULL* to delete the value. This field is "
"inherited by subtypes."
msgstr ""
#: ../Doc/c-api/typeobj.rst:798
#: ../Doc/c-api/typeobj.rst:783
msgid ""
"If the instances of this type have a dictionary containing instance "
"variables, this field is non-zero and contains the offset in the instances "
@ -1025,13 +1021,13 @@ msgid ""
"func:`PyObject_GenericGetAttr`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:803
#: ../Doc/c-api/typeobj.rst:788
msgid ""
"Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is "
"the dictionary for attributes of the type object itself."
msgstr ""
#: ../Doc/c-api/typeobj.rst:806
#: ../Doc/c-api/typeobj.rst:791
msgid ""
"If the value of this field is greater than zero, it specifies the offset "
"from the start of the instance structure. If the value is less than zero, "
@ -1047,13 +1043,13 @@ msgid ""
"the very end of the structure."
msgstr ""
#: ../Doc/c-api/typeobj.rst:818
#: ../Doc/c-api/typeobj.rst:803
msgid ""
"The real dictionary offset in an instance can be computed from a negative :c:"
"member:`~PyTypeObject.tp_dictoffset` as follows::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:825
#: ../Doc/c-api/typeobj.rst:810
msgid ""
"where :c:member:`~PyTypeObject.tp_basicsize`, :c:member:`~PyTypeObject."
"tp_itemsize` and :c:member:`~PyTypeObject.tp_dictoffset` are taken from the "
@ -1063,7 +1059,7 @@ msgid ""
"it is done for you by :c:func:`_PyObject_GetDictPtr`.)"
msgstr ""
#: ../Doc/c-api/typeobj.rst:831
#: ../Doc/c-api/typeobj.rst:816
msgid ""
"This field is inherited by subtypes, but see the rules listed below. A "
"subtype may override this offset; this means that the subtype instances "
@ -1072,7 +1068,7 @@ msgid ""
"should not be a problem."
msgstr ""
#: ../Doc/c-api/typeobj.rst:836
#: ../Doc/c-api/typeobj.rst:821
msgid ""
"When a type defined by a class statement has no :attr:`~object.__slots__` "
"declaration, and none of its base types has an instance variable dictionary, "
@ -1080,14 +1076,14 @@ msgid ""
"`~PyTypeObject.tp_dictoffset` is set to that slot's offset."
msgstr ""
#: ../Doc/c-api/typeobj.rst:841
#: ../Doc/c-api/typeobj.rst:826
msgid ""
"When a type defined by a class statement has a :attr:`__slots__` "
"declaration, the type inherits its :c:member:`~PyTypeObject.tp_dictoffset` "
"from its base type."
msgstr ""
#: ../Doc/c-api/typeobj.rst:844
#: ../Doc/c-api/typeobj.rst:829
msgid ""
"(Adding a slot named :attr:`~object.__dict__` to the :attr:`__slots__` "
"declaration does not have the expected effect, it just causes confusion. "
@ -1095,11 +1091,11 @@ msgid ""
"though.)"
msgstr ""
#: ../Doc/c-api/typeobj.rst:851
#: ../Doc/c-api/typeobj.rst:836
msgid "An optional pointer to an instance initialization function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:853
#: ../Doc/c-api/typeobj.rst:838
msgid ""
"This function corresponds to the :meth:`__init__` method of classes. Like :"
"meth:`__init__`, it is possible to create an instance without calling :meth:"
@ -1107,14 +1103,14 @@ msgid ""
"meth:`__init__` method again."
msgstr ""
#: ../Doc/c-api/typeobj.rst:862
#: ../Doc/c-api/typeobj.rst:847
msgid ""
"The self argument is the instance to be initialized; the *args* and *kwds* "
"arguments represent positional and keyword arguments of the call to :meth:"
"`__init__`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:866
#: ../Doc/c-api/typeobj.rst:851
msgid ""
"The :c:member:`~PyTypeObject.tp_init` function, if not *NULL*, is called "
"when an instance is created normally by calling its type, after the type's :"
@ -1126,11 +1122,11 @@ msgid ""
"subtype's :c:member:`~PyTypeObject.tp_init` is called."
msgstr ""
#: ../Doc/c-api/typeobj.rst:878
#: ../Doc/c-api/typeobj.rst:863
msgid "An optional pointer to an instance allocation function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:884
#: ../Doc/c-api/typeobj.rst:869
msgid ""
"The purpose of this function is to separate memory allocation from memory "
"initialization. It should return a pointer to a block of memory of adequate "
@ -1144,14 +1140,14 @@ msgid ""
"member:`~PyTypeObject.tp_basicsize`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:894
#: ../Doc/c-api/typeobj.rst:879
msgid ""
"Do not use this function to do any other instance initialization, not even "
"to allocate additional memory; that should be done by :c:member:"
"`~PyTypeObject.tp_new`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:897
#: ../Doc/c-api/typeobj.rst:882
msgid ""
"This field is inherited by static subtypes, but not by dynamic subtypes "
"(subtypes created by a class statement); in the latter, this field is always "
@ -1159,18 +1155,18 @@ msgid ""
"strategy. That is also the recommended value for statically defined types."
msgstr ""
#: ../Doc/c-api/typeobj.rst:905
#: ../Doc/c-api/typeobj.rst:890
msgid "An optional pointer to an instance creation function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:907
#: ../Doc/c-api/typeobj.rst:892
msgid ""
"If this function is *NULL* for a particular type, that type cannot be called "
"to create new instances; presumably there is some other way to create "
"instances, like a factory function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:915
#: ../Doc/c-api/typeobj.rst:900
msgid ""
"The subtype argument is the type of the object being created; the *args* and "
"*kwds* arguments represent positional and keyword arguments of the call to "
@ -1179,7 +1175,7 @@ msgid ""
"(but not an unrelated type)."
msgstr ""
#: ../Doc/c-api/typeobj.rst:921
#: ../Doc/c-api/typeobj.rst:906
msgid ""
"The :c:member:`~PyTypeObject.tp_new` function should call ``subtype-"
">tp_alloc(subtype, nitems)`` to allocate space for the object, and then do "
@ -1191,26 +1187,26 @@ msgid ""
"be deferred to :c:member:`~PyTypeObject.tp_init`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:929
#: ../Doc/c-api/typeobj.rst:914
msgid ""
"This field is inherited by subtypes, except it is not inherited by static "
"types whose :c:member:`~PyTypeObject.tp_base` is *NULL* or "
"``&PyBaseObject_Type``."
msgstr ""
#: ../Doc/c-api/typeobj.rst:935
#: ../Doc/c-api/typeobj.rst:920
msgid ""
"An optional pointer to an instance deallocation function. Its signature is :"
"c:type:`freefunc`::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:940
#: ../Doc/c-api/typeobj.rst:925
msgid ""
"An initializer that is compatible with this signature is :c:func:"
"`PyObject_Free`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:942
#: ../Doc/c-api/typeobj.rst:927
msgid ""
"This field is inherited by static subtypes, but not by dynamic subtypes "
"(subtypes created by a class statement); in the latter, this field is set to "
@ -1218,11 +1214,11 @@ msgid ""
"of the :const:`Py_TPFLAGS_HAVE_GC` flag bit."
msgstr ""
#: ../Doc/c-api/typeobj.rst:950
#: ../Doc/c-api/typeobj.rst:935
msgid "An optional pointer to a function called by the garbage collector."
msgstr ""
#: ../Doc/c-api/typeobj.rst:952
#: ../Doc/c-api/typeobj.rst:937
msgid ""
"The garbage collector needs to know whether a particular object is "
"collectible or not. Normally, it is sufficient to look at the object's "
@ -1234,46 +1230,46 @@ msgid ""
"instance. The signature is ::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:962
#: ../Doc/c-api/typeobj.rst:947
msgid ""
"(The only example of this are types themselves. The metatype, :c:data:"
"`PyType_Type`, defines this function to distinguish between statically and "
"dynamically allocated types.)"
msgstr ""
#: ../Doc/c-api/typeobj.rst:971
#: ../Doc/c-api/typeobj.rst:956
msgid "Tuple of base types."
msgstr ""
#: ../Doc/c-api/typeobj.rst:973
#: ../Doc/c-api/typeobj.rst:958
msgid ""
"This is set for types created by a class statement. It should be *NULL* for "
"statically defined types."
msgstr ""
#: ../Doc/c-api/typeobj.rst:976
#: ../Doc/c-api/typeobj.rst:961
msgid "This field is not inherited."
msgstr ""
#: ../Doc/c-api/typeobj.rst:981
#: ../Doc/c-api/typeobj.rst:966
msgid ""
"Tuple containing the expanded set of base types, starting with the type "
"itself and ending with :class:`object`, in Method Resolution Order."
msgstr ""
#: ../Doc/c-api/typeobj.rst:984
#: ../Doc/c-api/typeobj.rst:969
msgid ""
"This field is not inherited; it is calculated fresh by :c:func:"
"`PyType_Ready`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:989
#: ../Doc/c-api/typeobj.rst:974
msgid ""
"An optional pointer to an instance finalization function. Its signature is :"
"c:type:`destructor`::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:994
#: ../Doc/c-api/typeobj.rst:979
msgid ""
"If :c:member:`~PyTypeObject.tp_finalize` is set, the interpreter calls it "
"once when finalizing an instance. It is called either from the garbage "
@ -1283,39 +1279,39 @@ msgid ""
"object in a sane state."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1001
#: ../Doc/c-api/typeobj.rst:986
msgid ""
":c:member:`~PyTypeObject.tp_finalize` should not mutate the current "
"exception status; therefore, a recommended way to write a non-trivial "
"finalizer is::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1018
#: ../Doc/c-api/typeobj.rst:1003
msgid ""
"For this field to be taken into account (even through inheritance), you must "
"also set the :const:`Py_TPFLAGS_HAVE_FINALIZE` flags bit."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1025
#: ../Doc/c-api/typeobj.rst:1010
msgid "\"Safe object finalization\" (:pep:`442`)"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1030
#: ../Doc/c-api/typeobj.rst:1015
msgid "Unused. Not inherited. Internal use only."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1035
#: ../Doc/c-api/typeobj.rst:1020
msgid ""
"List of weak references to subclasses. Not inherited. Internal use only."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1040
#: ../Doc/c-api/typeobj.rst:1025
msgid ""
"Weak reference list head, for weak references to this type object. Not "
"inherited. Internal use only."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1043
#: ../Doc/c-api/typeobj.rst:1028
msgid ""
"The remaining fields are only defined if the feature test macro :const:"
"`COUNT_ALLOCS` is defined, and are for internal use only. They are "
@ -1323,25 +1319,25 @@ msgid ""
"subtypes."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1051
#: ../Doc/c-api/typeobj.rst:1036
msgid "Number of allocations."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1056
#: ../Doc/c-api/typeobj.rst:1041
msgid "Number of frees."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1061
#: ../Doc/c-api/typeobj.rst:1046
msgid "Maximum simultaneously allocated objects."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1066
#: ../Doc/c-api/typeobj.rst:1051
msgid ""
"Pointer to the next type object with a non-zero :c:member:`~PyTypeObject."
"tp_allocs` field."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1068
#: ../Doc/c-api/typeobj.rst:1053
msgid ""
"Also, note that, in a garbage collected Python, tp_dealloc may be called "
"from any Python thread, not just the thread which created the object (if the "
@ -1354,22 +1350,22 @@ msgid ""
"will not violate any assumptions of the library."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1082
#: ../Doc/c-api/typeobj.rst:1067
msgid "Number Object Structures"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1089
#: ../Doc/c-api/typeobj.rst:1074
msgid ""
"This structure holds pointers to the functions which an object uses to "
"implement the number protocol. Each function is used by the function of "
"similar name documented in the :ref:`number` section."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1093 ../Doc/c-api/typeobj.rst:1366
#: ../Doc/c-api/typeobj.rst:1078 ../Doc/c-api/typeobj.rst:1351
msgid "Here is the structure definition::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1140
#: ../Doc/c-api/typeobj.rst:1125
msgid ""
"Binary and ternary functions must check the type of all their operands, and "
"implement the necessary conversions (at least one of the operands is an "
@ -1379,37 +1375,37 @@ msgid ""
"and set an exception."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1149
#: ../Doc/c-api/typeobj.rst:1134
msgid ""
"The :c:data:`nb_reserved` field should always be ``NULL``. It was "
"previously called :c:data:`nb_long`, and was renamed in Python 3.0.1."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1157
#: ../Doc/c-api/typeobj.rst:1142
msgid "Mapping Object Structures"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1164
#: ../Doc/c-api/typeobj.rst:1149
msgid ""
"This structure holds pointers to the functions which an object uses to "
"implement the mapping protocol. It has three members:"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1169
#: ../Doc/c-api/typeobj.rst:1154
msgid ""
"This function is used by :c:func:`PyMapping_Length` and :c:func:"
"`PyObject_Size`, and has the same signature. This slot may be set to *NULL* "
"if the object has no defined length."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1175
#: ../Doc/c-api/typeobj.rst:1160
msgid ""
"This function is used by :c:func:`PyObject_GetItem` and has the same "
"signature. This slot must be filled for the :c:func:`PyMapping_Check` "
"function to return ``1``, it can be *NULL* otherwise."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1181
#: ../Doc/c-api/typeobj.rst:1166
msgid ""
"This function is used by :c:func:`PyObject_SetItem` and :c:func:"
"`PyObject_DelItem`. It has the same signature as :c:func:"
@ -1418,30 +1414,30 @@ msgid ""
"deletion."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1191
#: ../Doc/c-api/typeobj.rst:1176
msgid "Sequence Object Structures"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1198
#: ../Doc/c-api/typeobj.rst:1183
msgid ""
"This structure holds pointers to the functions which an object uses to "
"implement the sequence protocol."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1203
#: ../Doc/c-api/typeobj.rst:1188
msgid ""
"This function is used by :c:func:`PySequence_Size` and :c:func:"
"`PyObject_Size`, and has the same signature."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1208
#: ../Doc/c-api/typeobj.rst:1193
msgid ""
"This function is used by :c:func:`PySequence_Concat` and has the same "
"signature. It is also used by the ``+`` operator, after trying the numeric "
"addition via the :c:member:`~PyTypeObject.tp_as_number.nb_add` slot."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1214
#: ../Doc/c-api/typeobj.rst:1199
msgid ""
"This function is used by :c:func:`PySequence_Repeat` and has the same "
"signature. It is also used by the ``*`` operator, after trying numeric "
@ -1449,14 +1445,14 @@ msgid ""
"slot."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1221
#: ../Doc/c-api/typeobj.rst:1206
msgid ""
"This function is used by :c:func:`PySequence_GetItem` and has the same "
"signature. This slot must be filled for the :c:func:`PySequence_Check` "
"function to return ``1``, it can be *NULL* otherwise."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1225
#: ../Doc/c-api/typeobj.rst:1210
msgid ""
"Negative indexes are handled as follows: if the :attr:`sq_length` slot is "
"filled, it is called and the sequence length is used to compute a positive "
@ -1464,98 +1460,98 @@ msgid ""
"the index is passed as is to the function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1232
#: ../Doc/c-api/typeobj.rst:1217
msgid ""
"This function is used by :c:func:`PySequence_SetItem` and has the same "
"signature. This slot may be left to *NULL* if the object does not support "
"item assignment and deletion."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1238
#: ../Doc/c-api/typeobj.rst:1223
msgid ""
"This function may be used by :c:func:`PySequence_Contains` and has the same "
"signature. This slot may be left to *NULL*, in this case :c:func:"
"`PySequence_Contains` simply traverses the sequence until it finds a match."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1245
#: ../Doc/c-api/typeobj.rst:1230
msgid ""
"This function is used by :c:func:`PySequence_InPlaceConcat` and has the same "
"signature. It should modify its first operand, and return it."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1250
#: ../Doc/c-api/typeobj.rst:1235
msgid ""
"This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same "
"signature. It should modify its first operand, and return it."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1260
#: ../Doc/c-api/typeobj.rst:1245
msgid "Buffer Object Structures"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1268
#: ../Doc/c-api/typeobj.rst:1253
msgid ""
"This structure holds pointers to the functions required by the :ref:`Buffer "
"protocol <bufferobjects>`. The protocol defines how an exporter object can "
"expose its internal data to consumer objects."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1274 ../Doc/c-api/typeobj.rst:1323
#: ../Doc/c-api/typeobj.rst:1376 ../Doc/c-api/typeobj.rst:1387
#: ../Doc/c-api/typeobj.rst:1398
#: ../Doc/c-api/typeobj.rst:1259 ../Doc/c-api/typeobj.rst:1308
#: ../Doc/c-api/typeobj.rst:1361 ../Doc/c-api/typeobj.rst:1372
#: ../Doc/c-api/typeobj.rst:1383
msgid "The signature of this function is::"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1278
#: ../Doc/c-api/typeobj.rst:1263
msgid ""
"Handle a request to *exporter* to fill in *view* as specified by *flags*. "
"Except for point (3), an implementation of this function MUST take these "
"steps:"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1282
#: ../Doc/c-api/typeobj.rst:1267
msgid ""
"Check if the request can be met. If not, raise :c:data:`PyExc_BufferError`, "
"set :c:data:`view->obj` to *NULL* and return ``-1``."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1285
#: ../Doc/c-api/typeobj.rst:1270
msgid "Fill in the requested fields."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1287
#: ../Doc/c-api/typeobj.rst:1272
msgid "Increment an internal counter for the number of exports."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1289
#: ../Doc/c-api/typeobj.rst:1274
msgid ""
"Set :c:data:`view->obj` to *exporter* and increment :c:data:`view->obj`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1291
#: ../Doc/c-api/typeobj.rst:1276
msgid "Return ``0``."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1293
#: ../Doc/c-api/typeobj.rst:1278
msgid ""
"If *exporter* is part of a chain or tree of buffer providers, two main "
"schemes can be used:"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1296
#: ../Doc/c-api/typeobj.rst:1281
msgid ""
"Re-export: Each member of the tree acts as the exporting object and sets :c:"
"data:`view->obj` to a new reference to itself."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1299
#: ../Doc/c-api/typeobj.rst:1284
msgid ""
"Redirect: The buffer request is redirected to the root object of the tree. "
"Here, :c:data:`view->obj` will be a new reference to the root object."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1303
#: ../Doc/c-api/typeobj.rst:1288
msgid ""
"The individual fields of *view* are described in section :ref:`Buffer "
"structure <buffer-structure>`, the rules how an exporter must react to "
@ -1563,7 +1559,7 @@ msgid ""
"types>`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1308
#: ../Doc/c-api/typeobj.rst:1293
msgid ""
"All memory pointed to in the :c:type:`Py_buffer` structure belongs to the "
"exporter and must remain valid until there are no consumers left. :c:member:"
@ -1572,19 +1568,19 @@ msgid ""
"internal` are read-only for the consumer."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1315
#: ../Doc/c-api/typeobj.rst:1300
msgid ""
":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes "
"buffer while dealing correctly with all request types."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1318
#: ../Doc/c-api/typeobj.rst:1303
msgid ""
":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps "
"this function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1327
#: ../Doc/c-api/typeobj.rst:1312
msgid ""
"Handle a request to release the resources of the buffer. If no resources "
"need to be released, :c:member:`PyBufferProcs.bf_releasebuffer` may be "
@ -1592,15 +1588,15 @@ msgid ""
"these optional steps:"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1332
#: ../Doc/c-api/typeobj.rst:1317
msgid "Decrement an internal counter for the number of exports."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1334
#: ../Doc/c-api/typeobj.rst:1319
msgid "If the counter is ``0``, free all memory associated with *view*."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1336
#: ../Doc/c-api/typeobj.rst:1321
msgid ""
"The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep "
"track of buffer-specific resources. This field is guaranteed to remain "
@ -1608,52 +1604,52 @@ msgid ""
"*view* argument."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1342
#: ../Doc/c-api/typeobj.rst:1327
msgid ""
"This function MUST NOT decrement :c:data:`view->obj`, since that is done "
"automatically in :c:func:`PyBuffer_Release` (this scheme is useful for "
"breaking reference cycles)."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1347
#: ../Doc/c-api/typeobj.rst:1332
msgid ""
":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this "
"function."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1355
#: ../Doc/c-api/typeobj.rst:1340
msgid "Async Object Structures"
msgstr ""
#: ../Doc/c-api/typeobj.rst:1363
#: ../Doc/c-api/typeobj.rst:1348
msgid ""
"This structure holds pointers to the functions required to implement :term:"
"`awaitable` and :term:`asynchronous iterator` objects."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1380
#: ../Doc/c-api/typeobj.rst:1365
msgid ""
"The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must "
"return ``1`` for it."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1383
#: ../Doc/c-api/typeobj.rst:1368
msgid ""
"This slot may be set to *NULL* if an object is not an :term:`awaitable`."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1391
#: ../Doc/c-api/typeobj.rst:1376
msgid ""
"Must return an :term:`awaitable` object. See :meth:`__anext__` for details."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1393
#: ../Doc/c-api/typeobj.rst:1378
msgid ""
"This slot may be set to *NULL* if an object does not implement asynchronous "
"iteration protocol."
msgstr ""
#: ../Doc/c-api/typeobj.rst:1402
#: ../Doc/c-api/typeobj.rst:1387
msgid ""
"Must return an :term:`awaitable` object. See :meth:`__anext__` for details. "
"This slot may be set to *NULL*."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Distributing Python Modules"
msgstr "Distribuer des Modules Python"
#: ../Doc/distributing/index.rst:0
msgid "Email"
msgstr ""
#: ../Doc/distributing/index.rst:7
msgid "distutils-sig@python.org"
msgstr "distutils-sig@python.org"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,18 +21,10 @@ msgstr ""
msgid "Distributing Python Modules (Legacy version)"
msgstr ""
#: ../Doc/distutils/index.rst:0
msgid "Authors"
msgstr ""
#: ../Doc/distutils/index.rst:7
msgid "Greg Ward, Anthony Baxter"
msgstr ""
#: ../Doc/distutils/index.rst:0
msgid "Email"
msgstr ""
#: ../Doc/distutils/index.rst:8
msgid "distutils-sig@python.org"
msgstr "distutils-sig@python.org"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -38,6 +38,10 @@ msgstr ""
"le lancement de programmes depuis la ligne de commande de Windows alors tout "
"semblera évident; Sinon, vous auriez besoin d'être un peu guidé."
#: ../Doc/faq/windows.rst:0
msgid "|Python Development on XP|_"
msgstr "Développement |Python sur XP|_"
#: ../Doc/faq/windows.rst:27
msgid ""
"This series of screencasts aims to get you up and running with Python on "
@ -125,6 +129,10 @@ msgid ""
"``>>>``, gives you a message like::"
msgstr ""
#: ../Doc/faq/windows.rst:0
msgid "|Adding Python to DOS Path|_"
msgstr ""
#: ../Doc/faq/windows.rst:102
msgid ""
"Python is not added to the DOS path by default. This screencast will walk "
@ -447,6 +455,3 @@ msgid ""
"will be able to handle it. (If your copy of WinZip doesn't, get a newer one "
"from https://www.winzip.com.)"
msgstr ""
#~ msgid "|Python Development on XP|_"
#~ msgstr "Développement |Python sur XP|_"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 14:06+0200\n"
"Last-Translator: Hugo Ludmann <ludmann.h@gmail.com>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Argparse Tutorial"
msgstr "Tutoriel Argparse"
#: ../Doc/howto/argparse.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/argparse.rst:5
msgid "Tshepang Lekhonkhobe"
msgstr "Tshepang Lekhonkhobe"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-11 19:00+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:58+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Argument Clinic How-To"
msgstr ""
#: ../Doc/howto/clinic.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/clinic.rst:7
msgid "Larry Hastings"
msgstr ""
#: ../Doc/howto/clinic.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/clinic.rst:12
msgid ""
"Argument Clinic is a preprocessor for CPython C files. Its purpose is to "
@ -2432,6 +2432,3 @@ msgid ""
"Since Python comments are different from C comments, Argument Clinic blocks "
"embedded in Python files look slightly different. They look like this:"
msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Porting Extension Modules to Python 3"
msgstr ""
#: ../Doc/howto/cporting.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/cporting.rst:9
msgid "Benjamin Peterson"
msgstr "Benjamin Peterson"
#: ../Doc/howto/cporting.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/cporting.rst:14
msgid ""
"Although changing the C-API was not one of Python 3's objectives, the many "
@ -190,6 +190,3 @@ msgid ""
"<http://cython.org/>`_. It translates a Python-like language to C. The "
"extension modules it creates are compatible with Python 3 and Python 2."
msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,22 +21,18 @@ msgstr ""
msgid "Curses Programming with Python"
msgstr ""
#: ../Doc/howto/curses.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/curses.rst:7
msgid "A.M. Kuchling, Eric S. Raymond"
msgstr ""
#: ../Doc/howto/curses.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/curses.rst:8
msgid "2.04"
msgstr ""
#: ../Doc/howto/curses.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/curses.rst:13
msgid ""
"This document describes how to use the :mod:`curses` extension module to "
@ -735,5 +731,5 @@ msgid ""
"demonstrating some applications written using Urwid."
msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,22 +21,18 @@ msgstr ""
msgid "Descriptor HowTo Guide"
msgstr ""
#: ../Doc/howto/descriptor.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/descriptor.rst:5
msgid "Raymond Hettinger"
msgstr ""
#: ../Doc/howto/descriptor.rst:0
msgid "Contact"
msgstr ""
#: ../Doc/howto/descriptor.rst:6
msgid "<python at rcn dot com>"
msgstr ""
#: ../Doc/howto/descriptor.rst:0
msgid "Contents"
msgstr ""
#: ../Doc/howto/descriptor.rst:11
msgid "Abstract"
msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,18 +21,10 @@ msgstr ""
msgid "Functional Programming HOWTO"
msgstr ""
#: ../Doc/howto/functional.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/functional.rst:5
msgid "A. M. Kuchling"
msgstr ""
#: ../Doc/howto/functional.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/functional.rst:6
msgid "0.32"
msgstr ""
@ -1376,3 +1368,6 @@ msgid ""
":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new "
"generator features in Python 2.5."
msgstr ""
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Instrumenting CPython with DTrace and SystemTap"
msgstr ""
#: ../Doc/howto/instrumentation.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/instrumentation.rst:9
msgid "David Malcolm"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "An introduction to the ipaddress module"
msgstr ""
#: ../Doc/howto/ipaddress.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/ipaddress.rst:11
msgid "Peter Moody"
msgstr ""
@ -33,6 +29,10 @@ msgstr ""
msgid "Nick Coghlan"
msgstr ""
#: ../Doc/howto/ipaddress.rst:0
msgid "Overview"
msgstr ""
#: ../Doc/howto/ipaddress.rst:16
msgid ""
"This document aims to provide a gentle introduction to the :mod:`ipaddress` "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Logging Cookbook"
msgstr ""
#: ../Doc/howto/logging-cookbook.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/logging-cookbook.rst:7
msgid "Vinay Sajip <vinay_sajip at red-dove dot com>"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Logging HOWTO"
msgstr ""
#: ../Doc/howto/logging.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/logging.rst:5
msgid "Vinay Sajip <vinay_sajip at red-dove dot com>"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Porting Python 2 Code to Python 3"
msgstr ""
#: ../Doc/howto/pyporting.rst:0
msgid "author"
msgstr ""
#: ../Doc/howto/pyporting.rst:7
msgid "Brett Cannon"
msgstr ""
#: ../Doc/howto/pyporting.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/pyporting.rst:11
msgid ""
"With Python 3 being the future of Python while Python 2 is still in active "
@ -631,6 +631,3 @@ msgid ""
"binary data, helping to make sure everything functions as expected in both "
"versions of Python."
msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:58+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Regular Expression HOWTO"
msgstr ""
#: ../Doc/howto/regex.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/regex.rst:7
msgid "A.M. Kuchling <amk@amk.ca>"
msgstr ""
#: ../Doc/howto/regex.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/regex.rst:18
msgid ""
"This document is an introductory tutorial to using regular expressions in "
@ -1826,6 +1826,3 @@ msgid ""
"edition covered Python's now-removed :mod:`regex` module, which won't help "
"you much.) Consider checking it out from your library."
msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,14 +21,14 @@ msgstr ""
msgid "Socket Programming HOWTO"
msgstr ""
#: ../Doc/howto/sockets.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/sockets.rst:7
msgid "Gordon McMillan"
msgstr ""
#: ../Doc/howto/sockets.rst:0
msgid "Abstract"
msgstr "Résumé"
#: ../Doc/howto/sockets.rst:12
msgid ""
"Sockets are used nearly everywhere, but are one of the most severely "
@ -475,6 +475,3 @@ msgid ""
"differently on Windows. In fact, on Windows I usually use threads (which "
"work very, very well) with my sockets."
msgstr ""
#~ msgid "Abstract"
#~ msgstr "Résumé"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,18 +21,10 @@ msgstr ""
msgid "Sorting HOW TO"
msgstr ""
#: ../Doc/howto/sorting.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/sorting.rst:6
msgid "Andrew Dalke and Raymond Hettinger"
msgstr ""
#: ../Doc/howto/sorting.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/sorting.rst:7
msgid "0.1"
msgstr ""
@ -319,3 +311,6 @@ msgid ""
"grades are stored in a dictionary, they can be used to sort a separate list "
"of student names:"
msgstr ""
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Unicode HOWTO"
msgstr ""
#: ../Doc/howto/unicode.rst:0
msgid "Release"
msgstr "Version"
#: ../Doc/howto/unicode.rst:7
msgid "1.12"
msgstr ""
@ -910,3 +906,6 @@ msgid ""
"Gedminas, Kent Johnson, Ken Krugler, Marc-André Lemburg, Martin von Löwis, "
"Terry J. Reedy, Chad Whitacre."
msgstr ""
#~ msgid "Release"
#~ msgstr "Version"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "HOWTO Fetch Internet Resources Using The urllib Package"
msgstr ""
#: ../Doc/howto/urllib2.rst:0
msgid "Author"
msgstr ""
#: ../Doc/howto/urllib2.rst:7
msgid "`Michael Foord <http://www.voidspace.org.uk/python/index.shtml>`_"
msgstr ""
@ -40,6 +36,10 @@ msgstr ""
msgid "Introduction"
msgstr "Introduction"
#: ../Doc/howto/urllib2.rst:0
msgid "Related Articles"
msgstr ""
#: ../Doc/howto/urllib2.rst:22
msgid ""
"You may also find useful the following article on fetching web resources "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-05-27 10:29+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Installing Python Modules (Legacy version)"
msgstr "installation des modules python (Version historique)"
#: ../Doc/install/index.rst:0
msgid "Author"
msgstr ""
#: ../Doc/install/index.rst:9
msgid "Greg Ward"
msgstr "Greg Ward"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Installing Python Modules"
msgstr "L'installation de modules Python"
#: ../Doc/installing/index.rst:0
msgid "Email"
msgstr ""
#: ../Doc/installing/index.rst:9
msgid "distutils-sig@python.org"
msgstr "distutils-sig@python.org"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -29,6 +29,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/argparse.py`"
msgstr "**Code source:** :source:`Lib/argparse.py`"
#: ../Doc/library/argparse.rst:0
msgid "Tutorial"
msgstr "Tutoriel"
#: ../Doc/library/argparse.rst:18
msgid ""
"This page contains the API reference information. For a more gentle "
@ -1703,6 +1707,3 @@ msgid ""
"``parser.add_argument('--version', action='version', version='<the "
"version>')``."
msgstr ""
#~ msgid "Tutorial"
#~ msgstr "Tutoriel"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -369,55 +369,27 @@ msgstr ""
msgid "The default mappings are:"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "subject"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:324
msgid "UniqueUnstructuredHeader"
msgstr "UniqueUnstructuredHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "date"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:325
#: ../Doc/library/email.headerregistry.rst:327
msgid "UniqueDateHeader"
msgstr "UniqueDateHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-date"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:326
msgid "DateHeader"
msgstr "DateHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "orig-date"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "sender"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:328
msgid "UniqueSingleAddressHeader"
msgstr "UniqueSingleAddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-sender"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:329
msgid "SingleAddressHeader"
msgstr "SingleAddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "to"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:330
#: ../Doc/library/email.headerregistry.rst:332
#: ../Doc/library/email.headerregistry.rst:334
@ -425,36 +397,12 @@ msgstr ""
msgid "UniqueAddressHeader"
msgstr "UniqueAddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-to"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:331
#: ../Doc/library/email.headerregistry.rst:333
#: ../Doc/library/email.headerregistry.rst:335
msgid "AddressHeader"
msgstr "AddressHeader"
#: ../Doc/library/email.headerregistry.rst:0
msgid "cc"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-cc"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "from"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "resent-from"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:0
msgid "reply-to"
msgstr ""
#: ../Doc/library/email.headerregistry.rst:338
msgid "``HeaderRegistry`` has the following methods:"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -435,18 +435,10 @@ msgstr ""
msgid "The complete signature is::"
msgstr ""
#: ../Doc/library/enum.rst:0
msgid "value"
msgstr "valeur"
#: ../Doc/library/enum.rst:505
msgid "What the new Enum class will record as its name."
msgstr ""
#: ../Doc/library/enum.rst:0
msgid "names"
msgstr ""
#: ../Doc/library/enum.rst:507
msgid ""
"The Enum members. This can be a whitespace or comma separated string "
@ -465,34 +457,18 @@ msgstr ""
msgid "or a mapping::"
msgstr ""
#: ../Doc/library/enum.rst:0
msgid "module"
msgstr "module"
#: ../Doc/library/enum.rst:524
msgid "name of module where new Enum class can be found."
msgstr ""
#: ../Doc/library/enum.rst:0
msgid "qualname"
msgstr ""
#: ../Doc/library/enum.rst:526
msgid "where in module new Enum class can be found."
msgstr ""
#: ../Doc/library/enum.rst:0
msgid "type"
msgstr "type"
#: ../Doc/library/enum.rst:528
msgid "type to mix in to new Enum class."
msgstr ""
#: ../Doc/library/enum.rst:0
msgid "start"
msgstr ""
#: ../Doc/library/enum.rst:530
msgid "number to start counting at if only names are passed in."
msgstr ""
@ -954,3 +930,12 @@ msgid ""
"If a combination of Flag members is not named, the :func:`repr` will include "
"all named flags and all named combinations of flags that are in the value::"
msgstr ""
#~ msgid "value"
#~ msgstr "valeur"
#~ msgid "module"
#~ msgstr "module"
#~ msgid "type"
#~ msgstr "type"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 01:00+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -582,24 +582,24 @@ msgid ""
"sent to users and later verify them to make sure they weren't tampered with::"
msgstr ""
#: ../Doc/library/hashlib.rst:523
#: ../Doc/library/hashlib.rst:524
msgid ""
"Even though there's a native keyed hashing mode, BLAKE2 can, of course, be "
"used in HMAC construction with :mod:`hmac` module::"
msgstr ""
#: ../Doc/library/hashlib.rst:534
#: ../Doc/library/hashlib.rst:535
msgid "Randomized hashing"
msgstr ""
#: ../Doc/library/hashlib.rst:536
#: ../Doc/library/hashlib.rst:537
msgid ""
"By setting *salt* parameter users can introduce randomization to the hash "
"function. Randomized hashing is useful for protecting against collision "
"attacks on the hash function used in digital signatures."
msgstr ""
#: ../Doc/library/hashlib.rst:540
#: ../Doc/library/hashlib.rst:541
msgid ""
"Randomized hashing is designed for situations where one party, the message "
"preparer, generates all or part of a message to be signed by a second party, "
@ -620,37 +620,37 @@ msgid ""
"message are prepared by the signer."
msgstr ""
#: ../Doc/library/hashlib.rst:559
#: ../Doc/library/hashlib.rst:560
msgid ""
"(`NIST SP-800-106 \"Randomized Hashing for Digital Signatures\" <http://csrc."
"nist.gov/publications/nistpubs/800-106/NIST-SP-800-106.pdf>`_)"
msgstr ""
#: ../Doc/library/hashlib.rst:562
#: ../Doc/library/hashlib.rst:563
msgid ""
"In BLAKE2 the salt is processed as a one-time input to the hash function "
"during initialization, rather than as an input to each compression function."
msgstr ""
#: ../Doc/library/hashlib.rst:567
#: ../Doc/library/hashlib.rst:568
msgid ""
"*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose "
"cryptographic hash function, such as SHA-256, is not suitable for hashing "
"passwords. See `BLAKE2 FAQ <https://blake2.net/#qa>`_ for more information."
msgstr ""
#: ../Doc/library/hashlib.rst:590
#: ../Doc/library/hashlib.rst:591
msgid "Personalization"
msgstr ""
#: ../Doc/library/hashlib.rst:592
#: ../Doc/library/hashlib.rst:593
msgid ""
"Sometimes it is useful to force hash function to produce different digests "
"for the same input for different purposes. Quoting the authors of the Skein "
"hash function:"
msgstr ""
#: ../Doc/library/hashlib.rst:596
#: ../Doc/library/hashlib.rst:597
msgid ""
"We recommend that all application designers seriously consider doing this; "
"we have seen many protocols where a hash that is computed in one part of the "
@ -660,41 +660,41 @@ msgid ""
"hash function used in the protocol summarily stops this type of attack."
msgstr ""
#: ../Doc/library/hashlib.rst:603
#: ../Doc/library/hashlib.rst:604
msgid ""
"(`The Skein Hash Function Family <http://www.skein-hash.info/sites/default/"
"files/skein1.3.pdf>`_, p. 21)"
msgstr ""
#: ../Doc/library/hashlib.rst:607
#: ../Doc/library/hashlib.rst:608
msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::"
msgstr ""
#: ../Doc/library/hashlib.rst:621
#: ../Doc/library/hashlib.rst:622
msgid ""
"Personalization together with the keyed mode can also be used to derive "
"different keys from a single one."
msgstr ""
#: ../Doc/library/hashlib.rst:635
#: ../Doc/library/hashlib.rst:636
msgid "Tree mode"
msgstr ""
#: ../Doc/library/hashlib.rst:637
#: ../Doc/library/hashlib.rst:638
msgid "Here's an example of hashing a minimal tree with two leaf nodes::"
msgstr ""
#: ../Doc/library/hashlib.rst:643
#: ../Doc/library/hashlib.rst:644
msgid ""
"This example uses 64-byte internal digests, and returns the 32-byte final "
"digest::"
msgstr ""
#: ../Doc/library/hashlib.rst:673
#: ../Doc/library/hashlib.rst:674
msgid "Credits"
msgstr ""
#: ../Doc/library/hashlib.rst:675
#: ../Doc/library/hashlib.rst:676
msgid ""
"BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko "
"Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ "
@ -702,102 +702,102 @@ msgid ""
"*Raphael C.-W. Phan*."
msgstr ""
#: ../Doc/library/hashlib.rst:680
#: ../Doc/library/hashlib.rst:681
msgid ""
"It uses core algorithm from ChaCha_ cipher designed by *Daniel J. "
"Bernstein*."
msgstr ""
#: ../Doc/library/hashlib.rst:682
#: ../Doc/library/hashlib.rst:683
msgid ""
"The stdlib implementation is based on pyblake2_ module. It was written by "
"*Dmitry Chestnykh* based on C implementation written by *Samuel Neves*. The "
"documentation was copied from pyblake2_ and written by *Dmitry Chestnykh*."
msgstr ""
#: ../Doc/library/hashlib.rst:686
#: ../Doc/library/hashlib.rst:687
msgid "The C code was partly rewritten for Python by *Christian Heimes*."
msgstr ""
#: ../Doc/library/hashlib.rst:688
#: ../Doc/library/hashlib.rst:689
msgid ""
"The following public domain dedication applies for both C hash function "
"implementation, extension code, and this documentation:"
msgstr ""
#: ../Doc/library/hashlib.rst:691
#: ../Doc/library/hashlib.rst:692
msgid ""
"To the extent possible under law, the author(s) have dedicated all copyright "
"and related and neighboring rights to this software to the public domain "
"worldwide. This software is distributed without any warranty."
msgstr ""
#: ../Doc/library/hashlib.rst:695
#: ../Doc/library/hashlib.rst:696
msgid ""
"You should have received a copy of the CC0 Public Domain Dedication along "
"with this software. If not, see http://creativecommons.org/publicdomain/"
"zero/1.0/."
msgstr ""
#: ../Doc/library/hashlib.rst:699
#: ../Doc/library/hashlib.rst:700
msgid ""
"The following people have helped with development or contributed their "
"changes to the project and the public domain according to the Creative "
"Commons Public Domain Dedication 1.0 Universal:"
msgstr ""
#: ../Doc/library/hashlib.rst:703
#: ../Doc/library/hashlib.rst:704
msgid "*Alexandr Sokolovskiy*"
msgstr ""
#: ../Doc/library/hashlib.rst:718
#: ../Doc/library/hashlib.rst:719
msgid "Module :mod:`hmac`"
msgstr ""
#: ../Doc/library/hashlib.rst:718
#: ../Doc/library/hashlib.rst:719
msgid "A module to generate message authentication codes using hashes."
msgstr ""
#: ../Doc/library/hashlib.rst:721
#: ../Doc/library/hashlib.rst:722
msgid "Module :mod:`base64`"
msgstr "Module :mod:`base64`"
#: ../Doc/library/hashlib.rst:721
#: ../Doc/library/hashlib.rst:722
msgid "Another way to encode binary hashes for non-binary environments."
msgstr ""
#: ../Doc/library/hashlib.rst:724
#: ../Doc/library/hashlib.rst:725
msgid "https://blake2.net"
msgstr ""
#: ../Doc/library/hashlib.rst:724
#: ../Doc/library/hashlib.rst:725
msgid "Official BLAKE2 website."
msgstr ""
#: ../Doc/library/hashlib.rst:727
#: ../Doc/library/hashlib.rst:728
msgid "http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf"
msgstr ""
#: ../Doc/library/hashlib.rst:727
#: ../Doc/library/hashlib.rst:728
msgid "The FIPS 180-2 publication on Secure Hash Algorithms."
msgstr ""
#: ../Doc/library/hashlib.rst:731
#: ../Doc/library/hashlib.rst:732
msgid ""
"https://en.wikipedia.org/wiki/"
"Cryptographic_hash_function#Cryptographic_hash_algorithms"
msgstr ""
#: ../Doc/library/hashlib.rst:730
#: ../Doc/library/hashlib.rst:731
msgid ""
"Wikipedia article with information on which algorithms have known issues and "
"what that means regarding their use."
msgstr ""
#: ../Doc/library/hashlib.rst:733
#: ../Doc/library/hashlib.rst:734
msgid "https://www.ietf.org/rfc/rfc2898.txt"
msgstr ""
#: ../Doc/library/hashlib.rst:734
#: ../Doc/library/hashlib.rst:735
msgid "PKCS #5: Password-Based Cryptography Specification Version 2.0"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -222,28 +222,28 @@ msgstr ""
msgid "Redo the last undone change to the current window."
msgstr ""
#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:323
#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:325
msgid "Cut"
msgstr ""
#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:323
#: ../Doc/library/idle.rst:112 ../Doc/library/idle.rst:325
msgid ""
"Copy selection into the system-wide clipboard; then delete the selection."
msgstr ""
#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:326
#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:328
msgid "Copy"
msgstr ""
#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:326
#: ../Doc/library/idle.rst:115 ../Doc/library/idle.rst:328
msgid "Copy selection into the system-wide clipboard."
msgstr ""
#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:329
#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:331
msgid "Paste"
msgstr ""
#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:329
#: ../Doc/library/idle.rst:118 ../Doc/library/idle.rst:331
msgid "Insert contents of the system-wide clipboard into the current window."
msgstr ""
@ -428,32 +428,34 @@ msgid ""
"will be formatted to less than N columns, where N defaults to 72."
msgstr ""
#: ../Doc/library/idle.rst:193
#: ../Doc/library/idle.rst:195
msgid "Strip trailing whitespace"
msgstr ""
#: ../Doc/library/idle.rst:193
msgid ""
"Remove any space characters after the last non-space character of a line."
"Remove trailing space and other whitespace characters after the last non-"
"whitespace character of a line by applying str.rstrip to each line, "
"including lines within multiline strings."
msgstr ""
#: ../Doc/library/idle.rst:199
#: ../Doc/library/idle.rst:201
msgid "Run menu (Editor window only)"
msgstr ""
#: ../Doc/library/idle.rst:202
#: ../Doc/library/idle.rst:204
msgid "Python Shell"
msgstr ""
#: ../Doc/library/idle.rst:202
#: ../Doc/library/idle.rst:204
msgid "Open or wake up the Python Shell window."
msgstr ""
#: ../Doc/library/idle.rst:209
#: ../Doc/library/idle.rst:211
msgid "Check Module"
msgstr ""
#: ../Doc/library/idle.rst:205
#: ../Doc/library/idle.rst:207
msgid ""
"Check the syntax of the module currently open in the Editor window. If the "
"module has not been saved IDLE will either prompt the user to save or "
@ -462,11 +464,11 @@ msgid ""
"window."
msgstr ""
#: ../Doc/library/idle.rst:218
#: ../Doc/library/idle.rst:220
msgid "Run Module"
msgstr ""
#: ../Doc/library/idle.rst:212
#: ../Doc/library/idle.rst:214
msgid ""
"Do Check Module (above). If no error, restart the shell to clean the "
"environment, then execute the module. Output is displayed in the Shell "
@ -476,43 +478,43 @@ msgid ""
"similar to executing a file with ``python -i file`` at a command line."
msgstr ""
#: ../Doc/library/idle.rst:221
#: ../Doc/library/idle.rst:223
msgid "Shell menu (Shell window only)"
msgstr ""
#: ../Doc/library/idle.rst:224
#: ../Doc/library/idle.rst:226
msgid "View Last Restart"
msgstr ""
#: ../Doc/library/idle.rst:224
#: ../Doc/library/idle.rst:226
msgid "Scroll the shell window to the last Shell restart."
msgstr ""
#: ../Doc/library/idle.rst:227
#: ../Doc/library/idle.rst:229
msgid "Restart Shell"
msgstr ""
#: ../Doc/library/idle.rst:227
#: ../Doc/library/idle.rst:229
msgid "Restart the shell to clean the environment."
msgstr ""
#: ../Doc/library/idle.rst:230
#: ../Doc/library/idle.rst:232
msgid "Interrupt Execution"
msgstr ""
#: ../Doc/library/idle.rst:230
#: ../Doc/library/idle.rst:232
msgid "Stop a running program."
msgstr ""
#: ../Doc/library/idle.rst:233
#: ../Doc/library/idle.rst:235
msgid "Debug menu (Shell window only)"
msgstr ""
#: ../Doc/library/idle.rst:240
#: ../Doc/library/idle.rst:242
msgid "Go to File/Line"
msgstr ""
#: ../Doc/library/idle.rst:236
#: ../Doc/library/idle.rst:238
msgid ""
"Look on the current line. with the cursor, and the line above for a filename "
"and line number. If found, open the file if not already open, and show the "
@ -521,45 +523,45 @@ msgid ""
"Shell window and Output windows."
msgstr ""
#: ../Doc/library/idle.rst:249
#: ../Doc/library/idle.rst:251
msgid "Debugger (toggle)"
msgstr ""
#: ../Doc/library/idle.rst:247
#: ../Doc/library/idle.rst:249
msgid ""
"When activated, code entered in the Shell or run from an Editor will run "
"under the debugger. In the Editor, breakpoints can be set with the context "
"menu. This feature is still incomplete and somewhat experimental."
msgstr ""
#: ../Doc/library/idle.rst:253
#: ../Doc/library/idle.rst:255
msgid "Stack Viewer"
msgstr ""
#: ../Doc/library/idle.rst:252
#: ../Doc/library/idle.rst:254
msgid ""
"Show the stack traceback of the last exception in a tree widget, with access "
"to locals and globals."
msgstr ""
#: ../Doc/library/idle.rst:256
#: ../Doc/library/idle.rst:258
msgid "Auto-open Stack Viewer"
msgstr ""
#: ../Doc/library/idle.rst:256
#: ../Doc/library/idle.rst:258
msgid ""
"Toggle automatically opening the stack viewer on an unhandled exception."
msgstr ""
#: ../Doc/library/idle.rst:259
#: ../Doc/library/idle.rst:261
msgid "Options menu (Shell and Editor)"
msgstr ""
#: ../Doc/library/idle.rst:271
#: ../Doc/library/idle.rst:273
msgid "Configure IDLE"
msgstr ""
#: ../Doc/library/idle.rst:262
#: ../Doc/library/idle.rst:264
msgid ""
"Open a configuration dialog and change preferences for the following: fonts, "
"indentation, keybindings, text color themes, startup windows and size, "
@ -569,101 +571,101 @@ msgid ""
"new custom theme."
msgstr ""
#: ../Doc/library/idle.rst:269
#: ../Doc/library/idle.rst:271
msgid ""
"Non-default user settings are saved in a .idlerc directory in the user's "
"home directory. Problems caused by bad user configuration files are solved "
"by editing or deleting one or more of the files in .idlerc."
msgstr ""
#: ../Doc/library/idle.rst:275
#: ../Doc/library/idle.rst:277
msgid "Code Context (toggle)(Editor Window only)"
msgstr ""
#: ../Doc/library/idle.rst:274
#: ../Doc/library/idle.rst:276
msgid ""
"Open a pane at the top of the edit window which shows the block context of "
"the code which has scrolled above the top of the window."
msgstr ""
#: ../Doc/library/idle.rst:278
#: ../Doc/library/idle.rst:280
msgid "Window menu (Shell and Editor)"
msgstr ""
#: ../Doc/library/idle.rst:283
#: ../Doc/library/idle.rst:285
msgid "Zoom Height"
msgstr ""
#: ../Doc/library/idle.rst:281
#: ../Doc/library/idle.rst:283
msgid ""
"Toggles the window between normal size and maximum height. The initial size "
"defaults to 40 lines by 80 chars unless changed on the General tab of the "
"Configure IDLE dialog."
msgstr ""
#: ../Doc/library/idle.rst:285
#: ../Doc/library/idle.rst:287
msgid ""
"The rest of this menu lists the names of all open windows; select one to "
"bring it to the foreground (deiconifying it if necessary)."
msgstr ""
#: ../Doc/library/idle.rst:289
#: ../Doc/library/idle.rst:291
msgid "Help menu (Shell and Editor)"
msgstr ""
#: ../Doc/library/idle.rst:292
#: ../Doc/library/idle.rst:294
msgid "About IDLE"
msgstr ""
#: ../Doc/library/idle.rst:292
#: ../Doc/library/idle.rst:294
msgid "Display version, copyright, license, credits, and more."
msgstr ""
#: ../Doc/library/idle.rst:296
#: ../Doc/library/idle.rst:298
msgid "IDLE Help"
msgstr ""
#: ../Doc/library/idle.rst:295
#: ../Doc/library/idle.rst:297
msgid ""
"Display a help file for IDLE detailing the menu options, basic editing and "
"navigation, and other tips."
msgstr ""
#: ../Doc/library/idle.rst:300
#: ../Doc/library/idle.rst:302
msgid "Python Docs"
msgstr ""
#: ../Doc/library/idle.rst:299
#: ../Doc/library/idle.rst:301
msgid ""
"Access local Python documentation, if installed, or start a web browser and "
"open docs.python.org showing the latest Python documentation."
msgstr ""
#: ../Doc/library/idle.rst:303
#: ../Doc/library/idle.rst:305
msgid "Turtle Demo"
msgstr ""
#: ../Doc/library/idle.rst:303
#: ../Doc/library/idle.rst:305
msgid "Run the turtledemo module with example python code and turtle drawings."
msgstr ""
#: ../Doc/library/idle.rst:305
#: ../Doc/library/idle.rst:307
msgid ""
"Additional help sources may be added here with the Configure IDLE dialog "
"under the General tab."
msgstr ""
#: ../Doc/library/idle.rst:317
#: ../Doc/library/idle.rst:319
msgid "Context Menus"
msgstr ""
#: ../Doc/library/idle.rst:319
#: ../Doc/library/idle.rst:321
msgid ""
"Open a context menu by right-clicking in a window (Control-click on OS X). "
"Context menus have the standard clipboard functions also on the Edit menu."
msgstr ""
#: ../Doc/library/idle.rst:331
#: ../Doc/library/idle.rst:333
msgid ""
"Editor windows also have breakpoint functions. Lines with a breakpoint set "
"are specially marked. Breakpoints only have an effect when running under "
@ -671,121 +673,121 @@ msgid ""
"directory."
msgstr ""
#: ../Doc/library/idle.rst:336
#: ../Doc/library/idle.rst:338
msgid "Set Breakpoint"
msgstr ""
#: ../Doc/library/idle.rst:336
#: ../Doc/library/idle.rst:338
msgid "Set a breakpoint on the current line."
msgstr ""
#: ../Doc/library/idle.rst:339
#: ../Doc/library/idle.rst:341
msgid "Clear Breakpoint"
msgstr ""
#: ../Doc/library/idle.rst:339
#: ../Doc/library/idle.rst:341
msgid "Clear the breakpoint on that line."
msgstr ""
#: ../Doc/library/idle.rst:341
#: ../Doc/library/idle.rst:343
msgid "Shell and Output windows have the following."
msgstr ""
#: ../Doc/library/idle.rst:345
#: ../Doc/library/idle.rst:347
msgid "Go to file/line"
msgstr ""
#: ../Doc/library/idle.rst:344
#: ../Doc/library/idle.rst:346
msgid "Same as in Debug menu."
msgstr ""
#: ../Doc/library/idle.rst:348
#: ../Doc/library/idle.rst:350
msgid "Editing and navigation"
msgstr ""
#: ../Doc/library/idle.rst:350
#: ../Doc/library/idle.rst:352
msgid ""
"In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix "
"and the :kbd:`Command` key on Mac OSX."
msgstr ""
#: ../Doc/library/idle.rst:353
#: ../Doc/library/idle.rst:355
msgid ":kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right"
msgstr ""
#: ../Doc/library/idle.rst:355
#: ../Doc/library/idle.rst:357
msgid ""
":kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right"
msgstr ""
#: ../Doc/library/idle.rst:357
#: ../Doc/library/idle.rst:359
msgid "Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around"
msgstr ""
#: ../Doc/library/idle.rst:359
#: ../Doc/library/idle.rst:361
msgid ":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words"
msgstr ""
#: ../Doc/library/idle.rst:361
#: ../Doc/library/idle.rst:363
msgid ":kbd:`Home`/:kbd:`End` go to begin/end of line"
msgstr ""
#: ../Doc/library/idle.rst:363
#: ../Doc/library/idle.rst:365
msgid ":kbd:`C-Home`/:kbd:`C-End` go to begin/end of file"
msgstr ""
#: ../Doc/library/idle.rst:365
#: ../Doc/library/idle.rst:367
msgid "Some useful Emacs bindings are inherited from Tcl/Tk:"
msgstr ""
#: ../Doc/library/idle.rst:367
#: ../Doc/library/idle.rst:369
msgid ":kbd:`C-a` beginning of line"
msgstr ""
#: ../Doc/library/idle.rst:369
#: ../Doc/library/idle.rst:371
msgid ":kbd:`C-e` end of line"
msgstr ""
#: ../Doc/library/idle.rst:371
#: ../Doc/library/idle.rst:373
msgid ":kbd:`C-k` kill line (but doesn't put it in clipboard)"
msgstr ""
#: ../Doc/library/idle.rst:373
#: ../Doc/library/idle.rst:375
msgid ":kbd:`C-l` center window around the insertion point"
msgstr ""
#: ../Doc/library/idle.rst:375
#: ../Doc/library/idle.rst:377
msgid ""
":kbd:`C-b` go backward one character without deleting (usually you can also "
"use the cursor key for this)"
msgstr ""
#: ../Doc/library/idle.rst:378
#: ../Doc/library/idle.rst:380
msgid ""
":kbd:`C-f` go forward one character without deleting (usually you can also "
"use the cursor key for this)"
msgstr ""
#: ../Doc/library/idle.rst:381
#: ../Doc/library/idle.rst:383
msgid ""
":kbd:`C-p` go up one line (usually you can also use the cursor key for this)"
msgstr ""
#: ../Doc/library/idle.rst:384
#: ../Doc/library/idle.rst:386
msgid ":kbd:`C-d` delete next character"
msgstr ""
#: ../Doc/library/idle.rst:386
#: ../Doc/library/idle.rst:388
msgid ""
"Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may "
"work. Keybindings are selected in the Configure IDLE dialog."
msgstr ""
#: ../Doc/library/idle.rst:391
#: ../Doc/library/idle.rst:393
msgid "Automatic indentation"
msgstr ""
#: ../Doc/library/idle.rst:393
#: ../Doc/library/idle.rst:395
msgid ""
"After a block-opening statement, the next line is indented by 4 spaces (in "
"the Python Shell window by one tab). After certain keywords (break, return "
@ -795,21 +797,21 @@ msgid ""
"tabs are restricted to four spaces due to Tcl/Tk limitations."
msgstr ""
#: ../Doc/library/idle.rst:400
#: ../Doc/library/idle.rst:402
msgid "See also the indent/dedent region commands in the edit menu."
msgstr ""
#: ../Doc/library/idle.rst:403
#: ../Doc/library/idle.rst:405
msgid "Completions"
msgstr ""
#: ../Doc/library/idle.rst:405
#: ../Doc/library/idle.rst:407
msgid ""
"Completions are supplied for functions, classes, and attributes of classes, "
"both built-in and user-defined. Completions are also provided for filenames."
msgstr ""
#: ../Doc/library/idle.rst:409
#: ../Doc/library/idle.rst:411
msgid ""
"The AutoCompleteWindow (ACW) will open after a predefined delay (default is "
"two seconds) after a '.' or (in a string) an os.sep is typed. If after one "
@ -817,13 +819,13 @@ msgid ""
"ACW will open immediately if a possible continuation is found."
msgstr ""
#: ../Doc/library/idle.rst:414
#: ../Doc/library/idle.rst:416
msgid ""
"If there is only one possible completion for the characters entered, a :kbd:"
"`Tab` will supply that completion without opening the ACW."
msgstr ""
#: ../Doc/library/idle.rst:417
#: ../Doc/library/idle.rst:419
msgid ""
"'Show Completions' will force open a completions window, by default the :kbd:"
"`C-space` will open a completions window. In an empty string, this will "
@ -833,7 +835,7 @@ msgid ""
"the ACW will attempt to be more specific."
msgstr ""
#: ../Doc/library/idle.rst:424
#: ../Doc/library/idle.rst:426
msgid ""
"If a string of characters is typed, the ACW selection will jump to the entry "
"most closely matching those characters. Entering a :kbd:`tab` will cause "
@ -843,18 +845,18 @@ msgid ""
"and the scroll wheel all operate on the ACW."
msgstr ""
#: ../Doc/library/idle.rst:431
#: ../Doc/library/idle.rst:433
msgid ""
"\"Hidden\" attributes can be accessed by typing the beginning of hidden name "
"after a '.', e.g. '_'. This allows access to modules with ``__all__`` set, "
"or to class-private attributes."
msgstr ""
#: ../Doc/library/idle.rst:435
#: ../Doc/library/idle.rst:437
msgid "Completions and the 'Expand Word' facility can save a lot of typing!"
msgstr ""
#: ../Doc/library/idle.rst:437
#: ../Doc/library/idle.rst:439
msgid ""
"Completions are currently limited to those in the namespaces. Names in an "
"Editor window which are not via ``__main__`` and :data:`sys.modules` will "
@ -863,17 +865,17 @@ msgid ""
"so much can be found by default, e.g. the re module."
msgstr ""
#: ../Doc/library/idle.rst:443
#: ../Doc/library/idle.rst:445
msgid ""
"If you don't like the ACW popping up unbidden, simply make the delay longer "
"or disable the extension."
msgstr ""
#: ../Doc/library/idle.rst:447
#: ../Doc/library/idle.rst:449
msgid "Calltips"
msgstr ""
#: ../Doc/library/idle.rst:449
#: ../Doc/library/idle.rst:451
msgid ""
"A calltip is shown when one types :kbd:`(` after the name of an *accessible* "
"function. A name expression may include dots and subscripts. A calltip "
@ -882,7 +884,7 @@ msgid ""
"definition, the menu or shortcut display a calltip."
msgstr ""
#: ../Doc/library/idle.rst:455
#: ../Doc/library/idle.rst:457
msgid ""
"A calltip consists of the function signature and the first line of the "
"docstring. For builtins without an accessible signature, the calltip "
@ -890,14 +892,14 @@ msgid ""
"details may change."
msgstr ""
#: ../Doc/library/idle.rst:460
#: ../Doc/library/idle.rst:462
msgid ""
"The set of *accessible* functions depends on what modules have been imported "
"into the user process, including those imported by Idle itself, and what "
"definitions have been run, all since the last restart."
msgstr ""
#: ../Doc/library/idle.rst:464
#: ../Doc/library/idle.rst:466
msgid ""
"For example, restart the Shell and enter ``itertools.count(``. A calltip "
"appears because Idle imports itertools into the user process for its own "
@ -906,53 +908,53 @@ msgid ""
"``import turtle`` and then ``turtle.write(`` will work."
msgstr ""
#: ../Doc/library/idle.rst:470
#: ../Doc/library/idle.rst:472
msgid ""
"In an editor, import statements have no effect until one runs the file. One "
"might want to run a file after writing the import statements at the top, or "
"immediately run an existing file before editing."
msgstr ""
#: ../Doc/library/idle.rst:475
#: ../Doc/library/idle.rst:477
msgid "Python Shell window"
msgstr ""
#: ../Doc/library/idle.rst:477
#: ../Doc/library/idle.rst:479
msgid ":kbd:`C-c` interrupts executing command"
msgstr ""
#: ../Doc/library/idle.rst:479
#: ../Doc/library/idle.rst:481
msgid ""
":kbd:`C-d` sends end-of-file; closes window if typed at a ``>>>`` prompt"
msgstr ""
#: ../Doc/library/idle.rst:481
#: ../Doc/library/idle.rst:483
msgid ":kbd:`Alt-/` (Expand word) is also useful to reduce typing"
msgstr ""
#: ../Doc/library/idle.rst:483
#: ../Doc/library/idle.rst:485
msgid "Command history"
msgstr ""
#: ../Doc/library/idle.rst:485
#: ../Doc/library/idle.rst:487
msgid ""
":kbd:`Alt-p` retrieves previous command matching what you have typed. On OS "
"X use :kbd:`C-p`."
msgstr ""
#: ../Doc/library/idle.rst:488
#: ../Doc/library/idle.rst:490
msgid ":kbd:`Alt-n` retrieves next. On OS X use :kbd:`C-n`."
msgstr ""
#: ../Doc/library/idle.rst:490
#: ../Doc/library/idle.rst:492
msgid ":kbd:`Return` while on any previous command retrieves that command"
msgstr ""
#: ../Doc/library/idle.rst:494
#: ../Doc/library/idle.rst:496
msgid "Text colors"
msgstr ""
#: ../Doc/library/idle.rst:496
#: ../Doc/library/idle.rst:498
msgid ""
"Idle defaults to black on white text, but colors text with special meanings. "
"For the shell, these are shell output, shell error, user output, and user "
@ -962,7 +964,7 @@ msgid ""
"(when present), found text (when possible), and selected text."
msgstr ""
#: ../Doc/library/idle.rst:503
#: ../Doc/library/idle.rst:505
msgid ""
"Text coloring is done in the background, so uncolorized text is occasionally "
"visible. To change the color scheme, use the Configure IDLE dialog "
@ -970,11 +972,11 @@ msgid ""
"and text in popups and dialogs is not user-configurable."
msgstr ""
#: ../Doc/library/idle.rst:510
#: ../Doc/library/idle.rst:512
msgid "Startup and code execution"
msgstr ""
#: ../Doc/library/idle.rst:512
#: ../Doc/library/idle.rst:514
msgid ""
"Upon startup with the ``-s`` option, IDLE will execute the file referenced "
"by the environment variables :envvar:`IDLESTARTUP` or :envvar:"
@ -986,7 +988,7 @@ msgid ""
"modules."
msgstr ""
#: ../Doc/library/idle.rst:520
#: ../Doc/library/idle.rst:522
msgid ""
"In addition, ``Tk`` also loads a startup file if it is present. Note that "
"the Tk file is loaded unconditionally. This additional file is ``.Idle.py`` "
@ -995,15 +997,15 @@ msgid ""
"importing functions to be used from IDLE's Python shell."
msgstr ""
#: ../Doc/library/idle.rst:528
#: ../Doc/library/idle.rst:530
msgid "Command line usage"
msgstr ""
#: ../Doc/library/idle.rst:544
#: ../Doc/library/idle.rst:546
msgid "If there are arguments:"
msgstr ""
#: ../Doc/library/idle.rst:546
#: ../Doc/library/idle.rst:548
msgid ""
"If ``-``, ``-c``, or ``r`` is used, all arguments are placed in ``sys."
"argv[1:...]`` and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-r'``. "
@ -1011,17 +1013,17 @@ msgid ""
"dialog."
msgstr ""
#: ../Doc/library/idle.rst:551
#: ../Doc/library/idle.rst:553
msgid ""
"Otherwise, arguments are files opened for editing and ``sys.argv`` reflects "
"the arguments passed to IDLE itself."
msgstr ""
#: ../Doc/library/idle.rst:556
#: ../Doc/library/idle.rst:558
msgid "Startup failure"
msgstr ""
#: ../Doc/library/idle.rst:558
#: ../Doc/library/idle.rst:560
msgid ""
"IDLE uses a socket to communicate between the IDLE GUI process and the user "
"code execution process. A connection must be established whenever the Shell "
@ -1031,7 +1033,7 @@ msgid ""
"user here. It then exits."
msgstr ""
#: ../Doc/library/idle.rst:565
#: ../Doc/library/idle.rst:567
msgid ""
"A common cause of failure is a user-written file with the same name as a "
"standard library module, such as *random.py* and *tkinter.py*. When such a "
@ -1040,7 +1042,7 @@ msgid ""
"file."
msgstr ""
#: ../Doc/library/idle.rst:571
#: ../Doc/library/idle.rst:573
msgid ""
"Though less common than in the past, an antivirus or firewall program may "
"stop the connection. If the program cannot be taught to allow the "
@ -1050,7 +1052,7 @@ msgid ""
"connections."
msgstr ""
#: ../Doc/library/idle.rst:578
#: ../Doc/library/idle.rst:580
msgid ""
"Python installation issues occasionally stop IDLE: multiple versions can "
"clash, or a single installation might need admin access. If one undo the "
@ -1058,7 +1060,7 @@ msgid ""
"completely remove Python and start over."
msgstr ""
#: ../Doc/library/idle.rst:583
#: ../Doc/library/idle.rst:585
msgid ""
"A zombie pythonw.exe process could be a problem. On Windows, use Task "
"Manager to detect and stop one. Sometimes a restart initiated by a program "
@ -1066,7 +1068,7 @@ msgid ""
"error box or Restart Shell on the Shell menu may fix a temporary problem."
msgstr ""
#: ../Doc/library/idle.rst:588
#: ../Doc/library/idle.rst:590
msgid ""
"When IDLE first starts, it attempts to read user configuration files in ~/."
"idlerc/ (~ is one's home directory). If there is a problem, an error "
@ -1076,36 +1078,36 @@ msgid ""
"be to delete one or more of the configuration files."
msgstr ""
#: ../Doc/library/idle.rst:595
#: ../Doc/library/idle.rst:597
msgid ""
"If IDLE quits with no message, and it was not started from a console, try "
"starting from a console (``python -m idlelib)`` and see if a message appears."
msgstr ""
#: ../Doc/library/idle.rst:600
#: ../Doc/library/idle.rst:602
msgid "IDLE-console differences"
msgstr ""
#: ../Doc/library/idle.rst:602
#: ../Doc/library/idle.rst:604
msgid ""
"As much as possible, the result of executing Python code with IDLE is the "
"same as executing the same code in a console window. However, the different "
"interface and operation occasionally affect visible results. For instance, "
"``sys.modules`` starts with more entries."
"With rare exceptions, the result of executing Python code with IDLE is "
"intended to be the same as executing the same code in a console window. "
"However, the different interface and operation occasionally affect visible "
"results. For instance, ``sys.modules`` starts with more entries."
msgstr ""
#: ../Doc/library/idle.rst:607
#: ../Doc/library/idle.rst:609
msgid ""
"IDLE also replaces ``sys.stdin``, ``sys.stdout``, and ``sys.stderr`` with "
"objects that get input from and send output to the Shell window. When this "
"window has the focus, it controls the keyboard and screen. This is normally "
"objects that get input from and send output to the Shell window. When Shell "
"has the focus, it controls the keyboard and screen. This is normally "
"transparent, but functions that directly access the keyboard and screen will "
"not work. If ``sys`` is reset with ``importlib.reload(sys)``, IDLE's "
"changes are lost and things like ``input``, ``raw_input``, and ``print`` "
"will not work correctly."
msgstr ""
#: ../Doc/library/idle.rst:615
#: ../Doc/library/idle.rst:617
msgid ""
"With IDLE's Shell, one enters, edits, and recalls complete statements. Some "
"consoles only work with a single physical line at a time. IDLE uses "
@ -1113,11 +1115,43 @@ msgid ""
"defined for each statement."
msgstr ""
#: ../Doc/library/idle.rst:621
#: ../Doc/library/idle.rst:623
msgid "Developing tkinter applications"
msgstr ""
#: ../Doc/library/idle.rst:625
msgid ""
"IDLE is intentionally different from standard Python in order to facilitate "
"development of tkinter programs. Enter ``import tkinter as tk; root = tk."
"Tk()`` in standard Python and nothing appears. Enter the same in IDLE and a "
"tk window appears. In standard Python, one must also enter ``root."
"update()`` to see the window. IDLE does the equivalent in the background, "
"about 20 times a second, which is about every 50 milleseconds. Next enter "
"``b = tk.Button(root, text='button'); b.pack()``. Again, nothing visibly "
"changes in standard Python until one enters ``root.update()``."
msgstr ""
#: ../Doc/library/idle.rst:634
msgid ""
"Most tkinter programs run ``root.mainloop()``, which usually does not return "
"until the tk app is destroyed. If the program is run with ``python -i`` or "
"from an IDLE editor, a ``>>>`` shell prompt does not appear until "
"``mainloop()`` returns, at which time there is nothing left to interact with."
msgstr ""
#: ../Doc/library/idle.rst:640
msgid ""
"When running a tkinter program from an IDLE editor, one can comment out the "
"mainloop call. One then gets a shell prompt immediately and can interact "
"with the live application. One just has to remember to re-enable the "
"mainloop call when running in standard Python."
msgstr ""
#: ../Doc/library/idle.rst:646
msgid "Running without a subprocess"
msgstr ""
#: ../Doc/library/idle.rst:623
#: ../Doc/library/idle.rst:648
msgid ""
"By default, IDLE executes user code in a separate subprocess via a socket, "
"which uses the internal loopback interface. This connection is not "
@ -1125,7 +1159,7 @@ msgid ""
"firewall software complains anyway, you can ignore it."
msgstr ""
#: ../Doc/library/idle.rst:628
#: ../Doc/library/idle.rst:653
msgid ""
"If the attempt to make the socket connection fails, Idle will notify you. "
"Such failures are sometimes transient, but if persistent, the problem may be "
@ -1134,7 +1168,7 @@ msgid ""
"command line switch."
msgstr ""
#: ../Doc/library/idle.rst:634
#: ../Doc/library/idle.rst:659
msgid ""
"If IDLE is started with the -n command line switch it will run in a single "
"process and will not create the subprocess which runs the RPC Python "
@ -1148,15 +1182,15 @@ msgid ""
"at all possible."
msgstr ""
#: ../Doc/library/idle.rst:649
#: ../Doc/library/idle.rst:674
msgid "Help and preferences"
msgstr ""
#: ../Doc/library/idle.rst:652
#: ../Doc/library/idle.rst:677
msgid "Additional help sources"
msgstr ""
#: ../Doc/library/idle.rst:654
#: ../Doc/library/idle.rst:679
msgid ""
"IDLE includes a help menu entry called \"Python Docs\" that will open the "
"extensive sources of help, including tutorials, available at docs.python."
@ -1165,11 +1199,11 @@ msgid ""
"of IDLE for more information."
msgstr ""
#: ../Doc/library/idle.rst:662
#: ../Doc/library/idle.rst:687
msgid "Setting preferences"
msgstr ""
#: ../Doc/library/idle.rst:664
#: ../Doc/library/idle.rst:689
msgid ""
"The font preferences, highlighting, keys, and general preferences can be "
"changed via Configure IDLE on the Option menu. Keys can be user defined; "
@ -1177,15 +1211,15 @@ msgid ""
"custom key set in the Configure IDLE dialog under the keys tab."
msgstr ""
#: ../Doc/library/idle.rst:671
#: ../Doc/library/idle.rst:696
msgid "Extensions"
msgstr ""
#: ../Doc/library/idle.rst:673
#: ../Doc/library/idle.rst:698
msgid ""
"IDLE contains an extension facility. Preferences for extensions can be "
"changed with Configure Extensions. See the beginning of config-extensions."
"def in the idlelib directory for further information. The only current "
"default extension is zoomheight. It exists as an extension primarily to be "
"an example and for testing purposes."
"changed with the Extensions tab of the preferences dialog. See the beginning "
"of config-extensions.def in the idlelib directory for further information. "
"The only current default extension is zzdummy, an example also used for "
"testing."
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -25,6 +25,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/logging/config.py`"
msgstr ""
#: ../Doc/library/logging.config.rst:0
msgid "Important"
msgstr ""
#: ../Doc/library/logging.config.rst:14
msgid ""
"This page contains only reference information. For tutorials, please see"
@ -136,10 +140,6 @@ msgid ""
"chosen configuration)."
msgstr ""
#: ../Doc/library/logging.config.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/logging.config.rst:90
msgid ""
"A filename, or a file-like object, or an instance derived from :class:"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -25,6 +25,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/logging/handlers.py`"
msgstr ""
#: ../Doc/library/logging.handlers.rst:0
msgid "Important"
msgstr ""
#: ../Doc/library/logging.handlers.rst:14
msgid ""
"This page contains only reference information. For tutorials, please see"
@ -271,10 +275,6 @@ msgid ""
"callable (the default is ``None``), the name is returned unchanged."
msgstr ""
#: ../Doc/library/logging.handlers.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/logging.handlers.rst:231
msgid "The default name for the log file."
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 14:05+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -25,6 +25,10 @@ msgstr ""
msgid "**Source code:** :source:`Lib/logging/__init__.py`"
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "Important"
msgstr ""
#: ../Doc/library/logging.rst:16
msgid ""
"This page contains the API reference information. For tutorial information "
@ -821,10 +825,6 @@ msgid ""
"record."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/logging.rst:658
msgid ""
"The name of the logger used to log the event represented by this LogRecord. "
@ -950,7 +950,7 @@ msgstr "Format"
msgid "Description"
msgstr "Description"
#: ../Doc/library/logging.rst:742 ../Doc/library/logging.rst:0
#: ../Doc/library/logging.rst:742
msgid "args"
msgstr ""
@ -995,7 +995,7 @@ msgid ""
"time`)."
msgstr ""
#: ../Doc/library/logging.rst:756 ../Doc/library/logging.rst:0
#: ../Doc/library/logging.rst:756
msgid "exc_info"
msgstr "exc_info"
@ -1108,7 +1108,7 @@ msgid ""
"`Formatter.format` is invoked."
msgstr ""
#: ../Doc/library/logging.rst:784 ../Doc/library/logging.rst:0
#: ../Doc/library/logging.rst:784
msgid "msg"
msgstr ""
@ -1119,7 +1119,7 @@ msgid ""
"messages`)."
msgstr ""
#: ../Doc/library/logging.rst:789 ../Doc/library/logging.rst:0
#: ../Doc/library/logging.rst:789
msgid "name"
msgstr ""
@ -1660,26 +1660,14 @@ msgstr ""
msgid "The logger name."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "level"
msgstr "level"
#: ../Doc/library/logging.rst:1185
msgid "The logging level (numeric)."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "fn"
msgstr "fn"
#: ../Doc/library/logging.rst:1186
msgid "The full pathname of the file where the logging call was made."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "lno"
msgstr "lno"
#: ../Doc/library/logging.rst:1187
msgid "The line number in the file where the logging call was made."
msgstr ""
@ -1696,28 +1684,16 @@ msgstr ""
msgid "An exception tuple, or ``None``."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "func"
msgstr "func"
#: ../Doc/library/logging.rst:1191
msgid "The name of the function or method which invoked the logging call."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "sinfo"
msgstr "sinfo"
#: ../Doc/library/logging.rst:1193
msgid ""
"A stack traceback such as is provided by :func:`traceback.print_stack`, "
"showing the call hierarchy."
msgstr ""
#: ../Doc/library/logging.rst:0
msgid "kwargs"
msgstr ""
#: ../Doc/library/logging.rst:1195
msgid "Additional keyword arguments."
msgstr ""
@ -1807,3 +1783,18 @@ msgid ""
"2.1.x and 2.2.x, which do not include the :mod:`logging` package in the "
"standard library."
msgstr ""
#~ msgid "level"
#~ msgstr "level"
#~ msgid "fn"
#~ msgstr "fn"
#~ msgid "lno"
#~ msgstr "lno"
#~ msgid "func"
#~ msgstr "func"
#~ msgid "sinfo"
#~ msgstr "sinfo"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -1135,10 +1135,6 @@ msgid ""
"`setblocking` or :meth:`settimeout`."
msgstr ""
#: ../Doc/library/socket.rst:0
msgid "platform"
msgstr ""
#: ../Doc/library/socket.rst:1026
msgid "Windows"
msgstr "Windows"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-09-12 13:41+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -333,8 +333,8 @@ msgstr ""
#: ../Doc/library/ssl.rst:219
msgid ""
"The *ciphers* parameter sets the available ciphers for this SSL object. It "
"should be a string in the `OpenSSL cipher list format <https://www.openssl."
"org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`_."
"should be a string in the `OpenSSL cipher list format <https://wiki.openssl."
"org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_."
msgstr ""
#: ../Doc/library/ssl.rst:223
@ -1641,10 +1641,10 @@ msgstr ""
#: ../Doc/library/ssl.rst:1446
msgid ""
"Set the available ciphers for sockets created with this context. It should "
"be a string in the `OpenSSL cipher list format <https://www.openssl.org/docs/"
"apps/ciphers.html#CIPHER-LIST-FORMAT>`_. If no cipher can be selected "
"(because compile-time options or other configuration forbids use of all the "
"specified ciphers), an :class:`SSLError` will be raised."
"be a string in the `OpenSSL cipher list format <https://wiki.openssl.org/"
"index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_. If no cipher can be "
"selected (because compile-time options or other configuration forbids use of "
"all the specified ciphers), an :class:`SSLError` will be raised."
msgstr ""
#: ../Doc/library/ssl.rst:1454

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -35,21 +35,22 @@ msgstr ""
#: ../Doc/library/tokenize.rst:19
msgid ""
"To simplify token stream handling, all :ref:`operators` and :ref:"
"`delimiters` tokens are returned using the generic :data:`token.OP` token "
"type. The exact type can be determined by checking the ``exact_type`` "
"property on the :term:`named tuple` returned from :func:`tokenize.tokenize`."
"To simplify token stream handling, all :ref:`operator <operators>` and :ref:"
"`delimiter <delimiters>` tokens and :data:`Ellipsis` are returned using the "
"generic :data:`~token.OP` token type. The exact type can be determined by "
"checking the ``exact_type`` property on the :term:`named tuple` returned "
"from :func:`tokenize.tokenize`."
msgstr ""
#: ../Doc/library/tokenize.rst:25
#: ../Doc/library/tokenize.rst:26
msgid "Tokenizing Input"
msgstr ""
#: ../Doc/library/tokenize.rst:27
#: ../Doc/library/tokenize.rst:28
msgid "The primary entry point is a :term:`generator`:"
msgstr ""
#: ../Doc/library/tokenize.rst:31
#: ../Doc/library/tokenize.rst:32
msgid ""
"The :func:`.tokenize` generator requires one argument, *readline*, which "
"must be a callable object which provides the same interface as the :meth:`io."
@ -57,7 +58,7 @@ msgid ""
"return one line of input as bytes."
msgstr ""
#: ../Doc/library/tokenize.rst:36
#: ../Doc/library/tokenize.rst:37
msgid ""
"The generator produces 5-tuples with these members: the token type; the "
"token string; a 2-tuple ``(srow, scol)`` of ints specifying the row and "
@ -69,7 +70,7 @@ msgid ""
"end line``."
msgstr ""
#: ../Doc/library/tokenize.rst:45
#: ../Doc/library/tokenize.rst:46
msgid ""
"The returned :term:`named tuple` has an additional property named "
"``exact_type`` that contains the exact operator type for :data:`token.OP` "
@ -77,59 +78,59 @@ msgid ""
"``type`` field."
msgstr ""
#: ../Doc/library/tokenize.rst:50
#: ../Doc/library/tokenize.rst:51
msgid "Added support for named tuples."
msgstr ""
#: ../Doc/library/tokenize.rst:53
#: ../Doc/library/tokenize.rst:54
msgid "Added support for ``exact_type``."
msgstr ""
#: ../Doc/library/tokenize.rst:56
#: ../Doc/library/tokenize.rst:57
msgid ""
":func:`.tokenize` determines the source encoding of the file by looking for "
"a UTF-8 BOM or encoding cookie, according to :pep:`263`."
msgstr ""
#: ../Doc/library/tokenize.rst:60
#: ../Doc/library/tokenize.rst:61
msgid ""
"All constants from the :mod:`token` module are also exported from :mod:"
"`tokenize`, as are three additional token type values:"
msgstr ""
#: ../Doc/library/tokenize.rst:65
#: ../Doc/library/tokenize.rst:66
msgid "Token value used to indicate a comment."
msgstr ""
#: ../Doc/library/tokenize.rst:70
#: ../Doc/library/tokenize.rst:71
msgid ""
"Token value used to indicate a non-terminating newline. The NEWLINE token "
"indicates the end of a logical line of Python code; NL tokens are generated "
"when a logical line of code is continued over multiple physical lines."
msgstr ""
#: ../Doc/library/tokenize.rst:77
#: ../Doc/library/tokenize.rst:78
msgid ""
"Token value that indicates the encoding used to decode the source bytes into "
"text. The first token returned by :func:`.tokenize` will always be an "
"ENCODING token."
msgstr ""
#: ../Doc/library/tokenize.rst:82
#: ../Doc/library/tokenize.rst:83
msgid ""
"Another function is provided to reverse the tokenization process. This is "
"useful for creating tools that tokenize a script, modify the token stream, "
"and write back the modified script."
msgstr ""
#: ../Doc/library/tokenize.rst:89
#: ../Doc/library/tokenize.rst:90
msgid ""
"Converts tokens back into Python source code. The *iterable* must return "
"sequences with at least two elements, the token type and the token string. "
"Any additional sequence elements are ignored."
msgstr ""
#: ../Doc/library/tokenize.rst:93
#: ../Doc/library/tokenize.rst:94
msgid ""
"The reconstructed script is returned as a single string. The result is "
"guaranteed to tokenize back to match the input so that the conversion is "
@ -138,32 +139,32 @@ msgid ""
"may change."
msgstr ""
#: ../Doc/library/tokenize.rst:99
#: ../Doc/library/tokenize.rst:100
msgid ""
"It returns bytes, encoded using the ENCODING token, which is the first token "
"sequence output by :func:`.tokenize`."
msgstr ""
#: ../Doc/library/tokenize.rst:103
#: ../Doc/library/tokenize.rst:104
msgid ""
":func:`.tokenize` needs to detect the encoding of source files it tokenizes. "
"The function it uses to do this is available:"
msgstr ""
#: ../Doc/library/tokenize.rst:108
#: ../Doc/library/tokenize.rst:109
msgid ""
"The :func:`detect_encoding` function is used to detect the encoding that "
"should be used to decode a Python source file. It requires one argument, "
"readline, in the same way as the :func:`.tokenize` generator."
msgstr ""
#: ../Doc/library/tokenize.rst:112
#: ../Doc/library/tokenize.rst:113
msgid ""
"It will call readline a maximum of twice, and return the encoding used (as a "
"string) and a list of any lines (not decoded from bytes) it has read in."
msgstr ""
#: ../Doc/library/tokenize.rst:116
#: ../Doc/library/tokenize.rst:117
msgid ""
"It detects the encoding from the presence of a UTF-8 BOM or an encoding "
"cookie as specified in :pep:`263`. If both a BOM and a cookie are present, "
@ -171,84 +172,84 @@ msgid ""
"``'utf-8-sig'`` will be returned as an encoding."
msgstr ""
#: ../Doc/library/tokenize.rst:121
#: ../Doc/library/tokenize.rst:122
msgid ""
"If no encoding is specified, then the default of ``'utf-8'`` will be "
"returned."
msgstr ""
#: ../Doc/library/tokenize.rst:124
#: ../Doc/library/tokenize.rst:125
msgid ""
"Use :func:`.open` to open Python source files: it uses :func:"
"`detect_encoding` to detect the file encoding."
msgstr ""
#: ../Doc/library/tokenize.rst:130
#: ../Doc/library/tokenize.rst:131
msgid ""
"Open a file in read only mode using the encoding detected by :func:"
"`detect_encoding`."
msgstr ""
#: ../Doc/library/tokenize.rst:137
#: ../Doc/library/tokenize.rst:138
msgid ""
"Raised when either a docstring or expression that may be split over several "
"lines is not completed anywhere in the file, for example::"
msgstr ""
#: ../Doc/library/tokenize.rst:143
#: ../Doc/library/tokenize.rst:144
msgid "or::"
msgstr "ou : ::"
#: ../Doc/library/tokenize.rst:149
#: ../Doc/library/tokenize.rst:150
msgid ""
"Note that unclosed single-quoted strings do not cause an error to be raised. "
"They are tokenized as ``ERRORTOKEN``, followed by the tokenization of their "
"contents."
msgstr ""
#: ../Doc/library/tokenize.rst:157
#: ../Doc/library/tokenize.rst:158
msgid "Command-Line Usage"
msgstr ""
#: ../Doc/library/tokenize.rst:161
#: ../Doc/library/tokenize.rst:162
msgid ""
"The :mod:`tokenize` module can be executed as a script from the command "
"line. It is as simple as:"
msgstr ""
#: ../Doc/library/tokenize.rst:168
#: ../Doc/library/tokenize.rst:169
msgid "The following options are accepted:"
msgstr ""
#: ../Doc/library/tokenize.rst:174
#: ../Doc/library/tokenize.rst:175
msgid "show this help message and exit"
msgstr ""
#: ../Doc/library/tokenize.rst:178
#: ../Doc/library/tokenize.rst:179
msgid "display token names using the exact type"
msgstr ""
#: ../Doc/library/tokenize.rst:180
#: ../Doc/library/tokenize.rst:181
msgid ""
"If :file:`filename.py` is specified its contents are tokenized to stdout. "
"Otherwise, tokenization is performed on stdin."
msgstr ""
#: ../Doc/library/tokenize.rst:184
#: ../Doc/library/tokenize.rst:185
msgid "Examples"
msgstr "Exemples"
#: ../Doc/library/tokenize.rst:186
#: ../Doc/library/tokenize.rst:187
msgid ""
"Example of a script rewriter that transforms float literals into Decimal "
"objects::"
msgstr ""
#: ../Doc/library/tokenize.rst:228
#: ../Doc/library/tokenize.rst:229
msgid "Example of tokenizing from the command line. The script::"
msgstr ""
#: ../Doc/library/tokenize.rst:235
#: ../Doc/library/tokenize.rst:236
msgid ""
"will be tokenized to the following output where the first column is the "
"range of the line/column coordinates where the token is found, the second "
@ -256,6 +257,6 @@ msgid ""
"token (if any)"
msgstr ""
#: ../Doc/library/tokenize.rst:263
#: ../Doc/library/tokenize.rst:264
msgid "The exact token type names can be displayed using the ``-e`` option:"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-11 19:00+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -45,6 +45,10 @@ msgid ""
"degrees clockwise."
msgstr ""
#: ../Doc/library/turtle.rst:0
msgid "Turtle star"
msgstr ""
#: ../Doc/library/turtle.rst:33
msgid ""
"Turtle can draw intricate shapes using programs that repeat simple moves."
@ -610,10 +614,6 @@ msgid ""
"``turtle``."
msgstr ""
#: ../Doc/library/turtle.rst:0
msgid "Parameters"
msgstr ""
#: ../Doc/library/turtle.rst:247 ../Doc/library/turtle.rst:290
#: ../Doc/library/turtle.rst:313 ../Doc/library/turtle.rst:369
#: ../Doc/library/turtle.rst:390 ../Doc/library/turtle.rst:411

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2235,7 +2235,7 @@ msgstr ""
#: ../Doc/reference/datamodel.rst:1877
msgid ""
"The potential uses for metaclasses are boundless. Some ideas that have been "
"explored include logging, interface checking, automatic delegation, "
"explored include enum, logging, interface checking, automatic delegation, "
"automatic property creation, proxies, frameworks, and automatic resource "
"locking/synchronization."
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -1879,7 +1879,9 @@ msgid "``*``, ``@``, ``/``, ``//``, ``%``"
msgstr "``*``, ``@``, ``/``, ``//``, ``%``"
#: ../Doc/reference/expressions.rst:1694
msgid "Multiplication, matrix multiplication division, remainder [#]_"
msgid ""
"Multiplication, matrix multiplication, division, floor division, remainder "
"[#]_"
msgstr ""
#: ../Doc/reference/expressions.rst:1698

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -892,101 +892,101 @@ msgstr ""
msgid "Some examples of formatted string literals::"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:680
#: ../Doc/reference/lexical_analysis.rst:686
msgid ""
"A consequence of sharing the same syntax as regular string literals is that "
"characters in the replacement fields must not conflict with the quoting used "
"in the outer formatted string literal::"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:687
#: ../Doc/reference/lexical_analysis.rst:693
msgid ""
"Backslashes are not allowed in format expressions and will raise an error::"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:692
#: ../Doc/reference/lexical_analysis.rst:698
msgid ""
"To include a value in which a backslash escape is required, create a "
"temporary variable."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:699
#: ../Doc/reference/lexical_analysis.rst:705
msgid ""
"Formatted string literals cannot be used as docstrings, even if they do not "
"include expressions."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:710
#: ../Doc/reference/lexical_analysis.rst:716
msgid ""
"See also :pep:`498` for the proposal that added formatted string literals, "
"and :meth:`str.format`, which uses a related format string mechanism."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:717
#: ../Doc/reference/lexical_analysis.rst:723
msgid "Numeric literals"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:723
#: ../Doc/reference/lexical_analysis.rst:729
msgid ""
"There are three types of numeric literals: integers, floating point numbers, "
"and imaginary numbers. There are no complex literals (complex numbers can "
"be formed by adding a real number and an imaginary number)."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:727
#: ../Doc/reference/lexical_analysis.rst:733
msgid ""
"Note that numeric literals do not include a sign; a phrase like ``-1`` is "
"actually an expression composed of the unary operator '``-``' and the "
"literal ``1``."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:735
#: ../Doc/reference/lexical_analysis.rst:741
msgid "Integer literals"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:737
#: ../Doc/reference/lexical_analysis.rst:743
msgid "Integer literals are described by the following lexical definitions:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:751
#: ../Doc/reference/lexical_analysis.rst:757
msgid ""
"There is no limit for the length of integer literals apart from what can be "
"stored in available memory."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:754
#: ../Doc/reference/lexical_analysis.rst:760
msgid ""
"Underscores are ignored for determining the numeric value of the literal. "
"They can be used to group digits for enhanced readability. One underscore "
"can occur between digits, and after base specifiers like ``0x``."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:758
#: ../Doc/reference/lexical_analysis.rst:764
msgid ""
"Note that leading zeros in a non-zero decimal number are not allowed. This "
"is for disambiguation with C-style octal literals, which Python used before "
"version 3.0."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:762
#: ../Doc/reference/lexical_analysis.rst:768
msgid "Some examples of integer literals::"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:768
#: ../Doc/reference/lexical_analysis.rst:800
#: ../Doc/reference/lexical_analysis.rst:774
#: ../Doc/reference/lexical_analysis.rst:806
msgid "Underscores are now allowed for grouping purposes in literals."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:775
#: ../Doc/reference/lexical_analysis.rst:781
msgid "Floating point literals"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:777
#: ../Doc/reference/lexical_analysis.rst:783
msgid ""
"Floating point literals are described by the following lexical definitions:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:787
#: ../Doc/reference/lexical_analysis.rst:793
msgid ""
"Note that the integer and exponent parts are always interpreted using radix "
"10. For example, ``077e010`` is legal, and denotes the same number as "
@ -995,26 +995,26 @@ msgid ""
"grouping."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:792
#: ../Doc/reference/lexical_analysis.rst:798
msgid "Some examples of floating point literals::"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:796
#: ../Doc/reference/lexical_analysis.rst:802
msgid ""
"Note that numeric literals do not include a sign; a phrase like ``-1`` is "
"actually an expression composed of the unary operator ``-`` and the literal "
"``1``."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:807
#: ../Doc/reference/lexical_analysis.rst:813
msgid "Imaginary literals"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:809
#: ../Doc/reference/lexical_analysis.rst:815
msgid "Imaginary literals are described by the following lexical definitions:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:814
#: ../Doc/reference/lexical_analysis.rst:820
msgid ""
"An imaginary literal yields a complex number with a real part of 0.0. "
"Complex numbers are represented as a pair of floating point numbers and have "
@ -1023,23 +1023,23 @@ msgid ""
"Some examples of imaginary literals::"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:826
#: ../Doc/reference/lexical_analysis.rst:832
msgid "Operators"
msgstr "Opérateurs"
#: ../Doc/reference/lexical_analysis.rst:830
#: ../Doc/reference/lexical_analysis.rst:836
msgid "The following tokens are operators:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:843
#: ../Doc/reference/lexical_analysis.rst:849
msgid "Delimiters"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:847
#: ../Doc/reference/lexical_analysis.rst:853
msgid "The following tokens serve as delimiters in the grammar:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:856
#: ../Doc/reference/lexical_analysis.rst:862
msgid ""
"The period can also occur in floating-point and imaginary literals. A "
"sequence of three periods has a special meaning as an ellipsis literal. The "
@ -1047,22 +1047,22 @@ msgid ""
"as delimiters, but also perform an operation."
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:861
#: ../Doc/reference/lexical_analysis.rst:867
msgid ""
"The following printing ASCII characters have special meaning as part of "
"other tokens or are otherwise significant to the lexical analyzer:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:868
#: ../Doc/reference/lexical_analysis.rst:874
msgid ""
"The following printing ASCII characters are not used in Python. Their "
"occurrence outside string literals and comments is an unconditional error:"
msgstr ""
#: ../Doc/reference/lexical_analysis.rst:877
#: ../Doc/reference/lexical_analysis.rst:883
msgid "Footnotes"
msgstr "Notes"
#: ../Doc/reference/lexical_analysis.rst:878
#: ../Doc/reference/lexical_analysis.rst:884
msgid "http://www.unicode.org/Public/9.0.0/ucd/NameAliases.txt"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-05-16 13:58+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -69,17 +69,45 @@ msgstr "Liste de Livres"
msgid "Audio/Visual Talks"
msgstr "Discours audiovisuels"
#: ../Doc/tools/templates/customsourcelink.html:3
msgid "This Page"
msgstr "Cette Page"
#: ../Doc/tools/templates/layout.html:10
msgid "Documentation "
msgstr "Documentation"
#: ../Doc/tools/templates/customsourcelink.html:5
msgid "Report a Bug"
msgstr "Rapporter un bug"
#: ../Doc/tools/templates/layout.html:21
msgid "Quick search"
msgstr "Recherche rapide"
#: ../Doc/tools/templates/customsourcelink.html:8
msgid "Show Source"
msgstr "Voir la source"
#: ../Doc/tools/templates/layout.html:22
msgid "Go"
msgstr "Go"
#: ../Doc/tools/templates/layout.html:108
#: ../Doc/tools/templates/indexcontent.html:63
msgid "Copyright"
msgstr "Copyright"
#: ../Doc/tools/templates/layout.html:110
msgid "The Python Software Foundation is a non-profit corporation."
msgstr "La Python Software Foundation est une organisation à but non lucratif."
#: ../Doc/tools/templates/layout.html:111
msgid "Please donate."
msgstr "Les dons sont les bienvenus."
#: ../Doc/tools/templates/layout.html:113
msgid "Last updated on %(last_updated)s."
msgstr "Dernière mise-à-jour le %(last_updated)s."
#: ../Doc/tools/templates/layout.html:114
msgid "<a href=\"%(pathto_bugs)s\">Found a bug</a>?"
msgstr "<a href=\"%(pathto_bugs)s\">Vous avez trouvé un bug</a> ?"
#: ../Doc/tools/templates/layout.html:116
msgid ""
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
"%(sphinx_version)s."
msgstr ""
"Crée via <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s."
#: ../Doc/tools/templates/indexcontent.html:8
msgid "Welcome! This is the documentation for Python %(release)s."
@ -239,42 +267,14 @@ msgstr "À propos de la documentation"
msgid "History and License of Python"
msgstr "Histoire et Licence de Python"
#: ../Doc/tools/templates/indexcontent.html:63
#: ../Doc/tools/templates/layout.html:108
msgid "Copyright"
msgstr "Copyright"
#: ../Doc/tools/templates/customsourcelink.html:3
msgid "This Page"
msgstr "Cette Page"
#: ../Doc/tools/templates/layout.html:10
msgid "Documentation "
msgstr "Documentation"
#: ../Doc/tools/templates/customsourcelink.html:5
msgid "Report a Bug"
msgstr "Rapporter un bug"
#: ../Doc/tools/templates/layout.html:21
msgid "Quick search"
msgstr "Recherche rapide"
#: ../Doc/tools/templates/layout.html:22
msgid "Go"
msgstr "Go"
#: ../Doc/tools/templates/layout.html:110
msgid "The Python Software Foundation is a non-profit corporation."
msgstr "La Python Software Foundation est une organisation à but non lucratif."
#: ../Doc/tools/templates/layout.html:111
msgid "Please donate."
msgstr "Les dons sont les bienvenus."
#: ../Doc/tools/templates/layout.html:113
msgid "Last updated on %(last_updated)s."
msgstr "Dernière mise-à-jour le %(last_updated)s."
#: ../Doc/tools/templates/layout.html:114
msgid "<a href=\"%(pathto_bugs)s\">Found a bug</a>?"
msgstr "<a href=\"%(pathto_bugs)s\">Vous avez trouvé un bug</a> ?"
#: ../Doc/tools/templates/layout.html:116
msgid ""
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
"%(sphinx_version)s."
msgstr ""
"Crée via <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s."
#: ../Doc/tools/templates/customsourcelink.html:8
msgid "Show Source"
msgstr "Voir la source"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "Using Python on a Macintosh"
msgstr "Utilisation de Python sur un Macintosh"
#: ../Doc/using/mac.rst:0
msgid "Author"
msgstr ""
#: ../Doc/using/mac.rst:8
msgid "Bob Savage <bobsavage@mac.com>"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.0"
msgstr "Nouveautés de Python 2.0"
#: ../Doc/whatsnew/2.0.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.0.rst:5
msgid "A.M. Kuchling and Moshe Zadka"
msgstr "A.M. Kuchling et Moshe Zadka"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.1"
msgstr "Nouveautés de Python 2.1"
#: ../Doc/whatsnew/2.1.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.1.rst:5
msgid "A.M. Kuchling"
msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.2"
msgstr "Nouveautés de Python 2.2"
#: ../Doc/whatsnew/2.2.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.2.rst:5
msgid "A.M. Kuchling"
msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:54+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.3"
msgstr "Nouveautés de Python 2.3"
#: ../Doc/whatsnew/2.3.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.3.rst:5
msgid "A.M. Kuchling"
msgstr "A.M. Kuchling"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.4"
msgstr "Nouveautés de Python 2.4"
#: ../Doc/whatsnew/2.4.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.4.rst:5
msgid "A.M. Kuchling"
msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:53+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.5"
msgstr "Nouveautés de Python 2.5"
#: ../Doc/whatsnew/2.5.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.5.rst:5
msgid "A.M. Kuchling"
msgstr "A.M. Kuchling"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:53+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.6"
msgstr "Nouveautés de Python 2.6"
#: ../Doc/whatsnew/2.6.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.6.rst:9
msgid "A.M. Kuchling (amk at amk.ca)"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:52+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New in Python 2.7"
msgstr "Nouveautés de Python 2.7"
#: ../Doc/whatsnew/2.7.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/2.7.rst:5
msgid "A.M. Kuchling (amk at amk.ca)"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.0"
msgstr "Nouveautés de Python 3.0"
#: ../Doc/whatsnew/3.0.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.0.rst:7
msgid "Guido van Rossum"
msgstr "Guido van Rossum"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.1"
msgstr "Nouveautés de Python 3.1"
#: ../Doc/whatsnew/3.1.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.1.rst:5
msgid "Raymond Hettinger"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.2"
msgstr "Nouveautés de Python 3.2"
#: ../Doc/whatsnew/3.2.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.2.rst:5
msgid "Raymond Hettinger"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.4"
msgstr "Nouveautés de Python 3.4"
#: ../Doc/whatsnew/3.4.rst:0
msgid "Author"
msgstr ""
#: ../Doc/whatsnew/3.4.rst:5
msgid "R. David Murray <rdmurray@bitdance.com> (Editor)"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-27 19:40+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-08-10 00:52+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.5"
msgstr "Nouveautés de Python 3.5"
#: ../Doc/whatsnew/3.5.rst:0
msgid "Editors"
msgstr ""
#: ../Doc/whatsnew/3.5.rst:5
msgid "Elvis Pranskevichus <elvis@magic.io>, Yury Selivanov <yury@magic.io>"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-12 13:37+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: 2017-05-27 14:24+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: \n"
@ -21,10 +21,6 @@ msgstr ""
msgid "What's New In Python 3.6"
msgstr ""
#: ../Doc/whatsnew/3.6.rst:0
msgid "Editors"
msgstr ""
#: ../Doc/whatsnew/3.6.rst:5
msgid "Elvis Pranskevichus <elvis@magic.io>, Yury Selivanov <yury@magic.io>"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
"POT-Creation-Date: 2017-09-21 09:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -32,9 +32,12 @@ msgstr ""
"quiconque souhaitant être à jour suite à une nouvelle sortie."
#: ../Doc/whatsnew/index.rst:30
#, fuzzy
msgid ""
"The \"Changelog\" is a HTML version of the file :source:`Misc/NEWS` which "
"contains *all* nontrivial changes to Python for the current version."
"The \"Changelog\" is an HTML version of the `file built <https://pypi.org/"
"project/blurb>`_ from the contents of the :source:`Misc/NEWS.d` directory "
"tree, which contains *all* nontrivial changes to Python for the current "
"version."
msgstr ""
"Le « Changelog » est une version HTML du fichier :source:`Misc/NEWS` qui "
"contient *tous* les changements non-triviaux de Python pour la version "