|
From: Noam Yorav-R. <noa...@gm...> - 2010-02-25 11:14:09
|
On Thu, Feb 25, 2010 at 1:02 PM, Werner F. Bruhin <wer...@fr...> wrote:
> What dev tool are you using, maybe it is a function of the tool providing
> the source line code?
>
No, it's a function of Python. For example, create a file called
example.py with this:
==============
def f():
1/0
f()
==============
and run python example.py. I get:
Traceback (most recent call last):
File "example.py", line 4, in <module>
f()
File "example.py", line 2, in f
1/0
ZeroDivisionError: integer division or modulo by zero
|