From: Robert W. B. <rb...@di...> - 2001-08-09 03:59:10
|
Hi Brian, On Wed, 8 Aug 2001, Brian Parker wrote: > I'm compiling to class files like this: > jythonc --core --deep --jar my.jar *.py > > If I look in the jar, sure enough, the whole compiler "package" is not > there? Any idea what I might be doing wrong? (The code runs fine > through "jython".) you need --all to get the compiler and parser. Try: jythonc --all --jar my.jar *.py (--all implies --deep). -Robert |