Hi,

If I want to know, for instance, what modules are included in another
projects zlib zipped objects.inv, I can do

from sphinx.ext.intersphinx import read_inventory_v2
from posixpath import join

uri = 'http://docs.scipy.org/doc/numpy/'
inv = 'objects.inv'
f = open(inv, 'rb')
line = f.readline() # burn a line
invdata = read_inventory_v2(f, uri, join)

But then what should I do? How can I tell if a certain module is available
or missing through intersphinx? I am also unclear about how one goes about
adding modules to objects.inv. I haven't seen much about this in the docs,
but please point it out if I've missed it.

Thanks,

Skipper

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to sphinx-dev@googlegroups.com.
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to