Re: debugger?
You might also look at Boa. http://boa-constructor.sourceforge.net/ While I haven't tried all the things on your list, I've been able to do all the things I've wanted to do in the debugger. It is also an IDE for wxPython, so it works well for that, but I don't know about other GUI libraries. Qiangning Hong wrote: > ...The debugger should meet _most_ of the following > requirements: > > 1. can debug wxPython applications (and other GUI lib). > 2. an intuitive way to set/clear/enable/disable breakpoints. > 3. can set conditional breakpoints (i.e. break when some condition satisfied). > 4. variable watch list, namescope watching (local, global) > 5. evaluate expression, change variable values, etc within debugging. > 6. change the running routine, (i.e. go directly to a statement, skip > some statements, etc) > 7. clever way to express objects, not just a string returned by repr() > 8. perform profiling > 9. a clear interface. > 10. cross-platform. > 11. free, or better, open source. > > What debugger will you suggest? > Or what more polish feature you want to see in an ideal python > debugger? -- hope this thread will help IDE developers to fill their > todo list with some shining ideas :) > Frank LaFond http://www.effectiveqa.com -- http://mail.python.org/mailman/listinfo/python-list
Re: jython debugger
The PyDev environment (http://pydev.sourceforge.net/) for Eclipse appears to have Jython debug support, though I just tried it now and it did not work for me. The release notes http://pydev.sourceforge.net/features.html seem to suggest it should, so perhaps I just haven't configured something properly. PyDev currently only works with Java 1.5; Java 1.4 is expected, but not available yet. If you try it, let us know if you can get it to work. Frank. [EMAIL PROTECTED] wrote: > Hi, > I am looking for an ide debugger for jython: is there someone with > some suggestions ? > > Thanks, >Adriano > -- http://mail.python.org/mailman/listinfo/python-list
Re: Record Audio Analysis
Jo Chase wrote: > I would like to record audio from a mic and perform some basic analysis on > the audio wave patterns produced. What would be the easiest way to > accomplish this in Python? Take a look at http://pymedia.org I think it allows the features you want. Frank. -- http://mail.python.org/mailman/listinfo/python-list
Re: Jython inherit from Java class
Jython 2.2 Alpha 1 supports Java 1.5 Frank. Kent Johnson wrote: > Mark Fink wrote: > >> I observed something strange when I tried to compile the jython class: >> 'assert' is a keyword, and may not be used as an identifier >> (try -source 1.3 or lower to use 'assert' as an identifier) >> public static void assert(PyObject test, PyObject message) { > > >> Looks like something in the Jython core causes the problem >> (org\python\core\Py.java) any Ideas what I can do? > > > I think jythonc is not compatible with Java 1.5, try compiling with 1.4. > > Kent -- http://mail.python.org/mailman/listinfo/python-list