@@ -42,7 +42,7 @@ Since version 0.4.0, two implementations of the parser are available:
4242* ``v1 ``: the *classic * implementation of ``javaobj ``, with a work in progress
4343 implementation of a writer.
4444* ``v2 ``: the *new * implementation, which is a port of the Java project
45- [`` jdeserialize ``]( https://github.com/frohoff/jdeserialize/) ,
45+ ` jdeserialize < https://github.com/frohoff/jdeserialize/ >`_ ,
4646 with support of the object transformer (with a new API) and of the ``numpy ``
4747 arrays loading.
4848
@@ -79,7 +79,7 @@ Requirements
7979============
8080
8181* Python >= 2.7 or Python >= 3.4
82- * `enum34 ` and `typing ` when using Python <= 3.4 (installable with `pip `)
82+ * `` enum34 `` and `` typing `` when using Python <= 3.4 (installable with `` pip ` `)
8383* Maven 2+ (for building test data of serialized objects.
8484 You can skip it if you do not plan to run ``tests.py ``)
8585
@@ -164,9 +164,10 @@ The Java object instance parsing works in two main steps:
1641641. The transformer is called to create an instance of a bean that inherits
165165 ``JavaInstance ``.
1661662. The latter bean is then called:
167- * When the object is written with a custom block data
168- * After the fields and annotations have been parsed, to update the content of
169- the Python bean.
167+
168+ * When the object is written with a custom block data
169+ * After the fields and annotations have been parsed, to update the content of
170+ the Python bean.
170171
171172Here is an example for a Java ``HashMap `` object. You can look at the code of
172173the ``javaobj.v2.transformer `` module to see the whole implementation.
0 commit comments