Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-16 Thread william ratcliff
Thanks! On Sun, Aug 16, 2009 at 7:08 PM, Fabio Zadrozny wrote: > Ok, just to update on this: > > Pydev is no longer using the respectJavaAccessibility=False (fixed for > 1.4.8 - svn: 2875), but there are still problems to debug jconsole. > Seems like a bug with Jython 2.5+Swing+sys.settrace. I'

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-16 Thread Fabio Zadrozny
Ok, just to update on this: Pydev is no longer using the respectJavaAccessibility=False (fixed for 1.4.8 - svn: 2875), but there are still problems to debug jconsole. Seems like a bug with Jython 2.5+Swing+sys.settrace. I've created a new bug for that at Jython: http://bugs.jython.org/issue1440

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread Fabio Zadrozny
Note: Created bug at jython for it: http://bugs.jython.org/issue1438 So, to use the pydev debugger, right now your jython code cannot use the property access (and needs to explicitly call the set/get methods). Cheers, Fabio On Sat, Aug 15, 2009 at 7:50 PM, Fabio Zadrozny wrote: >> Thanks for th

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread Fabio Zadrozny
> Thanks for the quick reply!  However, I'm still confused.  In my registry, > I have: > # Setting this to false will allow Jython to provide access to > # non-public fields, methods, and constructors of Java objects. > python.security.respectJavaAccessibility = true > Yet, as you say, when I run t

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread william ratcliff
Thanks for the quick reply! However, I'm still confused. In my registry,I have: # Setting this to false will allow Jython to provide access to # non-public fields, methods, and constructors of Java objects. python.security.respectJavaAccessibility = true Yet, as you say, when I run the debugger

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread Fabio Zadrozny
On Sat, Aug 15, 2009 at 6:16 AM, william ratcliff wrote: > Hi!  I was trying to use pydev (1.4.6.2788 ) with eclipse 3.4.1 and > imported: > http://code.google.com/p/jythonconsole/ > I found that if I run the project as a jython run, it runs well.  However, > if I try to debug it, the console termi

[Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread william ratcliff
Hi! I was trying to use pydev (1.4.6.2788 ) with eclipse 3.4.1 and imported: http://code.google.com/p/jythonconsole/ I found that if I run the project as a jython run, it runs well. However, if I try to debug it, the console terminates without ever displaying a frame. Any suggestions? Thanks! W