mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Make HTML the default output format, since that is what people actually
want most of the time.
This commit is contained in:
parent
fc3fc337d0
commit
5599441bbf
1 changed files with 3 additions and 3 deletions
|
@ -3,8 +3,8 @@
|
|||
"""usage: %(program)s [options...] file ...
|
||||
|
||||
Options specifying formats to build:
|
||||
--html HyperText Markup Language
|
||||
--pdf Portable Document Format (default)
|
||||
--html HyperText Markup Language (default)
|
||||
--pdf Portable Document Format
|
||||
--ps PostScript
|
||||
--dvi 'DeVice Indepentent' format from TeX
|
||||
--text ASCII text (requires lynx)
|
||||
|
@ -97,7 +97,7 @@ class Options:
|
|||
up_link = None
|
||||
up_title = None
|
||||
#
|
||||
DEFAULT_FORMATS = ("pdf",)
|
||||
DEFAULT_FORMATS = ("html",)
|
||||
ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text")
|
||||
|
||||
def __init__(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue