1Jep 2.0 Release Notes
2*********************
3
4Autoboxing and unboxing
5~~~~~~~~~~~~~~~~~~~~~~~
6Jep will attempt to autobox and unbox between Java and Python for commonly
7used types (String and primitives).  For example, retrieving a Python int
8from the interpreter will automatically return a Java Integer.  Passing a
9Java primitive int to the interpreter will automatically be converted to a
10Python int.
11
12
13Python implementing Java interfaces
14~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15By using Jep's Proxy class, Python can now implement Java interfaces to enable
16callbacks and more advanced cross-language techniques.
17
18
19Script Engine
20~~~~~~~~~~~~~
21Jep now provides a script engine based on the javax.script package.
22
23http://docs.oracle.com/javase/7/docs/api/javax/script/package-summary.html
24
25