From: Finn B. <bc...@us...> - 2001-11-21 11:41:44
|
Update of /cvsroot/jython/jython/Tools/jythonc In directory usw-pr-cvs1:/tmp/cvs-serv17316 Modified Files: proxies.py Log Message: Fix for [ #480390 ] main() does not throw exceptions. Use a different property lists to the initProxy() and the runMain(). In initProxy() we still want to see java exception, in runMain() it is now the JVM that prints the exception thrown from the main() method. Index: proxies.py =================================================================== RCS file: /cvsroot/jython/jython/Tools/jythonc/proxies.py,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -d -r2.12 -r2.13 *** proxies.py 2001/06/30 01:03:13 2.12 --- proxies.py 2001/11/21 11:41:41 2.13 *************** *** 131,135 **** if module is not None: self.packages = module.getPackages() ! self.properties = module.getProperties() self.modname = module.name if module.package is not None: --- 131,135 ---- if module is not None: self.packages = module.getPackages() ! self.properties = module.getProxyProperties() self.modname = module.name if module.package is not None: |