Search code examples
pythonterminology

Python: Stacktrace vs Traceback


In the Python world there are two terms which seem to be equal:

  • Stacktrace
  • Traceback

Is there any difference between the two?


Solution

  • Traceback is the idiomatic Python term (for example, the traceback module), it's often used interchangeably with stacktrace, which is used in other languages such as Java.