Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6af16190f6657fc482d84b4c4e3bdfc2c63d8a42 authored by Barry Warsaw on 18 September 2008, 04:33:43 UTC
Bumping to 2.6rc2
Tip revision: 6af1619
sphinx-web.py
# -*- coding: utf-8 -*-
"""
    Sphinx - Python documentation webserver
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    :copyright: 2007 by Georg Brandl.
    :license: Python license.
"""

import sys

if __name__ == '__main__':
    from sphinx.web import main
    sys.exit(main(sys.argv))
back to top