|
From: Quanah Gibson-M. <qu...@zi...> - 2015-09-24 21:14:51
|
Using the Jython 2.7.0 standalone jar, it is clearly utterly broken and missing a ton of previously available functions: >>> os.getgid() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'getgid' >>> os.getppid() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'getppid' vs 2.5.2: >>> os.getgid() 999 >>> os.getppid() 21334 as well as os.getpid() as noted in <http://bugs.jython.org/issue2405>. There could well be other basic functionality bits missing, but it seems something was overlooked in releasing Jython 2.7. --Quanah -- Quanah Gibson-Mount Platform Architect Zimbra, Inc. -------------------- Zimbra :: the leader in open source messaging and collaboration |