Georg Brandl 037954d850 The `autodoc_skip_member` event now also gets to decide
whether to skip members whose name starts with underscores.
Previously, these members were always automatically skipped.
Therefore, if you handle this event, add something like this
to your event handler to restore the old behavior::

   if name.startswith('_'):
       return True
2008-12-15 12:49:40 +01:00
2008-12-15 12:33:13 +01:00
2008-11-16 09:16:17 +01:00
2008-01-11 14:21:06 +00:00
2008-12-07 21:40:33 +01:00
2008-11-23 19:50:56 +01:00
2008-01-11 14:19:54 +00:00
2008-11-24 20:33:58 +01:00
2008-11-23 19:13:15 +01:00
2008-11-04 08:40:19 +01:00
2008-11-04 02:34:12 +01:00

=================
README for Sphinx
=================

Installing
==========

Use ``setup.py``::

   python setup.py build
   sudo python setup.py install


Reading the docs
================

After installing::

   cd doc
   sphinx-build . _build/html

Then, direct your browser to ``_build/html/index.html``.

Or read them online at <http://sphinx.pocoo.org/>.


Contributing
============

Send wishes, comments, patches, etc. to sphinx-dev@googlegroups.com.
S
Description
The Sphinx documentation generator
Readme
151 MiB
Languages
Python 72.6%
JavaScript 18.9%
TeX 5.5%
Jinja 2.2%
HTML 0.5%
Other 0.2%