RE: [Tutor] What is in the traceback object

2005-02-08 Thread Ertl, John
n.org' Subject: Re: [Tutor] What is in the traceback object On Tue, 8 Feb 2005, Ertl, John wrote: > I have a bit of code that uses a module and I am trying to get more info > on the error. > > I am using this bit of code: > > try: > rhfill= Ngl.contour(wk

Re: [Tutor] What is in the traceback object

2005-02-08 Thread Danny Yoo
On Tue, 8 Feb 2005, Ertl, John wrote: > I have a bit of code that uses a module and I am trying to get more info > on the error. > > I am using this bit of code: > > try: > rhfill= Ngl.contour(wks,rhisobar,rh_res) > except: > execType,value,tracebak = sys.exc_info()[:

[Tutor] What is in the traceback object

2005-02-08 Thread Ertl, John
I have a bit of code that uses a module and I am trying to get more info on the error.   I am using this bit of code:       try:     rhfill    = Ngl.contour(wks,rhisobar,rh_res)     except:     execType,value,tracebak = sys.exc_info()[:3]     print execType     prin