Message9256

Author zyasoft
Recipients shishir, zyasoft
Date 2014-12-18.18:43:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1418928211.11.0.941807927448.issue2238@psf.upfronthosting.co.za>
In-reply-to
Content
So posix is not missing, that's the important one. You can alternatively try to use the subprocess module, and see if that works at all. There's also a small chance that this bug, recently fixed, might be causing the underlying problem:
http://bugs.jython.org/issue2205, but you are not reporting these exceptions being thrown.

As for the remaining differences, _imp, _json, _jythonlib are newly added since beta 3:
* _imp used to be called imp, but in the process of adding some functionality to the imp module (NullImporter), I chose to write it in Python and place it in Lib/imp.py rather than in Java, since that's way easier. My preference is always to reserve writing Java for code that is either performance intensive or can cause other issues, such as seen in our object proxying support.
* _json is for the port of json.c
* _jythonlib is a new module for managing some newly exposed Jython runtime internals - in part to minimize having said object proxying code in Java, using _jythonlib's new support
History
Date User Action Args
2014-12-18 18:43:31zyasoftsetmessageid: <1418928211.11.0.941807927448.issue2238@psf.upfronthosting.co.za>
2014-12-18 18:43:31zyasoftsetrecipients: + zyasoft, shishir
2014-12-18 18:43:31zyasoftlinkissue2238 messages
2014-12-18 18:43:30zyasoftcreate