Original Translation
11
Python source code is compiled into bytecode, the internal representation of a Python program in the interpreter. The bytecode is also cached in ``.pyc`` and ``.pyo`` files so that executing the same file is faster the second time (recompilation from source to bytecode can be avoided). This "intermediate language" is said to run on a :term:`virtual machine` that executes the machine code corresponding to each bytecode.
Le code source Python est compilé en bytecode, la représentation interne d'un programme Python dans l'interpréteur. Le bytecode est également mis en cache dans les fichiers ``.pyc`` et ``.pyo`` de sorte que l'exécution du même fichier est plus rapide la seconde fois (la recompilation de la source en bytecode peut être évitée). Ce "langage intermédiaire" est exécuté dans un interpréteur appelé "machine virtuelle" qui exécute le code machine de chaque bytecode correspondant.
12
A template for creating user-defined objects. Class definitions normally contain method definitions which operate on instances of the class.
Un modèle pour créer des objets définis par l'utilisateur. Les définitions de classes contiennent normalement des définitions de méthodes qui agissent sur les instances de classe.
13
The implicit conversion of an instance of one type to another during an operation which involves two arguments of the same type. For example, ``int(3.15)`` converts the floating point number to the integer ``3``, but in ``3+4.5``, each argument is of a different type (one int, one float), and both must be converted to the same type before they can be added or it will raise a ``TypeError``. Without coercion, all arguments of even compatible types would have to be normalized to the same value by the programmer, e.g., ``float(3)+4.5`` rather than just ``3+4.5``.
14
An extension of the familiar real number system in which all numbers are expressed as a sum of a real part and an imaginary part. Imaginary numbers are real multiples of the imaginary unit (the square root of ``-1``), often written ``i`` in mathematics or ``j`` in engineering. Python has built-in support for complex numbers, which are written with this latter notation; the imaginary part is written with a ``j`` suffix, e.g., ``3+1j``. To get access to complex equivalents of the :mod:`math` module, use :mod:`cmath`. Use of complex numbers is a fairly advanced mathematical feature. If you're not aware of a need for them, it's almost certain you can safely ignore them.
Une extension du système numéral réel familier dans laquelle tous les nombres sont exprimés sous la forme d'une somme d'un réel et d'un imaginaire. Les nombres imaginaures sont de réels multiples d'une unité imaginaire (la racine carrée de ``-1``), souvent écrite ``i`` en mathématiques ou ``j`` en ingénierie. Python supporte nativement les nombres complexes, écrits avec cette dernière notation; la partie imaginaire est écrite avec un suffixe ``j``, exemple, ``3+1j``. Pour utiliser les équivalents complexes à :mod:`math`, utilisez :mod:`cmath`. L'utilisation des nombres complexes est une caractéristiques des mathématiques avancées. Si vous n'en avez pas l'utilité, vous pouvez les ignorer en toute tranquilité.
15
An object which controls the environment seen in a :keyword:`with` statement by defining :meth:`__enter__` and :meth:`__exit__` methods. See :pep:`343`.
16
The canonical implementation of the Python programming language. The term "CPython" is used in contexts when necessary to distinguish this implementation from others such as Jython or IronPython.
Suggestion 0 by nobody:
L'implémentation canonique du langage de programmation Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessaire de distingué cette implémentation des autres comme Jython ou IronPython
Suggestion 1 by nobody:
Interesting post. I have been wondering about this issue,so thnaks for posting. I’ll likely be coming back to your blog. Keep up great writing. Find your great and sing the songs at or you can watch the drama at one of great korea drama is if you go to travel to Indonesia learn first! And find your home or make a blog find your home again and again at the point is , and find and then if you want buy a new laptop see the or you can buy a and then take care your good job, very great article Thanks ever so much very useful article Great information I like your blog I will be checking back for any new articles just bookmarked it for later reference . Thanks for kindly sharing it with us. Very well done indeed
Suggestion 2 by nobody:
Ah ok, thanks I didn't get porsieuvly that it was about Scons, I thought the installer was hating Python2.6 maybe.I made a change along the lines and included in a hotfix 0.3.18.2 available for download, thanks for the report! Kay
Suggestion 3 by nobody:
Bez8wQ <ation canonique du langage de programmation Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessairef="http://fyeumnbmdffl.com/">fyeume Jythonbmdffl</a>
Suggestion 4 by nobody:
2ECe2X , [url=http://qxnkssmhsyion canonique du langage de programmation Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessaire de distingué cette implémentation des autres com/]qxnkssmhsyio[/url], [link=http://cevxojsyvqrz.com/]cevxojsyvqrz[/link], http://ehvswfcbhygq.com/
Suggestion 5 by nobody:
yZZpjm <a href="http://yjbmserkozsy.com/">yjbmserkozsy</a>
Suggestion 6 by nobody:
AQaAOb , [url=hon. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessaire de distingué cette imp://tyvzdwszspso.com/]tyvzdwszspso[/url], [link=http://leqecamohack.com/]leqecamohack[/link], http://kzicvcrlznez.com/
Suggestion 7 by nobody:
ZqPTqF <ation canonique du langage de programmation Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessairef="http://hepvvbgcrcix.com/">hepvvbgcrcix</a>
Suggestion 8 by nobody:
4XobY9 <ation canonique du langage de programmation Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessairef="http://xkhljmoecyqo.com/">xkhljmoecyqo</a>
Suggestion 9 by nobody:
tFuA5h , [url=http://on cayiijzlangktion Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessaire de distingué cette implémentation des autres com/]ocayiijzlgkt[/url], [link=http://xdscwidnozbv.com/]xdscwidnozbv[/link], http://oisrxtaljxfz.com/
Suggestion 10 by nobody:
NydbFn , [url=http://dmplémemcgbjvon canonique du langage de programmation Python. Le terme "CPython" est utilisé dans certains contextes lorsqu'il est nécessaire de distingué cette implémentation des autres com/]dmmemcgbjvoy[/url], [link=http://rjcwyluzlmgj.com/]rjcwyluzlmgj[/link], http://vmucfzhxfnwv.com/
17
A function returning another function, usually applied as a function transformation using the ``@wrapper`` syntax. Common examples for decorators are :func:`classmethod` and :func:`staticmethod`.
Une fonction retournant une autre fonction, utilisé habituellement dans une transformation de fonction via la syntaxe ``@wrapper``.Les exemples habituels pour les décorateurs sont :func:`classmethod` et :func:`staticmethod`.
18
The decorator syntax is merely syntactic sugar, the following two function definitions are semantically equivalent::
La syntaxe decorator est simplement du sucre syntaxique, les définitions des deux fonctions suivantes sont sémantiquement équivalentes :
19
def f(...): ... f = staticmethod(f) @staticmethod def f(...): ...
def f(...): ... f = staticmethod(f) @staticmethod def f(...): ...
20
The same concept exists for classes, but is less commonly used there. See the documentation for :ref:`function definitions <function>` and :ref:`class definitions <class>` for more about decorators.
Quoique moins fréquemment utilisé, le même concept existe pour les classes. Consultez la documentation :ref:`définitions de fonctions <function> et :ref:`définitions de classes <class>` pour en savoir plus sur les decorators.