Really? I just tested on 2013, 10.7.3

def test():
    print 1/0

def test2():
    test()

def test3():
    test2()
    
test3()

# Error: integer division or modulo by zero
# Traceback (most recent call last):
#   File "<maya console>", line 10, in <module>
#   File "<maya console>", line 8, in test3
#   File "<maya console>", line 5, in test2
#   File "<maya console>", line 2, in test
# ZeroDivisionError: integer division or modulo by zero # 

Do you not get that trace?


On Apr 23, 2012, at 2:36 PM, Russell Campbell wrote:

> I just installed 2013 on OSX 10.7.3 and the script editor is no longer
> printing the stack trace for executed python code.  I was wondering if
> anyone else is having this problem.  I've played with every
> combination of options in the History menu of the script editor,
> turning on and off "Show Stack Trace" , "Suppress Stack Window"
> without luck.  I don't see any other new options in the preferences
> either.
> 
> Thanks,
> 
> Russ
> 
> -- 
> view archives: http://groups.google.com/group/python_inside_maya
> change your subscription settings: 
> http://groups.google.com/group/python_inside_maya/subscribe

-- 
view archives: http://groups.google.com/group/python_inside_maya
change your subscription settings: 
http://groups.google.com/group/python_inside_maya/subscribe

Reply via email to