I think it would be a good idea if Python tracebacks could be translated into languages other than English - and it would set a good example.

For example, using French as my default local language, instead of

>>> 1/0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ZeroDivisionError: integer division or modulo by zero

I might get something like

>>> 1/0
Suivi d'erreur (appel le plus récent en dernier) :
  Fichier "<stdin>", à la ligne 1, dans <module>
ZeroDivisionError: division entière ou modulo par zéro

André