Message10837

Author jenselme
Recipients jenselme
Date 2016-04-18.15:36:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460993782.35.0.61520609401.issue2494@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

I am a member of the NbPython team (http://nbpython.org/). We develop the python plugin for Netbeans IDE and bundle Jython in our plugin.

While working on completion with the Jedi library (https://jedi.readthedocs.org), I noticed that pydoc_data is not available in Jython. pydoc_data is a module from the standard library of python.

What I did:

```
import pydoc_data
```

What I get:

```
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named pydoc_data
```

Expected result: the module is correctly imported without errors.

See https://hg.python.org/cpython/file/2.7/Lib/pydoc_data for the code in cpython.
History
Date User Action Args
2016-04-18 15:36:22jenselmesetrecipients: + jenselme
2016-04-18 15:36:22jenselmesetmessageid: <1460993782.35.0.61520609401.issue2494@psf.upfronthosting.co.za>
2016-04-18 15:36:22jenselmelinkissue2494 messages
2016-04-18 15:36:21jenselmecreate