Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
460 views

Where does pythons pydoc help function get its content from

I have a lot of callable objects and they all have the __doc__ string correctly filled out, but running help on them produces the help for the their class instead of help based on __doc__. What I ...
6
votes
1answer
338 views

Document python using Eclipse/Pydev

I am new to python development and use Eclipse/Pydev. Is there a nice way to integrate tools for generating documentations (e.g. Sphinx, pydoc) into the IDE to have a nice workflow, maybe showing the ...
4
votes
3answers
3k views

How to get pydoc command working in Windows?

pydoc does not work in Windows. at this post http://stackoverflow.com/questions/3391998/pydoc-is-not-working-windows-xp the last answer by dave webb says to create a pydoc.bat file with this code in ...
4
votes
6answers
2k views

Pydoc is not working (Windows XP)

Using Windows XP and Python 2.7 I tried to run "pydoc" through the terminal. unfortunately it doesn't work. Since I'm not allowed to post a screenshot (Newbie). Here is what it says (white on black) ...
3
votes
1answer
241 views

restructuredText, docstring and python interactive shell

I am using reStructuredText to document my code, so as to get nice offline HTML pages by means of epydoc. Results are brilliant. The only drawback is that when I use the Python interactive shell, the ...
2
votes
1answer
52 views

C# equivalent of pydoc

Visual Studio is not present at my work location and I am using Notepad++ for the development. I am aware of MSDN, but I want to browse the documentation from command line like in Python. In Python, ...
2
votes
1answer
30 views

Look for pydoc analog for java for reading docs from command line

Pydoc can produce nice docs for Python module/function/class for reading from command line. This tools javadoc seems does not provide such capabilities. I use Emacs and look for ability quickly get ...
2
votes
1answer
139 views

Python: Can the pydoc module output HTML docs with relative paths?

I am using the pydoc module to output documentation for some types which I have defined with the C API. The types I want to document don't exist until the interpreter has been embedded inside my C ...
2
votes
2answers
242 views

help() with unicode __author__ string

In the beginning of my scripts in Python 2.6, I would like to write my name as it is spelled, i.e. "Joël" (with trema on e). So I write __author__ = u'Joël', and I can retrieve it by a simple print ...
2
votes
1answer
192 views

Can pydoc/help() hide the documentation for inherited class methods and attributes?

When declaring a class that inherits from a specific class: class C(dict): added_attribute = 0 the documentation for class C lists all the methods of dict (either through help(C) or pydoc). Is ...
2
votes
2answers
178 views

Reading Python Documentation for 3rd party modules

I recently downloaded IMDbpy module.. When I do, import imdb help(imdb) i dont get the full documentation.. I have to do im = imdb.IMDb() help(im) to see the available methods. I dont like ...
1
vote
0answers
19 views

PyDoctor doesn't create documentation for one module

I set pydoctor loose on my source code: pydoctor *.py and the auto-generated code seems nice, except for one of my modules just has a page saying "engine : module documentation - Undocumented". ...
1
vote
1answer
113 views

How to tell PyDoc to generate documentation to user defined directory

PyDoc creates HTML documentation in current directory when generating documentation of modules. I really need to specify another directory which will be a placeholder for generated documentation ...
1
vote
2answers
74 views

Difference between pydoc and help()?

Are these two things different? The results that the two give in Python are similar.
1
vote
1answer
122 views

pydoc is inconsistent?

I have a package structured like this: a/a1/a1.py a/a2/a2.py a/a3/a3.py In a3.py, I imported modules a1 and a2 like these: import a1.a1 import a2.a2 Then I run pydoc -w a/ It produces ...
1
vote
2answers
583 views

Make Sphinx generate RST class documentation from pydoc

I'm currently migrating all existing (incomplete) documentation to Sphinx. The problem is that the documentation uses Python docstrings (the module is written in C, but it probably does not matter) ...
1
vote
2answers
700 views

pydoc fails under Windows and Python 2.6.4

When trying to use pydoc under Windows and python.org 2.6.4 I get the following error: C:\>pydoc sys 'import site' failed; use -v for traceback Traceback (most recent call last): File ...
1
vote
1answer
278 views

Can pydoc generate subdirectories?

Is there any way to get pydoc's writedocs() function to create subdirectories for packages? For instance, let's say I have the following modules to document: foo.py dir/bar.py dir/init.py When I ...
0
votes
1answer
16 views

get function declaration (present in pydoc output) with __doc__ attribute

Example: import numpy print numpy.polydiv.__doc__ output: Returns the quotient and remainder of polynomial division... While using pydoc: $ pydoc numpy.polydiv I get: numpy.polydiv = ...
0
votes
0answers
12 views

Accessing pydoc when using Movable Python

I'm currently going through Zed A. Shaw's Learn Python the Hard Way. I'm running python off my thumbdrive with Movable Python, using movable IDLE. From what I've read, if I was running it off my PC I ...
0
votes
0answers
55 views

Any way of getting PyDoc into Jira Confluence

I'm using PyDoc to generate documentation from my Python code and I'm using Jira's Confluence plugin to manage documentation. Is there any way to generating PyDoc documentation and putting it into ...
0
votes
1answer
127 views

How do I setup a portable pydoc server that closes when portable browsers have been shut down?

I've set up a portable environment on my flash drive consisting of Chromium Portable, Firefox Portable and Python 3. I am trying to write a Python 3 script that will launch a pydoc server to be ...
0
votes
2answers
168 views

How to define the “MODULE DOCS” for display with pydoc?

The pydoc documentation of some Python modules (like math and sys) has a "MODULE DOCS" section that contains a useful link to some HTML documentation: Help on module math: NAME math FILE ...
0
votes
3answers
135 views

get `object.__doc__` as raw string

Is there a way to get object.__doc__ as a raw string, apart from adding an 'r' in-front of the doctring itself in the source code? I have latex code inside and the '\r's, '\f's etc are creating ...