2001-02-27 10:43:46 -04:00
#!/usr/bin/env python
2002-08-06 14:29:38 -03:00
# -*- coding: Latin-1 -*-
2001-02-28 20:24:32 -04:00
""" Generate Python documentation in HTML or text for interactive use.
2001-02-27 10:43:46 -04:00
2001-03-01 09:55:20 -04:00
In the Python interpreter , do " from pydoc import help " to provide online
help . Calling help ( thing ) on a Python object documents the object .
2001-02-27 10:43:46 -04:00
2001-03-22 20:12:53 -04:00
Or , at the shell command line outside of Python :
2001-02-27 10:43:46 -04:00
2001-03-22 20:12:53 -04:00
Run " pydoc <name> " to show documentation on something . < name > may be
the name of a function , module , package , or a dotted reference to a
class or function within a module or module in a package . If the
argument contains a path segment delimiter ( e . g . slash on Unix ,
backslash on Windows ) it is treated as the path to a Python source file .
2001-02-27 10:43:46 -04:00
2001-03-22 20:12:53 -04:00
Run " pydoc -k <keyword> " to search for a keyword in the synopsis lines
of all available modules .
2001-02-27 10:43:46 -04:00
2001-03-22 20:12:53 -04:00
Run " pydoc -p <port> " to start an HTTP server on a given port on the
local machine to generate documentation web pages .
2001-03-01 09:55:20 -04:00
2001-03-22 20:12:53 -04:00
For platforms without a command line , " pydoc -g " starts the HTTP server
and also pops up a little window for controlling it .
Run " pydoc -w <name> " to write out the HTML documentation for a module
to a file named " <name>.html " .
2003-09-10 13:47:51 -03:00
Module docs for core modules are assumed to be in
2008-01-21 13:13:03 -04:00
http : / / docs . python . org / library /
2003-09-10 13:47:51 -03:00
This can be overridden by setting the PYTHONDOCS environment variable
to a different URL or to a local directory containing the Library
Reference Manual pages .
2001-03-01 09:55:20 -04:00
"""
2001-02-27 10:43:46 -04:00
__author__ = " Ka-Ping Yee <ping@lfw.org> "
2001-02-27 18:42:36 -04:00
__date__ = " 26 February 2001 "
2005-10-20 16:59:25 -03:00
2001-02-27 18:43:48 -04:00
__version__ = " $Revision$ "
2004-11-14 06:21:04 -04:00
__credits__ = """ Guido van Rossum, for an excellent programming language.
2001-02-27 19:35:09 -04:00
Tommy Burnette , the original creator of manpy .
2001-02-27 18:42:36 -04:00
Paul Prescod , for all his work on onlinehelp .
Richard Chamberlain , for the first implementation of textdoc .
2005-01-01 03:51:01 -04:00
"""
2001-02-27 10:43:46 -04:00
2001-04-10 08:46:02 -03:00
# Known bugs that can't be fixed here:
# - imp.load_module() cannot be prevented from clobbering existing
# loaded modules, so calling synopsis() on a binary module file
# changes the contents of any existing module with the same name.
# - If the __file__ attribute on a module is a relative path and
# the current directory is changed with os.chdir(), an incorrect
# path will be displayed.
2001-03-01 09:55:20 -04:00
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
import sys , imp , os , re , types , inspect , __builtin__ , pkgutil
2001-02-27 10:43:46 -04:00
from repr import Repr
2001-03-23 09:17:50 -04:00
from string import expandtabs , find , join , lower , split , strip , rfind , rstrip
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
try :
from collections import deque
except ImportError :
# Python 2.3 compatibility
class deque ( list ) :
def popleft ( self ) :
return self . pop ( 0 )
2001-02-27 10:43:46 -04:00
# --------------------------------------------------------- common routines
def pathdirs ( ) :
""" Convert sys.path into a list of absolute, existing, unique paths. """
dirs = [ ]
2001-02-28 20:24:32 -04:00
normdirs = [ ]
2001-02-27 10:43:46 -04:00
for dir in sys . path :
dir = os . path . abspath ( dir or ' . ' )
2001-02-28 20:24:32 -04:00
normdir = os . path . normcase ( dir )
if normdir not in normdirs and os . path . isdir ( dir ) :
2001-02-27 10:43:46 -04:00
dirs . append ( dir )
2001-02-28 20:24:32 -04:00
normdirs . append ( normdir )
2001-02-27 10:43:46 -04:00
return dirs
def getdoc ( object ) :
""" Get the doc string or comments for an object. """
2001-03-23 09:17:50 -04:00
result = inspect . getdoc ( object ) or inspect . getcomments ( object )
2001-03-01 22:45:08 -04:00
return result and re . sub ( ' ^ * \n ' , ' ' , rstrip ( result ) ) or ' '
2001-02-27 10:43:46 -04:00
2001-04-10 08:46:02 -03:00
def splitdoc ( doc ) :
""" Split a doc string into a synopsis line (if any) and the rest. """
lines = split ( strip ( doc ) , ' \n ' )
if len ( lines ) == 1 :
return lines [ 0 ] , ' '
elif len ( lines ) > = 2 and not rstrip ( lines [ 1 ] ) :
return lines [ 0 ] , join ( lines [ 2 : ] , ' \n ' )
return ' ' , join ( lines , ' \n ' )
2001-02-27 10:43:46 -04:00
def classname ( object , modname ) :
""" Get a class name and qualify it with a module name if necessary. """
name = object . __name__
if object . __module__ != modname :
name = object . __module__ + ' . ' + name
return name
2001-04-13 06:55:49 -03:00
def isdata ( object ) :
2005-07-22 18:52:25 -03:00
""" Check if an object is of a type that probably means it ' s data. """
2001-04-13 06:55:49 -03:00
return not ( inspect . ismodule ( object ) or inspect . isclass ( object ) or
inspect . isroutine ( object ) or inspect . isframe ( object ) or
inspect . istraceback ( object ) or inspect . iscode ( object ) )
2001-02-27 10:43:46 -04:00
def replace ( text , * pairs ) :
""" Do a series of global replacements on a string. """
2001-04-12 07:50:23 -03:00
while pairs :
text = join ( split ( text , pairs [ 0 ] ) , pairs [ 1 ] )
pairs = pairs [ 2 : ]
2001-02-27 10:43:46 -04:00
return text
def cram ( text , maxlen ) :
""" Omit part of a string if needed to make it fit in a maximum length. """
if len ( text ) > maxlen :
2002-10-21 01:44:11 -03:00
pre = max ( 0 , ( maxlen - 3 ) / / 2 )
2001-02-27 10:43:46 -04:00
post = max ( 0 , maxlen - 3 - pre )
return text [ : pre ] + ' ... ' + text [ len ( text ) - post : ]
return text
2004-06-18 22:22:48 -03:00
_re_stripid = re . compile ( r ' at 0x[0-9a-f] { 6,16}(>+)$ ' , re . IGNORECASE )
2001-02-28 20:24:32 -04:00
def stripid ( text ) :
2001-02-27 10:43:46 -04:00
""" Remove the hexadecimal id from a Python object representation. """
2004-06-18 22:02:51 -03:00
# The behaviour of %p is implementation-dependent in terms of case.
if _re_stripid . search ( repr ( Exception ) ) :
return _re_stripid . sub ( r ' \ 1 ' , text )
2001-02-28 20:24:32 -04:00
return text
2001-02-27 10:43:46 -04:00
2004-06-18 22:02:51 -03:00
def _is_some_method ( obj ) :
return inspect . ismethod ( obj ) or inspect . ismethoddescriptor ( obj )
2001-09-20 02:13:38 -03:00
2001-03-23 09:17:50 -04:00
def allmethods ( cl ) :
methods = { }
2001-09-20 02:13:38 -03:00
for key , value in inspect . getmembers ( cl , _is_some_method ) :
2001-03-23 09:17:50 -04:00
methods [ key ] = 1
for base in cl . __bases__ :
methods . update ( allmethods ( base ) ) # all your base are belong to us
for key in methods . keys ( ) :
methods [ key ] = getattr ( cl , key )
return methods
2001-09-24 05:05:11 -03:00
def _split_list ( s , predicate ) :
""" Split sequence s via predicate, and return pair ([true], [false]).
The return value is a 2 - tuple of lists ,
( [ x for x in s if predicate ( x ) ] ,
[ x for x in s if not predicate ( x ) ] )
"""
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
yes = [ ]
no = [ ]
2001-09-24 05:05:11 -03:00
for x in s :
if predicate ( x ) :
yes . append ( x )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
else :
2001-09-24 05:05:11 -03:00
no . append ( x )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
return yes , no
2004-06-11 01:46:12 -03:00
def visiblename ( name , all = None ) :
2003-03-28 12:35:51 -04:00
""" Decide whether to show documentation on a variable. """
# Certain special names are redundant.
2005-02-06 02:57:08 -04:00
if name in ( ' __builtins__ ' , ' __doc__ ' , ' __file__ ' , ' __path__ ' ,
' __module__ ' , ' __name__ ' , ' __slots__ ' ) : return 0
2003-03-28 12:35:51 -04:00
# Private names are hidden, but special names are displayed.
if name . startswith ( ' __ ' ) and name . endswith ( ' __ ' ) : return 1
2004-06-11 01:46:12 -03:00
if all is not None :
# only document that which the programmer exported in __all__
return name in all
else :
return not name . startswith ( ' _ ' )
2003-03-28 12:35:51 -04:00
2005-01-08 16:16:43 -04:00
def classify_class_attrs ( object ) :
""" Wrap inspect.classify_class_attrs, with fixup for data descriptors. """
def fixup ( ( name , kind , cls , value ) ) :
if inspect . isdatadescriptor ( value ) :
kind = ' data descriptor '
return name , kind , cls , value
return map ( fixup , inspect . classify_class_attrs ( object ) )
2001-04-13 06:55:49 -03:00
# ----------------------------------------------------- module manipulation
def ispackage ( path ) :
""" Guess whether a path refers to a package directory. """
if os . path . isdir ( path ) :
2005-02-06 02:57:08 -04:00
for ext in ( ' .py ' , ' .pyc ' , ' .pyo ' ) :
2001-04-13 06:55:49 -03:00
if os . path . isfile ( os . path . join ( path , ' __init__ ' + ext ) ) :
2002-04-04 18:55:58 -04:00
return True
return False
2001-04-13 06:55:49 -03:00
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
def source_synopsis ( file ) :
line = file . readline ( )
while line [ : 1 ] == ' # ' or not strip ( line ) :
line = file . readline ( )
if not line : break
line = strip ( line )
if line [ : 4 ] == ' r " " " ' : line = line [ 1 : ]
if line [ : 3 ] == ' " " " ' :
line = line [ 3 : ]
if line [ - 1 : ] == ' \\ ' : line = line [ : - 1 ]
while not strip ( line ) :
line = file . readline ( )
if not line : break
result = strip ( split ( line , ' " " " ' ) [ 0 ] )
else : result = None
return result
2001-04-13 06:55:49 -03:00
def synopsis ( filename , cache = { } ) :
""" Get the one-line summary out of a module file. """
2002-06-01 16:51:15 -03:00
mtime = os . stat ( filename ) . st_mtime
2001-04-13 06:55:49 -03:00
lastupdate , result = cache . get ( filename , ( 0 , None ) )
if lastupdate < mtime :
info = inspect . getmoduleinfo ( filename )
2006-03-08 05:34:53 -04:00
try :
file = open ( filename )
except IOError :
# module can't be opened, so skip it
return None
2001-04-13 06:55:49 -03:00
if info and ' b ' in info [ 2 ] : # binary modules have to be imported
try : module = imp . load_module ( ' __temp__ ' , file , filename , info [ 1 : ] )
except : return None
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
result = ( module . __doc__ or ' ' ) . splitlines ( ) [ 0 ]
2001-04-13 06:55:49 -03:00
del sys . modules [ ' __temp__ ' ]
else : # text modules can be directly examined
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
result = source_synopsis ( file )
file . close ( )
2001-04-13 06:55:49 -03:00
cache [ filename ] = ( mtime , result )
return result
2001-03-23 09:17:50 -04:00
class ErrorDuringImport ( Exception ) :
""" Errors that occurred while trying to import something to document it. """
def __init__ ( self , filename , ( exc , value , tb ) ) :
2001-02-27 10:43:46 -04:00
self . filename = filename
2001-03-23 09:17:50 -04:00
self . exc = exc
2001-03-22 20:12:53 -04:00
self . value = value
self . tb = tb
def __str__ ( self ) :
2001-03-23 09:17:50 -04:00
exc = self . exc
if type ( exc ) is types . ClassType :
exc = exc . __name__
return ' problem in %s - %s : %s ' % ( self . filename , exc , self . value )
2001-02-27 10:43:46 -04:00
def importfile ( path ) :
""" Import a Python source file or compiled file given its path. """
magic = imp . get_magic ( )
file = open ( path , ' r ' )
if file . read ( len ( magic ) ) == magic :
kind = imp . PY_COMPILED
else :
kind = imp . PY_SOURCE
file . close ( )
filename = os . path . basename ( path )
name , ext = os . path . splitext ( filename )
file = open ( path , ' r ' )
try :
module = imp . load_module ( name , file , path , ( ext , ' r ' , kind ) )
except :
2001-03-23 09:17:50 -04:00
raise ErrorDuringImport ( path , sys . exc_info ( ) )
2001-02-27 10:43:46 -04:00
file . close ( )
return module
2001-04-13 06:55:49 -03:00
def safeimport ( path , forceload = 0 , cache = { } ) :
""" Import a module; handle errors; return None if the module isn ' t found.
If the module * is * found but an exception occurs , it ' s wrapped in an
ErrorDuringImport exception and reraised . Unlike __import__ , if a
package path is specified , the module at the end of the path is returned ,
not the package at the beginning . If the optional ' forceload ' argument
is 1 , we reload the module from disk ( unless it ' s a dynamic extension). " " "
try :
2005-11-05 01:04:41 -04:00
# If forceload is 1 and the module has been previously loaded from
# disk, we always have to reload the module. Checking the file's
# mtime isn't good enough (e.g. the module could contain a class
# that inherits from another module that has changed).
if forceload and path in sys . modules :
if path not in sys . builtin_module_names :
# Avoid simply calling reload() because it leaves names in
# the currently loaded module lying around if they're not
# defined in the new source file. Instead, remove the
# module from sys.modules and re-import. Also remove any
# submodules because they won't appear in the newly loaded
# module's namespace if they're already in sys.modules.
subs = [ m for m in sys . modules if m . startswith ( path + ' . ' ) ]
for key in [ path ] + subs :
# Prevent garbage collection.
cache [ key ] = sys . modules [ key ]
del sys . modules [ key ]
2001-04-13 06:55:49 -03:00
module = __import__ ( path )
except :
# Did the error occur before or after the module was found?
( exc , value , tb ) = info = sys . exc_info ( )
2002-06-01 11:18:47 -03:00
if path in sys . modules :
2005-10-28 11:39:47 -03:00
# An error occurred while executing the imported module.
2001-04-13 06:55:49 -03:00
raise ErrorDuringImport ( sys . modules [ path ] . __file__ , info )
elif exc is SyntaxError :
# A SyntaxError occurred before we could execute the module.
raise ErrorDuringImport ( value . filename , info )
elif exc is ImportError and \
split ( lower ( str ( value ) ) ) [ : 2 ] == [ ' no ' , ' module ' ] :
# The module was not found.
return None
else :
# Some other error occurred during the importing process.
raise ErrorDuringImport ( path , sys . exc_info ( ) )
for part in split ( path , ' . ' ) [ 1 : ] :
try : module = getattr ( module , part )
except AttributeError : return None
return module
2001-02-27 10:43:46 -04:00
# ---------------------------------------------------- formatter base class
class Doc :
2001-03-22 20:12:53 -04:00
def document ( self , object , name = None , * args ) :
2001-02-27 10:43:46 -04:00
""" Generate documentation for an object. """
2001-03-22 20:12:53 -04:00
args = ( object , name ) + args
2003-06-11 20:38:55 -03:00
# 'try' clause is to attempt to handle the possibility that inspect
# identifies something in a way that pydoc itself has issues handling;
# think 'super' and how it is a descriptor (which raises the exception
# by lacking a __name__ attribute) and an instance.
2006-07-27 20:43:15 -03:00
if inspect . isgetsetdescriptor ( object ) : return self . docdata ( * args )
if inspect . ismemberdescriptor ( object ) : return self . docdata ( * args )
2003-06-11 20:38:55 -03:00
try :
if inspect . ismodule ( object ) : return self . docmodule ( * args )
if inspect . isclass ( object ) : return self . docclass ( * args )
if inspect . isroutine ( object ) : return self . docroutine ( * args )
except AttributeError :
pass
2004-11-07 15:16:05 -04:00
if isinstance ( object , property ) : return self . docproperty ( * args )
2003-02-27 16:14:51 -04:00
return self . docother ( * args )
2001-03-22 20:12:53 -04:00
def fail ( self , object , name = None , * args ) :
""" Raise an exception for unimplemented types. """
message = " don ' t know how to document object %s of type %s " % (
name and ' ' + repr ( name ) , type ( object ) . __name__ )
raise TypeError , message
2006-07-27 20:43:15 -03:00
docmodule = docclass = docroutine = docother = docproperty = docdata = fail
2001-02-27 10:43:46 -04:00
2003-09-10 13:47:51 -03:00
def getdocloc ( self , object ) :
""" Return the location of module docs or None """
try :
file = inspect . getabsfile ( object )
except TypeError :
file = ' (built-in) '
docloc = os . environ . get ( " PYTHONDOCS " ,
2008-01-21 13:13:03 -04:00
" http://docs.python.org/library " )
2003-09-10 13:47:51 -03:00
basedir = os . path . join ( sys . exec_prefix , " lib " ,
" python " + sys . version [ 0 : 3 ] )
if ( isinstance ( object , type ( os ) ) and
( object . __name__ in ( ' errno ' , ' exceptions ' , ' gc ' , ' imp ' ,
' marshal ' , ' posix ' , ' signal ' , ' sys ' ,
' thread ' , ' zipimport ' ) or
( file . startswith ( basedir ) and
not file . startswith ( os . path . join ( basedir , ' site-packages ' ) ) ) ) ) :
if docloc . startswith ( " http:// " ) :
2008-01-21 13:13:03 -04:00
docloc = " %s / %s " % ( docloc . rstrip ( " / " ) , object . __name__ )
2003-09-10 13:47:51 -03:00
else :
2008-01-21 13:13:03 -04:00
docloc = os . path . join ( docloc , object . __name__ + " .html " )
2003-09-10 13:47:51 -03:00
else :
docloc = None
return docloc
2001-02-27 10:43:46 -04:00
# -------------------------------------------- HTML documentation generator
class HTMLRepr ( Repr ) :
""" Class for safely making an HTML representation of a Python object. """
def __init__ ( self ) :
Repr . __init__ ( self )
2001-04-13 06:55:49 -03:00
self . maxlist = self . maxtuple = 20
self . maxdict = 10
2001-03-22 20:12:53 -04:00
self . maxstring = self . maxother = 100
2001-02-27 10:43:46 -04:00
def escape ( self , text ) :
2001-04-12 07:50:23 -03:00
return replace ( text , ' & ' , ' & ' , ' < ' , ' < ' , ' > ' , ' > ' )
2001-02-27 10:43:46 -04:00
def repr ( self , object ) :
2001-03-22 20:12:53 -04:00
return Repr . repr ( self , object )
2001-02-27 10:43:46 -04:00
def repr1 ( self , x , level ) :
2003-06-27 12:45:41 -03:00
if hasattr ( type ( x ) , ' __name__ ' ) :
methodname = ' repr_ ' + join ( split ( type ( x ) . __name__ ) , ' _ ' )
if hasattr ( self , methodname ) :
return getattr ( self , methodname ) ( x , level )
return self . escape ( cram ( stripid ( repr ( x ) ) , self . maxother ) )
2001-02-27 10:43:46 -04:00
def repr_string ( self , x , level ) :
2001-03-01 21:19:14 -04:00
test = cram ( x , self . maxstring )
testrepr = repr ( test )
2001-04-12 07:50:23 -03:00
if ' \\ ' in test and ' \\ ' not in replace ( testrepr , r ' \\ ' , ' ' ) :
2001-03-01 21:19:14 -04:00
# Backslashes are only literal in the string and are never
# needed to make any special characters, so show a raw string.
return ' r ' + testrepr [ 0 ] + self . escape ( test ) + testrepr [ 0 ]
2001-04-10 08:46:02 -03:00
return re . sub ( r ' (( \\ [ \\ abfnrtv \' " ]| \\ [0-9]..| \\ x..| \\ u....)+) ' ,
2001-03-01 21:19:14 -04:00
r ' <font color= " #c040c0 " > \ 1</font> ' ,
self . escape ( testrepr ) )
2001-02-27 10:43:46 -04:00
2002-03-07 18:58:02 -04:00
repr_str = repr_string
2001-02-27 10:43:46 -04:00
def repr_instance ( self , x , level ) :
try :
2001-03-22 20:12:53 -04:00
return self . escape ( cram ( stripid ( repr ( x ) ) , self . maxstring ) )
2001-02-27 10:43:46 -04:00
except :
return self . escape ( ' < %s instance> ' % x . __class__ . __name__ )
repr_unicode = repr_string
class HTMLDoc ( Doc ) :
""" Formatter class for HTML documentation. """
# ------------------------------------------- HTML formatting utilities
_repr_instance = HTMLRepr ( )
repr = _repr_instance . repr
escape = _repr_instance . escape
2001-03-22 20:12:53 -04:00
def page ( self , title , contents ) :
""" Format an HTML page. """
return '''
2001-10-31 00:20:26 -04:00
< ! doctype html PUBLIC " -//W3C//DTD HTML 4.0 Transitional//EN " >
2001-03-23 09:17:50 -04:00
< html > < head > < title > Python : % s < / title >
2003-03-28 12:35:51 -04:00
< / head > < body bgcolor = " #f0f0f8 " >
2001-03-22 20:12:53 -04:00
% s
< / body > < / html > ''' % (title, contents)
def heading ( self , title , fgcol , bgcol , extras = ' ' ) :
""" Format a page heading. """
return '''
2001-10-31 00:20:26 -04:00
< table width = " 100 %% " cellspacing = 0 cellpadding = 2 border = 0 summary = " heading " >
2001-03-22 20:12:53 -04:00
< tr bgcolor = " %s " >
2001-09-25 00:18:32 -03:00
< td valign = bottom > & nbsp ; < br >
< font color = " %s " face = " helvetica, arial " > & nbsp ; < br > % s < / font > < / td
2001-03-22 20:12:53 -04:00
> < td align = right valign = bottom
2001-03-23 09:35:45 -04:00
> < font color = " %s " face = " helvetica, arial " > % s < / font > < / td > < / tr > < / table >
2001-03-22 20:12:53 -04:00
''' % (bgcol, fgcol, title, fgcol, extras or ' ' )
2003-03-28 12:35:51 -04:00
def section ( self , title , fgcol , bgcol , contents , width = 6 ,
prelude = ' ' , marginalia = None , gap = ' ' ) :
2001-03-22 20:12:53 -04:00
""" Format a section with a heading. """
if marginalia is None :
2001-04-10 08:46:02 -03:00
marginalia = ' <tt> ' + ' ' * width + ' </tt> '
2003-03-28 12:35:51 -04:00
result = ''' <p>
2001-10-31 00:20:26 -04:00
< table width = " 100 %% " cellspacing = 0 cellpadding = 2 border = 0 summary = " section " >
2001-03-22 20:12:53 -04:00
< tr bgcolor = " %s " >
2001-09-25 00:18:32 -03:00
< td colspan = 3 valign = bottom > & nbsp ; < br >
< font color = " %s " face = " helvetica, arial " > % s < / font > < / td > < / tr >
2001-03-22 20:12:53 -04:00
''' % (bgcol, fgcol, title)
if prelude :
result = result + '''
2001-03-23 09:35:45 -04:00
< tr bgcolor = " %s " > < td rowspan = 2 > % s < / td >
< td colspan = 2 > % s < / td > < / tr >
< tr > < td > % s < / td > ''' % (bgcol, marginalia, prelude, gap)
else :
result = result + '''
2001-03-23 09:17:50 -04:00
< tr > < td bgcolor = " %s " > % s < / td > < td > % s < / td > ''' % (bgcol, marginalia, gap)
2001-03-22 20:12:53 -04:00
2001-04-10 08:46:02 -03:00
return result + ' \n <td width= " 100 %% " > %s </td></tr></table> ' % contents
2001-03-22 20:12:53 -04:00
def bigsection ( self , title , * args ) :
""" Format a section with a big heading. """
title = ' <big><strong> %s </strong></big> ' % title
2003-02-27 16:14:51 -04:00
return self . section ( title , * args )
2001-03-22 20:12:53 -04:00
2001-02-27 10:43:46 -04:00
def preformat ( self , text ) :
""" Format literal preformatted text. """
text = self . escape ( expandtabs ( text ) )
2001-04-12 07:50:23 -03:00
return replace ( text , ' \n \n ' , ' \n \n ' , ' \n \n ' , ' \n \n ' ,
' ' , ' ' , ' \n ' , ' <br> \n ' )
2001-02-27 10:43:46 -04:00
def multicolumn ( self , list , format , cols = 4 ) :
""" Format a list of items into a multi-column list. """
result = ' '
rows = ( len ( list ) + cols - 1 ) / cols
for col in range ( cols ) :
result = result + ' <td width= " %d %% " valign=top> ' % ( 100 / cols )
for i in range ( rows * col , rows * col + rows ) :
if i < len ( list ) :
2001-03-23 09:17:50 -04:00
result = result + format ( list [ i ] ) + ' <br> \n '
2001-02-27 10:43:46 -04:00
result = result + ' </td> '
2001-10-31 00:20:26 -04:00
return ' <table width= " 100 %% " summary= " list " ><tr> %s </tr></table> ' % result
2001-02-27 10:43:46 -04:00
2001-03-22 20:12:53 -04:00
def grey ( self , text ) : return ' <font color= " #909090 " > %s </font> ' % text
2001-02-27 10:43:46 -04:00
def namelink ( self , name , * dicts ) :
""" Make a link for an identifier, given name-to-URL mappings. """
for dict in dicts :
2002-06-01 11:18:47 -03:00
if name in dict :
2001-02-27 10:43:46 -04:00
return ' <a href= " %s " > %s </a> ' % ( dict [ name ] , name )
return name
2001-04-12 17:39:14 -03:00
def classlink ( self , object , modname ) :
2001-02-27 10:43:46 -04:00
""" Make a link for a class. """
2001-04-13 06:55:49 -03:00
name , module = object . __name__ , sys . modules . get ( object . __module__ )
if hasattr ( module , name ) and getattr ( module , name ) is object :
2001-04-12 17:39:14 -03:00
return ' <a href= " %s .html# %s " > %s </a> ' % (
2001-04-13 06:55:49 -03:00
module . __name__ , name , classname ( object , modname ) )
return classname ( object , modname )
2001-02-27 10:43:46 -04:00
def modulelink ( self , object ) :
""" Make a link for a module. """
return ' <a href= " %s .html " > %s </a> ' % ( object . __name__ , object . __name__ )
def modpkglink ( self , ( name , path , ispackage , shadowed ) ) :
""" Make a link for a module or package to display in an index. """
if shadowed :
2001-03-22 20:12:53 -04:00
return self . grey ( name )
2001-02-27 10:43:46 -04:00
if path :
url = ' %s . %s .html ' % ( path , name )
else :
url = ' %s .html ' % name
if ispackage :
text = ' <strong> %s </strong> (package) ' % name
else :
text = name
return ' <a href= " %s " > %s </a> ' % ( url , text )
def markup ( self , text , escape = None , funcs = { } , classes = { } , methods = { } ) :
""" Mark up some plain text, given a context of symbols to look for.
Each context dictionary maps object names to anchor names . """
escape = escape or self . escape
results = [ ]
here = 0
2001-03-23 09:17:50 -04:00
pattern = re . compile ( r ' \ b((http|ftp):// \ S+[ \ w/]| '
r ' RFC[- ]?( \ d+)| '
2001-03-27 04:13:42 -04:00
r ' PEP[- ]?( \ d+)| '
2002-03-24 19:02:07 -04:00
r ' (self \ .)?( \ w+)) ' )
2002-04-07 03:36:23 -03:00
while True :
2001-02-27 10:43:46 -04:00
match = pattern . search ( text , here )
if not match : break
start , end = match . span ( )
results . append ( escape ( text [ here : start ] ) )
2001-03-27 04:13:42 -04:00
all , scheme , rfc , pep , selfdot , name = match . groups ( )
2001-03-23 09:17:50 -04:00
if scheme :
2002-03-24 19:11:21 -04:00
url = escape ( all ) . replace ( ' " ' , ' " ' )
results . append ( ' <a href= " %s " > %s </a> ' % ( url , url ) )
2001-02-27 10:43:46 -04:00
elif rfc :
2001-03-27 04:13:42 -04:00
url = ' http://www.rfc-editor.org/rfc/rfc %d .txt ' % int ( rfc )
results . append ( ' <a href= " %s " > %s </a> ' % ( url , escape ( all ) ) )
elif pep :
2008-02-05 12:06:57 -04:00
url = ' http://www.python.org/dev/peps/pep- %04d / ' % int ( pep )
2001-03-23 09:17:50 -04:00
results . append ( ' <a href= " %s " > %s </a> ' % ( url , escape ( all ) ) )
elif text [ end : end + 1 ] == ' ( ' :
results . append ( self . namelink ( name , methods , funcs , classes ) )
elif selfdot :
results . append ( ' self.<strong> %s </strong> ' % name )
2001-02-27 10:43:46 -04:00
else :
2001-03-23 09:17:50 -04:00
results . append ( self . namelink ( name , classes ) )
2001-02-27 10:43:46 -04:00
here = end
results . append ( escape ( text [ here : ] ) )
return join ( results , ' ' )
# ---------------------------------------------- type-specific routines
2001-04-12 17:39:14 -03:00
def formattree ( self , tree , modname , parent = None ) :
2001-02-27 10:43:46 -04:00
""" Produce HTML for a class tree as given by inspect.getclasstree(). """
result = ' '
for entry in tree :
if type ( entry ) is type ( ( ) ) :
c , bases = entry
2001-09-25 00:18:32 -03:00
result = result + ' <dt><font face= " helvetica, arial " > '
2001-04-12 17:39:14 -03:00
result = result + self . classlink ( c , modname )
2001-02-27 10:43:46 -04:00
if bases and bases != ( parent , ) :
parents = [ ]
for base in bases :
2001-04-12 17:39:14 -03:00
parents . append ( self . classlink ( base , modname ) )
2001-02-27 10:43:46 -04:00
result = result + ' ( ' + join ( parents , ' , ' ) + ' ) '
2001-09-25 00:18:32 -03:00
result = result + ' \n </font></dt> '
2001-02-27 10:43:46 -04:00
elif type ( entry ) is type ( [ ] ) :
2001-03-22 20:12:53 -04:00
result = result + ' <dd> \n %s </dd> \n ' % self . formattree (
2001-04-12 17:39:14 -03:00
entry , modname , c )
2001-02-27 10:43:46 -04:00
return ' <dl> \n %s </dl> \n ' % result
2001-10-18 16:56:17 -03:00
def docmodule ( self , object , name = None , mod = None , * ignored ) :
2001-02-27 10:43:46 -04:00
""" Produce HTML documentation for a module object. """
2001-03-22 20:12:53 -04:00
name = object . __name__ # ignore the passed-in name
2004-06-11 01:46:12 -03:00
try :
all = object . __all__
except AttributeError :
all = None
2001-03-01 09:55:20 -04:00
parts = split ( name , ' . ' )
links = [ ]
for i in range ( len ( parts ) - 1 ) :
links . append (
' <a href= " %s .html " ><font color= " #ffffff " > %s </font></a> ' %
( join ( parts [ : i + 1 ] , ' . ' ) , parts [ i ] ) )
linkedname = join ( links + parts [ - 1 : ] , ' . ' )
head = ' <big><big><strong> %s </strong></big></big> ' % linkedname
2001-02-27 10:43:46 -04:00
try :
2001-03-01 22:45:08 -04:00
path = inspect . getabsfile ( object )
2001-04-13 12:00:27 -03:00
url = path
if sys . platform == ' win32 ' :
import nturl2path
url = nturl2path . pathname2url ( path )
filelink = ' <a href= " file: %s " > %s </a> ' % ( url , path )
2001-02-27 10:43:46 -04:00
except TypeError :
filelink = ' (built-in) '
2001-02-27 18:42:36 -04:00
info = [ ]
2001-02-27 10:43:46 -04:00
if hasattr ( object , ' __version__ ' ) :
2001-02-27 18:42:36 -04:00
version = str ( object . __version__ )
2001-02-27 18:46:01 -04:00
if version [ : 11 ] == ' $ ' + ' Revision: ' and version [ - 1 : ] == ' $ ' :
version = strip ( version [ 11 : - 1 ] )
2001-02-28 20:24:32 -04:00
info . append ( ' version %s ' % self . escape ( version ) )
2001-02-27 18:42:36 -04:00
if hasattr ( object , ' __date__ ' ) :
info . append ( self . escape ( str ( object . __date__ ) ) )
if info :
head = head + ' ( %s ) ' % join ( info , ' , ' )
2003-09-10 13:47:51 -03:00
docloc = self . getdocloc ( object )
if docloc is not None :
docloc = ' <br><a href= " %(docloc)s " >Module Docs</a> ' % locals ( )
else :
docloc = ' '
2001-03-01 09:55:20 -04:00
result = self . heading (
2003-09-10 13:47:51 -03:00
head , ' #ffffff ' , ' #7799ee ' ,
' <a href= " . " >index</a><br> ' + filelink + docloc )
2001-02-27 10:43:46 -04:00
2001-03-22 20:12:53 -04:00
modules = inspect . getmembers ( object , inspect . ismodule )
2001-02-27 10:43:46 -04:00
classes , cdict = [ ] , { }
for key , value in inspect . getmembers ( object , inspect . isclass ) :
2004-08-30 11:13:04 -03:00
# if __all__ exists, believe it. Otherwise use old heuristic.
if ( all is not None or
( inspect . getmodule ( value ) or object ) is object ) :
2004-06-11 01:46:12 -03:00
if visiblename ( key , all ) :
2003-03-28 12:35:51 -04:00
classes . append ( ( key , value ) )
cdict [ key ] = cdict [ value ] = ' # ' + key
2001-03-22 20:12:53 -04:00
for key , value in classes :
for base in value . __bases__ :
key , modname = base . __name__ , base . __module__
module = sys . modules . get ( modname )
if modname != name and module and hasattr ( module , key ) :
if getattr ( module , key ) is base :
2002-06-01 11:18:47 -03:00
if not key in cdict :
2001-03-22 20:12:53 -04:00
cdict [ key ] = cdict [ base ] = modname + ' .html# ' + key
2001-02-27 10:43:46 -04:00
funcs , fdict = [ ] , { }
for key , value in inspect . getmembers ( object , inspect . isroutine ) :
2004-08-30 11:13:04 -03:00
# if __all__ exists, believe it. Otherwise use old heuristic.
if ( all is not None or
inspect . isbuiltin ( value ) or inspect . getmodule ( value ) is object ) :
2004-06-11 01:46:12 -03:00
if visiblename ( key , all ) :
2003-03-28 12:35:51 -04:00
funcs . append ( ( key , value ) )
fdict [ key ] = ' #- ' + key
if inspect . isfunction ( value ) : fdict [ value ] = fdict [ key ]
2001-04-13 06:55:49 -03:00
data = [ ]
for key , value in inspect . getmembers ( object , isdata ) :
2004-06-11 01:46:12 -03:00
if visiblename ( key , all ) :
2001-04-13 06:55:49 -03:00
data . append ( ( key , value ) )
2001-02-27 10:43:46 -04:00
doc = self . markup ( getdoc ( object ) , self . preformat , fdict , cdict )
doc = doc and ' <tt> %s </tt> ' % doc
2001-09-25 00:18:32 -03:00
result = result + ' <p> %s </p> \n ' % doc
2001-02-27 10:43:46 -04:00
if hasattr ( object , ' __path__ ' ) :
modpkgs = [ ]
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
for importer , modname , ispkg in pkgutil . iter_modules ( object . __path__ ) :
modpkgs . append ( ( modname , name , ispkg , 0 ) )
2001-02-27 10:43:46 -04:00
modpkgs . sort ( )
contents = self . multicolumn ( modpkgs , self . modpkglink )
result = result + self . bigsection (
' Package Contents ' , ' #ffffff ' , ' #aa55cc ' , contents )
elif modules :
2001-03-22 20:12:53 -04:00
contents = self . multicolumn (
modules , lambda ( key , value ) , s = self : s . modulelink ( value ) )
2001-02-27 10:43:46 -04:00
result = result + self . bigsection (
2008-02-17 17:18:55 -04:00
' Modules ' , ' #ffffff ' , ' #aa55cc ' , contents )
2001-02-27 10:43:46 -04:00
if classes :
2001-03-22 20:12:53 -04:00
classlist = map ( lambda ( key , value ) : value , classes )
2001-04-12 17:39:14 -03:00
contents = [
self . formattree ( inspect . getclasstree ( classlist , 1 ) , name ) ]
2001-03-22 20:12:53 -04:00
for key , value in classes :
2001-04-12 07:50:23 -03:00
contents . append ( self . document ( value , key , name , fdict , cdict ) )
2001-02-27 10:43:46 -04:00
result = result + self . bigsection (
2001-03-22 20:12:53 -04:00
' Classes ' , ' #ffffff ' , ' #ee77aa ' , join ( contents ) )
2001-02-27 10:43:46 -04:00
if funcs :
2001-03-22 20:12:53 -04:00
contents = [ ]
for key , value in funcs :
2001-04-12 07:50:23 -03:00
contents . append ( self . document ( value , key , name , fdict , cdict ) )
2001-02-27 10:43:46 -04:00
result = result + self . bigsection (
2001-03-22 20:12:53 -04:00
' Functions ' , ' #ffffff ' , ' #eeaa77 ' , join ( contents ) )
2001-04-13 06:55:49 -03:00
if data :
2001-03-22 20:12:53 -04:00
contents = [ ]
2001-04-13 06:55:49 -03:00
for key , value in data :
2001-03-22 20:12:53 -04:00
contents . append ( self . document ( value , key ) )
2001-02-27 10:43:46 -04:00
result = result + self . bigsection (
2001-04-13 06:55:49 -03:00
' Data ' , ' #ffffff ' , ' #55aa55 ' , join ( contents , ' <br> \n ' ) )
2001-02-27 18:42:36 -04:00
if hasattr ( object , ' __author__ ' ) :
contents = self . markup ( str ( object . __author__ ) , self . preformat )
result = result + self . bigsection (
' Author ' , ' #ffffff ' , ' #7799ee ' , contents )
if hasattr ( object , ' __credits__ ' ) :
contents = self . markup ( str ( object . __credits__ ) , self . preformat )
result = result + self . bigsection (
' Credits ' , ' #ffffff ' , ' #7799ee ' , contents )
2001-02-27 10:43:46 -04:00
return result
2001-10-18 16:56:17 -03:00
def docclass ( self , object , name = None , mod = None , funcs = { } , classes = { } ,
* ignored ) :
2001-02-27 10:43:46 -04:00
""" Produce HTML documentation for a class object. """
2001-03-22 20:12:53 -04:00
realname = object . __name__
name = name or realname
2001-02-27 10:43:46 -04:00
bases = object . __bases__
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
contents = [ ]
push = contents . append
2001-09-24 05:05:11 -03:00
# Cute little class to pump out a horizontal rule between sections.
class HorizontalRule :
def __init__ ( self ) :
self . needone = 0
def maybe ( self ) :
if self . needone :
push ( ' <hr> \n ' )
self . needone = 1
hr = HorizontalRule ( )
2001-09-26 18:31:51 -03:00
# List the mro, if non-trivial.
2004-01-29 02:37:52 -04:00
mro = deque ( inspect . getmro ( object ) )
2001-09-26 18:31:51 -03:00
if len ( mro ) > 2 :
hr . maybe ( )
push ( ' <dl><dt>Method resolution order:</dt> \n ' )
for base in mro :
push ( ' <dd> %s </dd> \n ' % self . classlink ( base ,
object . __module__ ) )
push ( ' </dl> \n ' )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
def spill ( msg , attrs , predicate ) :
2001-09-24 05:05:11 -03:00
ok , attrs = _split_list ( attrs , predicate )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
if ok :
2001-09-24 05:05:11 -03:00
hr . maybe ( )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
push ( msg )
for name , kind , homecls , value in ok :
push ( self . document ( getattr ( object , name ) , name , mod ,
funcs , classes , mdict , object ) )
push ( ' \n ' )
return attrs
2005-01-08 16:16:43 -04:00
def spilldescriptors ( msg , attrs , predicate ) :
2001-09-24 05:05:11 -03:00
ok , attrs = _split_list ( attrs , predicate )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
if ok :
2001-09-24 05:05:11 -03:00
hr . maybe ( )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
push ( msg )
for name , kind , homecls , value in ok :
2005-01-08 16:16:43 -04:00
push ( self . _docdescriptor ( name , value , mod ) )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
return attrs
2001-09-24 05:05:11 -03:00
def spilldata ( msg , attrs , predicate ) :
ok , attrs = _split_list ( attrs , predicate )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
if ok :
2001-09-24 05:05:11 -03:00
hr . maybe ( )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
push ( msg )
for name , kind , homecls , value in ok :
base = self . docother ( getattr ( object , name ) , name , mod )
2003-05-03 06:09:02 -03:00
if callable ( value ) or inspect . isdatadescriptor ( value ) :
2002-05-21 17:56:15 -03:00
doc = getattr ( value , " __doc__ " , None )
else :
doc = None
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
if doc is None :
push ( ' <dl><dt> %s </dl> \n ' % base )
else :
doc = self . markup ( getdoc ( value ) , self . preformat ,
funcs , classes , mdict )
2001-09-25 00:18:32 -03:00
doc = ' <dd><tt> %s </tt> ' % doc
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
push ( ' <dl><dt> %s %s </dl> \n ' % ( base , doc ) )
push ( ' \n ' )
return attrs
2003-03-28 12:35:51 -04:00
attrs = filter ( lambda ( name , kind , cls , value ) : visiblename ( name ) ,
2005-01-08 16:16:43 -04:00
classify_class_attrs ( object ) )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
mdict = { }
for key , kind , homecls , value in attrs :
mdict [ key ] = anchor = ' # ' + name + ' - ' + key
value = getattr ( object , key )
try :
# The value may not be hashable (e.g., a data attr with
# a dict or list value).
mdict [ value ] = anchor
except TypeError :
pass
2001-09-24 05:05:11 -03:00
while attrs :
2001-09-27 00:29:51 -03:00
if mro :
2004-01-29 02:37:52 -04:00
thisclass = mro . popleft ( )
2001-09-27 00:29:51 -03:00
else :
thisclass = attrs [ 0 ] [ 2 ]
2001-09-24 05:05:11 -03:00
attrs , inherited = _split_list ( attrs , lambda t : t [ 2 ] is thisclass )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
2003-03-28 12:35:51 -04:00
if thisclass is __builtin__ . object :
attrs = inherited
continue
elif thisclass is object :
tag = ' defined here '
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
else :
2003-03-28 12:35:51 -04:00
tag = ' inherited from %s ' % self . classlink ( thisclass ,
object . __module__ )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
tag + = ' :<br> \n '
# Sort attrs by name.
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
try :
attrs . sort ( key = lambda t : t [ 0 ] )
except TypeError :
attrs . sort ( lambda t1 , t2 : cmp ( t1 [ 0 ] , t2 [ 0 ] ) ) # 2.3 compat
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
# Pump out the attrs, segregated by kind.
2003-03-28 12:35:51 -04:00
attrs = spill ( ' Methods %s ' % tag , attrs ,
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
lambda t : t [ 1 ] == ' method ' )
2003-03-28 12:35:51 -04:00
attrs = spill ( ' Class methods %s ' % tag , attrs ,
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
lambda t : t [ 1 ] == ' class method ' )
2003-03-28 12:35:51 -04:00
attrs = spill ( ' Static methods %s ' % tag , attrs ,
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
lambda t : t [ 1 ] == ' static method ' )
2005-01-08 16:16:43 -04:00
attrs = spilldescriptors ( ' Data descriptors %s ' % tag , attrs ,
lambda t : t [ 1 ] == ' data descriptor ' )
2003-03-28 12:35:51 -04:00
attrs = spilldata ( ' Data and other attributes %s ' % tag , attrs ,
2001-09-24 05:05:11 -03:00
lambda t : t [ 1 ] == ' data ' )
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
assert attrs == [ ]
2001-09-27 00:29:51 -03:00
attrs = inherited
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
contents = ' ' . join ( contents )
2001-03-22 20:12:53 -04:00
if name == realname :
title = ' <a name= " %s " >class <strong> %s </strong></a> ' % (
name , realname )
else :
title = ' <strong> %s </strong> = <a name= " %s " >class %s </a> ' % (
name , name , realname )
2001-02-27 10:43:46 -04:00
if bases :
parents = [ ]
for base in bases :
2001-04-12 17:39:14 -03:00
parents . append ( self . classlink ( base , object . __module__ ) )
2001-02-27 10:43:46 -04:00
title = title + ' ( %s ) ' % join ( parents , ' , ' )
2001-09-25 00:18:32 -03:00
doc = self . markup ( getdoc ( object ) , self . preformat , funcs , classes , mdict )
2003-03-28 12:35:51 -04:00
doc = doc and ' <tt> %s <br> </tt> ' % doc
2001-09-26 18:31:51 -03:00
2003-03-28 12:35:51 -04:00
return self . section ( title , ' #000000 ' , ' #ffc8d8 ' , contents , 3 , doc )
2001-02-27 10:43:46 -04:00
def formatvalue ( self , object ) :
""" Format an argument default value as text. """
2001-09-25 00:18:32 -03:00
return self . grey ( ' = ' + self . repr ( object ) )
2001-02-27 10:43:46 -04:00
2001-04-12 07:50:23 -03:00
def docroutine ( self , object , name = None , mod = None ,
2001-03-23 09:17:50 -04:00
funcs = { } , classes = { } , methods = { } , cl = None ) :
2001-03-01 09:55:20 -04:00
""" Produce HTML documentation for a function or method object. """
2001-03-22 20:12:53 -04:00
realname = object . __name__
name = name or realname
2001-03-23 09:17:50 -04:00
anchor = ( cl and cl . __name__ or ' ' ) + ' - ' + name
2001-03-22 20:12:53 -04:00
note = ' '
2001-03-23 09:17:50 -04:00
skipdocs = 0
2001-03-22 20:12:53 -04:00
if inspect . ismethod ( object ) :
2001-04-12 17:27:31 -03:00
imclass = object . im_class
2001-03-23 09:17:50 -04:00
if cl :
2001-04-12 07:50:23 -03:00
if imclass is not cl :
2001-04-12 17:39:14 -03:00
note = ' from ' + self . classlink ( imclass , mod )
2001-03-23 09:17:50 -04:00
else :
2007-03-13 19:16:30 -03:00
if object . im_self is not None :
2001-04-12 17:39:14 -03:00
note = ' method of %s instance ' % self . classlink (
object . im_self . __class__ , mod )
else :
note = ' unbound %s method ' % self . classlink ( imclass , mod )
2001-03-22 20:12:53 -04:00
object = object . im_func
if name == realname :
title = ' <a name= " %s " ><strong> %s </strong></a> ' % ( anchor , realname )
else :
2002-06-01 11:18:47 -03:00
if ( cl and realname in cl . __dict__ and
2001-03-23 09:17:50 -04:00
cl . __dict__ [ realname ] is object ) :
2001-03-23 10:05:53 -04:00
reallink = ' <a href= " # %s " > %s </a> ' % (
2001-03-23 09:17:50 -04:00
cl . __name__ + ' - ' + realname , realname )
skipdocs = 1
else :
reallink = realname
title = ' <a name= " %s " ><strong> %s </strong></a> = %s ' % (
anchor , name , reallink )
2001-09-20 03:08:24 -03:00
if inspect . isfunction ( object ) :
2001-03-01 09:55:20 -04:00
args , varargs , varkw , defaults = inspect . getargspec ( object )
argspec = inspect . formatargspec (
args , varargs , varkw , defaults , formatvalue = self . formatvalue )
2001-03-22 20:12:53 -04:00
if realname == ' <lambda> ' :
2001-10-31 00:20:26 -04:00
title = ' <strong> %s </strong> <em>lambda</em> ' % name
2001-03-22 20:12:53 -04:00
argspec = argspec [ 1 : - 1 ] # remove parentheses
2001-09-20 03:08:24 -03:00
else :
argspec = ' (...) '
2001-03-01 09:55:20 -04:00
2001-09-25 00:18:32 -03:00
decl = title + argspec + ( note and self . grey (
' <font face= " helvetica, arial " > %s </font> ' % note ) )
2001-03-22 20:12:53 -04:00
2001-03-23 09:17:50 -04:00
if skipdocs :
2001-09-25 00:18:32 -03:00
return ' <dl><dt> %s </dt></dl> \n ' % decl
2001-03-23 09:17:50 -04:00
else :
doc = self . markup (
getdoc ( object ) , self . preformat , funcs , classes , methods )
2001-09-25 00:18:32 -03:00
doc = doc and ' <dd><tt> %s </tt></dd> ' % doc
return ' <dl><dt> %s </dt> %s </dl> \n ' % ( decl , doc )
2001-02-27 10:43:46 -04:00
2005-01-08 16:16:43 -04:00
def _docdescriptor ( self , name , value , mod ) :
2004-11-07 15:16:05 -04:00
results = [ ]
push = results . append
if name :
push ( ' <dl><dt><strong> %s </strong></dt> \n ' % name )
if value . __doc__ is not None :
2005-02-19 18:58:26 -04:00
doc = self . markup ( getdoc ( value ) , self . preformat )
2004-11-07 15:16:05 -04:00
push ( ' <dd><tt> %s </tt></dd> \n ' % doc )
push ( ' </dl> \n ' )
return ' ' . join ( results )
def docproperty ( self , object , name = None , mod = None , cl = None ) :
""" Produce html documentation for a property. """
2005-01-08 16:16:43 -04:00
return self . _docdescriptor ( name , object , mod )
2004-11-07 15:16:05 -04:00
2001-10-18 16:56:17 -03:00
def docother ( self , object , name = None , mod = None , * ignored ) :
2001-03-22 20:12:53 -04:00
""" Produce HTML documentation for a data object. """
2001-04-12 07:50:23 -03:00
lhs = name and ' <strong> %s </strong> = ' % name or ' '
return lhs + self . repr ( object )
2001-02-27 10:43:46 -04:00
2006-07-27 20:43:15 -03:00
def docdata ( self , object , name = None , mod = None , cl = None ) :
""" Produce html documentation for a data descriptor. """
return self . _docdescriptor ( name , object , mod )
2001-02-27 10:43:46 -04:00
def index ( self , dir , shadowed = None ) :
""" Generate an HTML index for a directory of modules. """
modpkgs = [ ]
if shadowed is None : shadowed = { }
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
for importer , name , ispkg in pkgutil . iter_modules ( [ dir ] ) :
modpkgs . append ( ( name , ' ' , ispkg , name in shadowed ) )
shadowed [ name ] = 1
2001-02-27 10:43:46 -04:00
modpkgs . sort ( )
contents = self . multicolumn ( modpkgs , self . modpkglink )
return self . bigsection ( dir , ' #ffffff ' , ' #ee77aa ' , contents )
# -------------------------------------------- text documentation generator
class TextRepr ( Repr ) :
""" Class for safely making a text representation of a Python object. """
def __init__ ( self ) :
Repr . __init__ ( self )
2001-04-13 06:55:49 -03:00
self . maxlist = self . maxtuple = 20
self . maxdict = 10
2001-03-22 20:12:53 -04:00
self . maxstring = self . maxother = 100
2001-02-27 10:43:46 -04:00
def repr1 ( self , x , level ) :
2003-06-27 12:45:41 -03:00
if hasattr ( type ( x ) , ' __name__ ' ) :
methodname = ' repr_ ' + join ( split ( type ( x ) . __name__ ) , ' _ ' )
if hasattr ( self , methodname ) :
return getattr ( self , methodname ) ( x , level )
return cram ( stripid ( repr ( x ) ) , self . maxother )
2001-02-27 10:43:46 -04:00
2001-03-01 21:19:14 -04:00
def repr_string ( self , x , level ) :
test = cram ( x , self . maxstring )
testrepr = repr ( test )
2001-04-12 07:50:23 -03:00
if ' \\ ' in test and ' \\ ' not in replace ( testrepr , r ' \\ ' , ' ' ) :
2001-03-01 21:19:14 -04:00
# Backslashes are only literal in the string and are never
# needed to make any special characters, so show a raw string.
return ' r ' + testrepr [ 0 ] + test + testrepr [ 0 ]
return testrepr
2002-03-07 18:58:02 -04:00
repr_str = repr_string
2001-02-27 10:43:46 -04:00
def repr_instance ( self , x , level ) :
try :
2001-02-28 20:24:32 -04:00
return cram ( stripid ( repr ( x ) ) , self . maxstring )
2001-02-27 10:43:46 -04:00
except :
return ' < %s instance> ' % x . __class__ . __name__
class TextDoc ( Doc ) :
""" Formatter class for text documentation. """
# ------------------------------------------- text formatting utilities
_repr_instance = TextRepr ( )
repr = _repr_instance . repr
def bold ( self , text ) :
""" Format a string in bold by overstriking. """
return join ( map ( lambda ch : ch + ' \b ' + ch , text ) , ' ' )
def indent ( self , text , prefix = ' ' ) :
""" Indent text by prepending a given prefix to each line. """
if not text : return ' '
lines = split ( text , ' \n ' )
lines = map ( lambda line , prefix = prefix : prefix + line , lines )
if lines : lines [ - 1 ] = rstrip ( lines [ - 1 ] )
return join ( lines , ' \n ' )
def section ( self , title , contents ) :
""" Format a section with a given heading. """
return self . bold ( title ) + ' \n ' + rstrip ( self . indent ( contents ) ) + ' \n \n '
# ---------------------------------------------- type-specific routines
2001-03-22 20:12:53 -04:00
def formattree ( self , tree , modname , parent = None , prefix = ' ' ) :
2001-02-27 10:43:46 -04:00
""" Render in text a class tree as returned by inspect.getclasstree(). """
result = ' '
for entry in tree :
if type ( entry ) is type ( ( ) ) :
2001-03-22 20:12:53 -04:00
c , bases = entry
result = result + prefix + classname ( c , modname )
2001-02-27 10:43:46 -04:00
if bases and bases != ( parent , ) :
2001-03-22 20:12:53 -04:00
parents = map ( lambda c , m = modname : classname ( c , m ) , bases )
2001-02-27 10:43:46 -04:00
result = result + ' ( %s ) ' % join ( parents , ' , ' )
result = result + ' \n '
elif type ( entry ) is type ( [ ] ) :
2001-03-22 20:12:53 -04:00
result = result + self . formattree (
entry , modname , c , prefix + ' ' )
2001-02-27 10:43:46 -04:00
return result
2001-04-12 07:50:23 -03:00
def docmodule ( self , object , name = None , mod = None ) :
2001-02-27 10:43:46 -04:00
""" Produce text documentation for a given module object. """
2001-03-22 20:12:53 -04:00
name = object . __name__ # ignore the passed-in name
2001-04-10 08:46:02 -03:00
synop , desc = splitdoc ( getdoc ( object ) )
result = self . section ( ' NAME ' , name + ( synop and ' - ' + synop ) )
2001-03-22 20:12:53 -04:00
2004-06-11 01:46:12 -03:00
try :
all = object . __all__
except AttributeError :
all = None
2001-03-22 20:12:53 -04:00
try :
file = inspect . getabsfile ( object )
except TypeError :
file = ' (built-in) '
2001-03-01 22:45:08 -04:00
result = result + self . section ( ' FILE ' , file )
2003-09-10 13:47:51 -03:00
docloc = self . getdocloc ( object )
if docloc is not None :
result = result + self . section ( ' MODULE DOCS ' , docloc )
2001-04-10 08:46:02 -03:00
if desc :
result = result + self . section ( ' DESCRIPTION ' , desc )
2001-02-27 10:43:46 -04:00
classes = [ ]
for key , value in inspect . getmembers ( object , inspect . isclass ) :
2004-08-30 11:13:04 -03:00
# if __all__ exists, believe it. Otherwise use old heuristic.
if ( all is not None
or ( inspect . getmodule ( value ) or object ) is object ) :
2004-06-11 01:46:12 -03:00
if visiblename ( key , all ) :
2003-03-28 12:35:51 -04:00
classes . append ( ( key , value ) )
2001-02-27 10:43:46 -04:00
funcs = [ ]
for key , value in inspect . getmembers ( object , inspect . isroutine ) :
2004-08-30 11:13:04 -03:00
# if __all__ exists, believe it. Otherwise use old heuristic.
if ( all is not None or
inspect . isbuiltin ( value ) or inspect . getmodule ( value ) is object ) :
2004-06-11 01:46:12 -03:00
if visiblename ( key , all ) :
2003-03-28 12:35:51 -04:00
funcs . append ( ( key , value ) )
2001-04-13 06:55:49 -03:00
data = [ ]
for key , value in inspect . getmembers ( object , isdata ) :
2004-06-11 01:46:12 -03:00
if visiblename ( key , all ) :
2001-04-13 06:55:49 -03:00
data . append ( ( key , value ) )
2001-02-27 10:43:46 -04:00
2008-01-21 17:05:49 -04:00
modpkgs = [ ]
modpkgs_names = set ( )
2001-02-27 10:43:46 -04:00
if hasattr ( object , ' __path__ ' ) :
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
for importer , modname , ispkg in pkgutil . iter_modules ( object . __path__ ) :
2008-01-21 17:05:49 -04:00
modpkgs_names . add ( modname )
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
if ispkg :
modpkgs . append ( modname + ' (package) ' )
else :
modpkgs . append ( modname )
2001-02-27 10:43:46 -04:00
modpkgs . sort ( )
result = result + self . section (
' PACKAGE CONTENTS ' , join ( modpkgs , ' \n ' ) )
2008-01-21 17:05:49 -04:00
# Detect submodules as sometimes created by C extensions
submodules = [ ]
for key , value in inspect . getmembers ( object , inspect . ismodule ) :
if value . __name__ . startswith ( name + ' . ' ) and key not in modpkgs_names :
submodules . append ( key )
if submodules :
submodules . sort ( )
result = result + self . section (
' SUBMODULES ' , join ( submodules , ' \n ' ) )
2001-02-27 10:43:46 -04:00
if classes :
2001-03-22 20:12:53 -04:00
classlist = map ( lambda ( key , value ) : value , classes )
contents = [ self . formattree (
inspect . getclasstree ( classlist , 1 ) , name ) ]
for key , value in classes :
2001-04-12 07:50:23 -03:00
contents . append ( self . document ( value , key , name ) )
2001-03-22 20:12:53 -04:00
result = result + self . section ( ' CLASSES ' , join ( contents , ' \n ' ) )
2001-02-27 10:43:46 -04:00
if funcs :
2001-03-22 20:12:53 -04:00
contents = [ ]
for key , value in funcs :
2001-04-12 07:50:23 -03:00
contents . append ( self . document ( value , key , name ) )
2001-03-22 20:12:53 -04:00
result = result + self . section ( ' FUNCTIONS ' , join ( contents , ' \n ' ) )
2001-02-27 10:43:46 -04:00
2001-04-13 06:55:49 -03:00
if data :
2001-03-22 20:12:53 -04:00
contents = [ ]
2001-04-13 06:55:49 -03:00
for key , value in data :
2005-10-01 13:32:31 -03:00
contents . append ( self . docother ( value , key , name , maxlen = 70 ) )
2001-04-13 06:55:49 -03:00
result = result + self . section ( ' DATA ' , join ( contents , ' \n ' ) )
2001-02-27 10:43:46 -04:00
if hasattr ( object , ' __version__ ' ) :
version = str ( object . __version__ )
2001-02-28 20:24:32 -04:00
if version [ : 11 ] == ' $ ' + ' Revision: ' and version [ - 1 : ] == ' $ ' :
version = strip ( version [ 11 : - 1 ] )
2001-02-27 10:43:46 -04:00
result = result + self . section ( ' VERSION ' , version )
2001-02-27 18:42:36 -04:00
if hasattr ( object , ' __date__ ' ) :
result = result + self . section ( ' DATE ' , str ( object . __date__ ) )
2001-02-27 10:43:46 -04:00
if hasattr ( object , ' __author__ ' ) :
2001-02-27 18:42:36 -04:00
result = result + self . section ( ' AUTHOR ' , str ( object . __author__ ) )
if hasattr ( object , ' __credits__ ' ) :
result = result + self . section ( ' CREDITS ' , str ( object . __credits__ ) )
2001-02-27 10:43:46 -04:00
return result
2001-04-12 07:50:23 -03:00
def docclass ( self , object , name = None , mod = None ) :
2001-02-27 10:43:46 -04:00
""" Produce text documentation for a given class object. """
2001-03-22 20:12:53 -04:00
realname = object . __name__
name = name or realname
2001-02-27 10:43:46 -04:00
bases = object . __bases__
2001-09-26 18:31:51 -03:00
def makename ( c , m = object . __module__ ) :
return classname ( c , m )
2001-03-22 20:12:53 -04:00
if name == realname :
title = ' class ' + self . bold ( realname )
else :
title = self . bold ( name ) + ' = class ' + realname
2001-02-27 10:43:46 -04:00
if bases :
2001-03-23 09:17:50 -04:00
parents = map ( makename , bases )
2001-02-27 10:43:46 -04:00
title = title + ' ( %s ) ' % join ( parents , ' , ' )
doc = getdoc ( object )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
contents = doc and [ doc + ' \n ' ] or [ ]
push = contents . append
2001-09-26 18:31:51 -03:00
# List the mro, if non-trivial.
2004-01-29 02:37:52 -04:00
mro = deque ( inspect . getmro ( object ) )
2001-09-26 18:31:51 -03:00
if len ( mro ) > 2 :
push ( " Method resolution order: " )
for base in mro :
push ( ' ' + makename ( base ) )
push ( ' ' )
2001-09-24 19:40:47 -03:00
# Cute little class to pump out a horizontal rule between sections.
class HorizontalRule :
def __init__ ( self ) :
self . needone = 0
def maybe ( self ) :
if self . needone :
push ( ' - ' * 70 )
self . needone = 1
hr = HorizontalRule ( )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
def spill ( msg , attrs , predicate ) :
2001-09-24 05:05:11 -03:00
ok , attrs = _split_list ( attrs , predicate )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
if ok :
2001-09-24 19:40:47 -03:00
hr . maybe ( )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
push ( msg )
for name , kind , homecls , value in ok :
push ( self . document ( getattr ( object , name ) ,
name , mod , object ) )
return attrs
2005-01-08 16:16:43 -04:00
def spilldescriptors ( msg , attrs , predicate ) :
2001-09-24 05:05:11 -03:00
ok , attrs = _split_list ( attrs , predicate )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
if ok :
2001-09-24 19:40:47 -03:00
hr . maybe ( )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
push ( msg )
for name , kind , homecls , value in ok :
2005-01-08 16:16:43 -04:00
push ( self . _docdescriptor ( name , value , mod ) )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
return attrs
Try to do for pydoc's GUI mode what the earlier checkin did for text
mode (identify the source class for class attrs; segregate attrs according
to source class, and whether class method, static method, property, plain
method, or data; display data attrs; display docstrings for data attrs
when possible).
Alas, this is mondo ugly, and I'm no HTML guy. Part of the problem is
that pydoc's GUI mode has always been ugly under IE, largely because
<small> under IE renders docstrings unreadably small (while sometimes
non-docstring text is painfully large). Another part is that these
segregated listings of attrs would *probably* look much better as bulleted
lists. Alas, when I tried that, the bullets all ended up on lines by
themselves, before the method names; this is apparently because pydoc
(ab?)uses definition lists for format effects, and at least under IE
if a definition list is the first chunk of a list item, it gets rendered
on a line after the <li> bullet.
An HTML wizard would certainly be welcomed here.
2001-09-24 01:47:19 -03:00
2001-09-24 05:05:11 -03:00
def spilldata ( msg , attrs , predicate ) :
ok , attrs = _split_list ( attrs , predicate )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
if ok :
2001-09-24 19:40:47 -03:00
hr . maybe ( )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
push ( msg )
for name , kind , homecls , value in ok :
2003-05-03 06:09:02 -03:00
if callable ( value ) or inspect . isdatadescriptor ( value ) :
2005-02-19 18:58:26 -04:00
doc = getdoc ( value )
2002-05-21 17:56:15 -03:00
else :
doc = None
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
push ( self . docother ( getattr ( object , name ) ,
2005-10-01 13:32:31 -03:00
name , mod , maxlen = 70 , doc = doc ) + ' \n ' )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
return attrs
2003-03-28 12:35:51 -04:00
attrs = filter ( lambda ( name , kind , cls , value ) : visiblename ( name ) ,
2005-01-08 16:16:43 -04:00
classify_class_attrs ( object ) )
2001-09-24 05:05:11 -03:00
while attrs :
2001-09-27 00:29:51 -03:00
if mro :
2004-01-29 02:37:52 -04:00
thisclass = mro . popleft ( )
2001-09-27 00:29:51 -03:00
else :
thisclass = attrs [ 0 ] [ 2 ]
2001-09-24 05:05:11 -03:00
attrs , inherited = _split_list ( attrs , lambda t : t [ 2 ] is thisclass )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
2003-03-28 12:35:51 -04:00
if thisclass is __builtin__ . object :
attrs = inherited
continue
elif thisclass is object :
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
tag = " defined here "
else :
2001-09-24 05:05:11 -03:00
tag = " inherited from %s " % classname ( thisclass ,
object . __module__ )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
# Sort attrs by name.
2003-03-28 12:35:51 -04:00
attrs . sort ( )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
# Pump out the attrs, segregated by kind.
2001-09-24 19:40:47 -03:00
attrs = spill ( " Methods %s : \n " % tag , attrs ,
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
lambda t : t [ 1 ] == ' method ' )
2001-09-24 19:40:47 -03:00
attrs = spill ( " Class methods %s : \n " % tag , attrs ,
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
lambda t : t [ 1 ] == ' class method ' )
2001-09-24 19:40:47 -03:00
attrs = spill ( " Static methods %s : \n " % tag , attrs ,
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
lambda t : t [ 1 ] == ' static method ' )
2005-01-08 16:16:43 -04:00
attrs = spilldescriptors ( " Data descriptors %s : \n " % tag , attrs ,
lambda t : t [ 1 ] == ' data descriptor ' )
2003-03-28 12:35:51 -04:00
attrs = spilldata ( " Data and other attributes %s : \n " % tag , attrs ,
lambda t : t [ 1 ] == ' data ' )
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
assert attrs == [ ]
2001-09-27 00:29:51 -03:00
attrs = inherited
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
contents = ' \n ' . join ( contents )
if not contents :
return title + ' \n '
2001-02-27 10:43:46 -04:00
return title + ' \n ' + self . indent ( rstrip ( contents ) , ' | ' ) + ' \n '
def formatvalue ( self , object ) :
""" Format an argument default value as text. """
return ' = ' + self . repr ( object )
2001-04-12 07:50:23 -03:00
def docroutine ( self , object , name = None , mod = None , cl = None ) :
2001-03-01 09:55:20 -04:00
""" Produce text documentation for a function or method object. """
2001-03-22 20:12:53 -04:00
realname = object . __name__
name = name or realname
note = ' '
2001-03-23 09:17:50 -04:00
skipdocs = 0
2001-03-22 20:12:53 -04:00
if inspect . ismethod ( object ) :
2001-04-12 07:50:23 -03:00
imclass = object . im_class
2001-03-23 09:17:50 -04:00
if cl :
2001-04-12 07:50:23 -03:00
if imclass is not cl :
note = ' from ' + classname ( imclass , mod )
2001-03-23 09:17:50 -04:00
else :
2007-03-13 19:16:30 -03:00
if object . im_self is not None :
2001-04-12 17:39:14 -03:00
note = ' method of %s instance ' % classname (
object . im_self . __class__ , mod )
else :
note = ' unbound %s method ' % classname ( imclass , mod )
2001-03-22 20:12:53 -04:00
object = object . im_func
if name == realname :
title = self . bold ( realname )
else :
2002-06-01 11:18:47 -03:00
if ( cl and realname in cl . __dict__ and
2001-03-23 09:17:50 -04:00
cl . __dict__ [ realname ] is object ) :
skipdocs = 1
2001-03-22 20:12:53 -04:00
title = self . bold ( name ) + ' = ' + realname
2001-09-20 03:08:24 -03:00
if inspect . isfunction ( object ) :
2001-02-27 10:43:46 -04:00
args , varargs , varkw , defaults = inspect . getargspec ( object )
argspec = inspect . formatargspec (
args , varargs , varkw , defaults , formatvalue = self . formatvalue )
2001-03-22 20:12:53 -04:00
if realname == ' <lambda> ' :
2006-02-17 05:45:40 -04:00
title = self . bold ( name ) + ' lambda '
2001-03-22 20:12:53 -04:00
argspec = argspec [ 1 : - 1 ] # remove parentheses
2001-09-20 03:08:24 -03:00
else :
argspec = ' (...) '
2001-03-22 20:12:53 -04:00
decl = title + argspec + note
2001-03-23 09:17:50 -04:00
if skipdocs :
2001-02-27 10:43:46 -04:00
return decl + ' \n '
2001-03-23 09:17:50 -04:00
else :
doc = getdoc ( object ) or ' '
return decl + ' \n ' + ( doc and rstrip ( self . indent ( doc ) ) + ' \n ' )
2001-02-27 10:43:46 -04:00
2005-01-08 16:16:43 -04:00
def _docdescriptor ( self , name , value , mod ) :
2004-11-07 15:16:05 -04:00
results = [ ]
push = results . append
if name :
2005-01-08 16:16:43 -04:00
push ( self . bold ( name ) )
push ( ' \n ' )
2004-11-07 15:16:05 -04:00
doc = getdoc ( value ) or ' '
if doc :
push ( self . indent ( doc ) )
2005-01-08 16:16:43 -04:00
push ( ' \n ' )
return ' ' . join ( results )
2004-11-07 15:16:05 -04:00
def docproperty ( self , object , name = None , mod = None , cl = None ) :
""" Produce text documentation for a property. """
2005-01-08 16:16:43 -04:00
return self . _docdescriptor ( name , object , mod )
2004-11-07 15:16:05 -04:00
2006-07-27 20:43:15 -03:00
def docdata ( self , object , name = None , mod = None , cl = None ) :
""" Produce text documentation for a data descriptor. """
return self . _docdescriptor ( name , object , mod )
2005-10-01 13:32:31 -03:00
def docother ( self , object , name = None , mod = None , parent = None , maxlen = None , doc = None ) :
2001-03-22 20:12:53 -04:00
""" Produce text documentation for a data object. """
repr = self . repr ( object )
if maxlen :
2001-04-12 07:50:23 -03:00
line = ( name and name + ' = ' or ' ' ) + repr
2001-03-22 20:12:53 -04:00
chop = maxlen - len ( line )
if chop < 0 : repr = repr [ : chop ] + ' ... '
2001-04-12 07:50:23 -03:00
line = ( name and self . bold ( name ) + ' = ' or ' ' ) + repr
Part of a partial solution to SF bugs 463378, 463381, 463383, 463384.
This almost entirely replaces how pydoc pumps out class docs, but only
in text mode (like help(whatever) from a Python shell), not in GUI mode.
A class C's attrs are now grouped by the class in which they're defined,
attrs defined by C first, then inherited attrs grouped by alphabetic order
of the defining classes' names.
Within each of those groups, the attrs are subgrouped according to whether
they're plain methods, class methods, static methods, properties, or data.
Note that pydoc never dumped class data attrs before. If a class data
attr is implemented via a data descriptor, the data docstring (if any)
is also displayed (e.g., file.softspace).
Within a subgroup, the attrs are listed alphabetically.
This is a friggin' mess, and there are bound to be glitches. Please
beat on it and complain! Here are three glitches:
1. __new__ gets classifed as 'data', for some reason. This will
have to get fixed in inspect.py, but since the latter is already
looking for any clue that something is a method, pydoc will
almost certainly not know what to do with it when its classification
changes.
2. properties are special-cased to death. Unlike any other kind of
function or method, they don't have a __name__ attr, so none of
pydoc's usual code can deal with them. Worse, the getter and
setter and del'er methods associated with a property don't appear
to be discoverable from Python, so there's really nothing I can
think of to do here beyond just listing their names.
Note that a property can't be given a docstring, either (or at least
I've been unable to sneak one in) -- perhaps the property()
constructor could take an optional doc argument?
3. In a nested-scopes world, pydoc still doesn't know anything about
nesting, so e.g. classes nested in functions are effectively invisible.
2001-09-23 18:29:55 -03:00
if doc is not None :
line + = ' \n ' + self . indent ( str ( doc ) )
2001-03-22 20:12:53 -04:00
return line
2001-02-27 10:43:46 -04:00
# --------------------------------------------------------- user interfaces
def pager ( text ) :
""" The first time this is called, determine what kind of pager to use. """
global pager
pager = getpager ( )
pager ( text )
def getpager ( ) :
""" Decide what method to use for paging through text. """
if type ( sys . stdout ) is not types . FileType :
return plainpager
if not sys . stdin . isatty ( ) or not sys . stdout . isatty ( ) :
return plainpager
2002-06-01 11:18:47 -03:00
if ' PAGER ' in os . environ :
2001-04-10 08:46:02 -03:00
if sys . platform == ' win32 ' : # pipes completely broken in Windows
2001-04-13 06:55:49 -03:00
return lambda text : tempfilepager ( plain ( text ) , os . environ [ ' PAGER ' ] )
2005-02-06 02:57:08 -04:00
elif os . environ . get ( ' TERM ' ) in ( ' dumb ' , ' emacs ' ) :
2001-04-13 06:55:49 -03:00
return lambda text : pipepager ( plain ( text ) , os . environ [ ' PAGER ' ] )
2001-04-10 08:46:02 -03:00
else :
2001-04-13 06:55:49 -03:00
return lambda text : pipepager ( text , os . environ [ ' PAGER ' ] )
2005-11-05 00:49:18 -04:00
if os . environ . get ( ' TERM ' ) in ( ' dumb ' , ' emacs ' ) :
return plainpager
2002-03-02 23:12:30 -04:00
if sys . platform == ' win32 ' or sys . platform . startswith ( ' os2 ' ) :
2001-04-13 06:55:49 -03:00
return lambda text : tempfilepager ( plain ( text ) , ' more < ' )
2002-09-26 18:44:57 -03:00
if hasattr ( os , ' system ' ) and os . system ( ' (less) 2>/dev/null ' ) == 0 :
2001-04-13 06:55:49 -03:00
return lambda text : pipepager ( text , ' less ' )
2001-02-27 10:43:46 -04:00
import tempfile
2002-08-09 13:38:32 -03:00
( fd , filename ) = tempfile . mkstemp ( )
os . close ( fd )
2001-02-27 10:43:46 -04:00
try :
if hasattr ( os , ' system ' ) and os . system ( ' more %s ' % filename ) == 0 :
return lambda text : pipepager ( text , ' more ' )
else :
return ttypager
finally :
os . unlink ( filename )
2001-04-13 06:55:49 -03:00
def plain ( text ) :
""" Remove boldface formatting from text. """
return re . sub ( ' . \b ' , ' ' , text )
2001-02-27 10:43:46 -04:00
def pipepager ( text , cmd ) :
""" Page through text by feeding it to another program. """
pipe = os . popen ( cmd , ' w ' )
try :
pipe . write ( text )
pipe . close ( )
except IOError :
2001-04-12 16:53:52 -03:00
pass # Ignore broken pipes caused by quitting the pager program.
2001-02-27 10:43:46 -04:00
def tempfilepager ( text , cmd ) :
""" Page through text by invoking a program on a temporary file. """
import tempfile
2003-02-06 21:53:46 -04:00
filename = tempfile . mktemp ( )
file = open ( filename , ' w ' )
2001-02-27 10:43:46 -04:00
file . write ( text )
file . close ( )
try :
2001-03-02 01:54:35 -04:00
os . system ( cmd + ' ' + filename )
2001-02-27 10:43:46 -04:00
finally :
os . unlink ( filename )
def ttypager ( text ) :
""" Page through text on a text terminal. """
lines = split ( plain ( text ) , ' \n ' )
try :
import tty
fd = sys . stdin . fileno ( )
old = tty . tcgetattr ( fd )
tty . setcbreak ( fd )
getchar = lambda : sys . stdin . read ( 1 )
2001-02-27 19:36:29 -04:00
except ( ImportError , AttributeError ) :
2001-02-27 10:43:46 -04:00
tty = None
getchar = lambda : sys . stdin . readline ( ) [ : - 1 ] [ : 1 ]
try :
r = inc = os . environ . get ( ' LINES ' , 25 ) - 1
sys . stdout . write ( join ( lines [ : inc ] , ' \n ' ) + ' \n ' )
while lines [ r : ] :
sys . stdout . write ( ' -- more -- ' )
sys . stdout . flush ( )
c = getchar ( )
2005-02-06 02:57:08 -04:00
if c in ( ' q ' , ' Q ' ) :
2001-02-27 10:43:46 -04:00
sys . stdout . write ( ' \r \r ' )
break
2005-02-06 02:57:08 -04:00
elif c in ( ' \r ' , ' \n ' ) :
2001-02-27 10:43:46 -04:00
sys . stdout . write ( ' \r \r ' + lines [ r ] + ' \n ' )
r = r + 1
continue
2005-02-06 02:57:08 -04:00
if c in ( ' b ' , ' B ' , ' \x1b ' ) :
2001-02-27 10:43:46 -04:00
r = r - inc - inc
if r < 0 : r = 0
sys . stdout . write ( ' \n ' + join ( lines [ r : r + inc ] , ' \n ' ) + ' \n ' )
r = r + inc
finally :
if tty :
tty . tcsetattr ( fd , tty . TCSAFLUSH , old )
def plainpager ( text ) :
""" Simply print unformatted text. This is the ultimate fallback. """
sys . stdout . write ( plain ( text ) )
def describe ( thing ) :
2001-03-23 09:17:50 -04:00
""" Produce a short description of the given thing. """
2001-02-27 10:43:46 -04:00
if inspect . ismodule ( thing ) :
if thing . __name__ in sys . builtin_module_names :
return ' built-in module ' + thing . __name__
if hasattr ( thing , ' __path__ ' ) :
return ' package ' + thing . __name__
else :
return ' module ' + thing . __name__
if inspect . isbuiltin ( thing ) :
return ' built-in function ' + thing . __name__
2006-07-27 20:43:15 -03:00
if inspect . isgetsetdescriptor ( thing ) :
return ' getset descriptor %s . %s . %s ' % (
thing . __objclass__ . __module__ , thing . __objclass__ . __name__ ,
thing . __name__ )
if inspect . ismemberdescriptor ( thing ) :
return ' member descriptor %s . %s . %s ' % (
thing . __objclass__ . __module__ , thing . __objclass__ . __name__ ,
thing . __name__ )
2001-02-27 10:43:46 -04:00
if inspect . isclass ( thing ) :
return ' class ' + thing . __name__
if inspect . isfunction ( thing ) :
return ' function ' + thing . __name__
if inspect . ismethod ( thing ) :
return ' method ' + thing . __name__
2001-03-22 20:12:53 -04:00
if type ( thing ) is types . InstanceType :
return ' instance of ' + thing . __class__ . __name__
return type ( thing ) . __name__
2001-04-13 06:55:49 -03:00
def locate ( path , forceload = 0 ) :
2001-04-12 07:50:23 -03:00
""" Locate an object by name or dotted path, importing as necessary. """
2003-02-15 21:12:32 -04:00
parts = [ part for part in split ( path , ' . ' ) if part ]
2001-04-12 07:50:23 -03:00
module , n = None , 0
while n < len ( parts ) :
2001-04-13 06:55:49 -03:00
nextmodule = safeimport ( join ( parts [ : n + 1 ] , ' . ' ) , forceload )
2001-04-12 07:50:23 -03:00
if nextmodule : module , n = nextmodule , n + 1
else : break
if module :
object = module
for part in parts [ n : ] :
try : object = getattr ( object , part )
except AttributeError : return None
return object
else :
if hasattr ( __builtin__ , path ) :
return getattr ( __builtin__ , path )
2001-02-27 10:43:46 -04:00
# --------------------------------------- interactive interpreter interface
text = TextDoc ( )
html = HTMLDoc ( )
2007-01-14 00:25:15 -04:00
class _OldStyleClass : pass
_OLD_INSTANCE_TYPE = type ( _OldStyleClass ( ) )
2002-08-11 12:11:33 -03:00
def resolve ( thing , forceload = 0 ) :
""" Given an object or a path to an object, get the object and its name. """
if isinstance ( thing , str ) :
object = locate ( thing , forceload )
if not object :
raise ImportError , ' no Python documentation found for %r ' % thing
return object , thing
else :
return thing , getattr ( thing , ' __name__ ' , None )
2007-03-13 17:02:57 -03:00
def render_doc ( thing , title = ' Python Library Documentation: %s ' , forceload = 0 ) :
""" Render text documentation, given an object or a path to an object. """
object , name = resolve ( thing , forceload )
desc = describe ( object )
module = inspect . getmodule ( object )
if name and ' . ' in name :
desc + = ' in ' + name [ : name . rfind ( ' . ' ) ]
elif module and module is not object :
desc + = ' in module ' + module . __name__
if type ( object ) is _OLD_INSTANCE_TYPE :
# If the passed object is an instance of an old-style class,
# document its available methods instead of its value.
object = object . __class__
elif not ( inspect . ismodule ( object ) or
inspect . isclass ( object ) or
inspect . isroutine ( object ) or
inspect . isgetsetdescriptor ( object ) or
inspect . ismemberdescriptor ( object ) or
isinstance ( object , property ) ) :
# If the passed object is a piece of data or an instance,
# document its available methods instead of its value.
object = type ( object )
desc + = ' object '
return title % desc + ' \n \n ' + text . document ( object , name )
2001-04-13 06:55:49 -03:00
def doc ( thing , title = ' Python Library Documentation: %s ' , forceload = 0 ) :
2001-04-12 07:50:23 -03:00
""" Display text documentation, given an object or a path to an object. """
2002-08-11 12:11:33 -03:00
try :
2007-03-13 17:02:57 -03:00
pager ( render_doc ( thing , title , forceload ) )
2002-08-11 12:11:33 -03:00
except ( ImportError , ErrorDuringImport ) , value :
print value
def writedoc ( thing , forceload = 0 ) :
2001-02-27 10:43:46 -04:00
""" Write HTML documentation to a file in the current directory. """
2001-03-22 20:12:53 -04:00
try :
2002-08-11 12:11:33 -03:00
object , name = resolve ( thing , forceload )
page = html . page ( describe ( object ) , html . document ( object , name ) )
file = open ( name + ' .html ' , ' w ' )
file . write ( page )
file . close ( )
print ' wrote ' , name + ' .html '
except ( ImportError , ErrorDuringImport ) , value :
2001-03-22 20:12:53 -04:00
print value
2001-04-13 06:55:49 -03:00
def writedocs ( dir , pkgpath = ' ' , done = None ) :
2001-03-22 20:12:53 -04:00
""" Write out HTML documentation for all modules in a directory tree. """
2001-04-13 06:55:49 -03:00
if done is None : done = { }
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
for importer , modname , ispkg in pkgutil . walk_packages ( [ dir ] , pkgpath ) :
writedoc ( modname )
return
2001-02-27 10:43:46 -04:00
class Helper :
2001-04-12 16:53:52 -03:00
keywords = {
' and ' : ' BOOLEAN ' ,
2007-03-13 07:06:48 -03:00
' as ' : ' with ' ,
2001-04-13 07:53:25 -03:00
' assert ' : ( ' ref/assert ' , ' ' ) ,
2001-04-12 16:53:52 -03:00
' break ' : ( ' ref/break ' , ' while for ' ) ,
' class ' : ( ' ref/class ' , ' CLASSES SPECIALMETHODS ' ) ,
' continue ' : ( ' ref/continue ' , ' while for ' ) ,
' def ' : ( ' ref/function ' , ' ' ) ,
' del ' : ( ' ref/del ' , ' BASICMETHODS ' ) ,
' elif ' : ' if ' ,
' else ' : ( ' ref/if ' , ' while for ' ) ,
' except ' : ' try ' ,
' exec ' : ( ' ref/exec ' , ' ' ) ,
' finally ' : ' try ' ,
' for ' : ( ' ref/for ' , ' break continue while ' ) ,
' from ' : ' import ' ,
' global ' : ( ' ref/global ' , ' NAMESPACES ' ) ,
' if ' : ( ' ref/if ' , ' TRUTHVALUE ' ) ,
' import ' : ( ' ref/import ' , ' MODULES ' ) ,
' in ' : ( ' ref/comparisons ' , ' SEQUENCEMETHODS2 ' ) ,
' is ' : ' COMPARISON ' ,
2003-03-30 16:31:34 -04:00
' lambda ' : ( ' ref/lambdas ' , ' FUNCTIONS ' ) ,
2001-04-12 16:53:52 -03:00
' not ' : ' BOOLEAN ' ,
' or ' : ' BOOLEAN ' ,
2003-03-30 16:31:34 -04:00
' pass ' : ( ' ref/pass ' , ' ' ) ,
2001-04-12 16:53:52 -03:00
' print ' : ( ' ref/print ' , ' ' ) ,
' raise ' : ( ' ref/raise ' , ' EXCEPTIONS ' ) ,
2001-04-13 07:53:25 -03:00
' return ' : ( ' ref/return ' , ' FUNCTIONS ' ) ,
2001-04-12 16:53:52 -03:00
' try ' : ( ' ref/try ' , ' EXCEPTIONS ' ) ,
' while ' : ( ' ref/while ' , ' break continue if TRUTHVALUE ' ) ,
2007-03-13 07:06:48 -03:00
' with ' : ( ' ref/with ' , ' CONTEXTMANAGERS EXCEPTIONS yield ' ) ,
2002-10-30 01:21:00 -04:00
' yield ' : ( ' ref/yield ' , ' ' ) ,
2001-04-12 16:53:52 -03:00
}
topics = {
' TYPES ' : ( ' ref/types ' , ' STRINGS UNICODE NUMBERS SEQUENCES MAPPINGS FUNCTIONS CLASSES MODULES FILES inspect ' ) ,
2001-04-13 07:53:25 -03:00
' STRINGS ' : ( ' ref/strings ' , ' str UNICODE SEQUENCES STRINGMETHODS FORMATTING TYPES ' ) ,
2001-04-12 16:53:52 -03:00
' STRINGMETHODS ' : ( ' lib/string-methods ' , ' STRINGS FORMATTING ' ) ,
' FORMATTING ' : ( ' lib/typesseq-strings ' , ' OPERATORS ' ) ,
2003-05-26 10:49:54 -03:00
' UNICODE ' : ( ' ref/strings ' , ' encodings unicode SEQUENCES STRINGMETHODS FORMATTING TYPES ' ) ,
2001-04-12 16:53:52 -03:00
' NUMBERS ' : ( ' ref/numbers ' , ' INTEGER FLOAT COMPLEX TYPES ' ) ,
' INTEGER ' : ( ' ref/integers ' , ' int range ' ) ,
' FLOAT ' : ( ' ref/floating ' , ' float math ' ) ,
' COMPLEX ' : ( ' ref/imaginary ' , ' complex cmath ' ) ,
2001-04-13 07:53:25 -03:00
' SEQUENCES ' : ( ' lib/typesseq ' , ' STRINGMETHODS FORMATTING xrange LISTS ' ) ,
2001-04-12 16:53:52 -03:00
' MAPPINGS ' : ' DICTIONARIES ' ,
' FUNCTIONS ' : ( ' lib/typesfunctions ' , ' def TYPES ' ) ,
' METHODS ' : ( ' lib/typesmethods ' , ' class def CLASSES TYPES ' ) ,
' CODEOBJECTS ' : ( ' lib/bltin-code-objects ' , ' compile FUNCTIONS TYPES ' ) ,
2001-04-13 07:53:25 -03:00
' TYPEOBJECTS ' : ( ' lib/bltin-type-objects ' , ' types TYPES ' ) ,
2001-04-12 16:53:52 -03:00
' FRAMEOBJECTS ' : ' TYPES ' ,
' TRACEBACKS ' : ' TYPES ' ,
' NONE ' : ( ' lib/bltin-null-object ' , ' ' ) ,
' ELLIPSIS ' : ( ' lib/bltin-ellipsis-object ' , ' SLICINGS ' ) ,
' FILES ' : ( ' lib/bltin-file-objects ' , ' ' ) ,
' SPECIALATTRIBUTES ' : ( ' lib/specialattrs ' , ' ' ) ,
' CLASSES ' : ( ' ref/types ' , ' class SPECIALMETHODS PRIVATENAMES ' ) ,
' MODULES ' : ( ' lib/typesmodules ' , ' import ' ) ,
' PACKAGES ' : ' import ' ,
' EXPRESSIONS ' : ( ' ref/summary ' , ' lambda or and not in is BOOLEAN COMPARISON BITWISE SHIFTING BINARY FORMATTING POWER UNARY ATTRIBUTES SUBSCRIPTS SLICINGS CALLS TUPLES LISTS DICTIONARIES BACKQUOTES ' ) ,
' OPERATORS ' : ' EXPRESSIONS ' ,
' PRECEDENCE ' : ' EXPRESSIONS ' ,
' OBJECTS ' : ( ' ref/objects ' , ' TYPES ' ) ,
' SPECIALMETHODS ' : ( ' ref/specialnames ' , ' BASICMETHODS ATTRIBUTEMETHODS CALLABLEMETHODS SEQUENCEMETHODS1 MAPPINGMETHODS SEQUENCEMETHODS2 NUMBERMETHODS CLASSES ' ) ,
2001-04-13 07:53:25 -03:00
' BASICMETHODS ' : ( ' ref/customization ' , ' cmp hash repr str SPECIALMETHODS ' ) ,
' ATTRIBUTEMETHODS ' : ( ' ref/attribute-access ' , ' ATTRIBUTES SPECIALMETHODS ' ) ,
' CALLABLEMETHODS ' : ( ' ref/callable-types ' , ' CALLS SPECIALMETHODS ' ) ,
' SEQUENCEMETHODS1 ' : ( ' ref/sequence-types ' , ' SEQUENCES SEQUENCEMETHODS2 SPECIALMETHODS ' ) ,
' SEQUENCEMETHODS2 ' : ( ' ref/sequence-methods ' , ' SEQUENCES SEQUENCEMETHODS1 SPECIALMETHODS ' ) ,
' MAPPINGMETHODS ' : ( ' ref/sequence-types ' , ' MAPPINGS SPECIALMETHODS ' ) ,
' NUMBERMETHODS ' : ( ' ref/numeric-types ' , ' NUMBERS AUGMENTEDASSIGNMENT SPECIALMETHODS ' ) ,
2003-05-26 10:49:54 -03:00
' EXECUTION ' : ( ' ref/execmodel ' , ' NAMESPACES DYNAMICFEATURES EXCEPTIONS ' ) ,
' NAMESPACES ' : ( ' ref/naming ' , ' global ASSIGNMENT DELETION DYNAMICFEATURES ' ) ,
' DYNAMICFEATURES ' : ( ' ref/dynamic-features ' , ' ' ) ,
2001-04-12 16:53:52 -03:00
' SCOPING ' : ' NAMESPACES ' ,
' FRAMES ' : ' NAMESPACES ' ,
' EXCEPTIONS ' : ( ' ref/exceptions ' , ' try except finally raise ' ) ,
2003-05-26 10:49:54 -03:00
' COERCIONS ' : ( ' ref/coercion-rules ' , ' CONVERSIONS ' ) ,
' CONVERSIONS ' : ( ' ref/conversions ' , ' COERCIONS ' ) ,
2001-04-12 16:53:52 -03:00
' IDENTIFIERS ' : ( ' ref/identifiers ' , ' keywords SPECIALIDENTIFIERS ' ) ,
' SPECIALIDENTIFIERS ' : ( ' ref/id-classes ' , ' ' ) ,
2001-04-13 07:53:25 -03:00
' PRIVATENAMES ' : ( ' ref/atom-identifiers ' , ' ' ) ,
2001-04-12 16:53:52 -03:00
' LITERALS ' : ( ' ref/atom-literals ' , ' STRINGS BACKQUOTES NUMBERS TUPLELITERALS LISTLITERALS DICTIONARYLITERALS ' ) ,
' TUPLES ' : ' SEQUENCES ' ,
2001-04-13 07:53:25 -03:00
' TUPLELITERALS ' : ( ' ref/exprlists ' , ' TUPLES LITERALS ' ) ,
2001-04-12 16:53:52 -03:00
' LISTS ' : ( ' lib/typesseq-mutable ' , ' LISTLITERALS ' ) ,
2001-04-13 07:53:25 -03:00
' LISTLITERALS ' : ( ' ref/lists ' , ' LISTS LITERALS ' ) ,
2001-04-12 16:53:52 -03:00
' DICTIONARIES ' : ( ' lib/typesmapping ' , ' DICTIONARYLITERALS ' ) ,
2001-04-13 07:53:25 -03:00
' DICTIONARYLITERALS ' : ( ' ref/dict ' , ' DICTIONARIES LITERALS ' ) ,
' BACKQUOTES ' : ( ' ref/string-conversions ' , ' repr str STRINGS LITERALS ' ) ,
2001-04-12 16:53:52 -03:00
' ATTRIBUTES ' : ( ' ref/attribute-references ' , ' getattr hasattr setattr ATTRIBUTEMETHODS ' ) ,
' SUBSCRIPTS ' : ( ' ref/subscriptions ' , ' SEQUENCEMETHODS1 ' ) ,
' SLICINGS ' : ( ' ref/slicings ' , ' SEQUENCEMETHODS2 ' ) ,
' CALLS ' : ( ' ref/calls ' , ' EXPRESSIONS ' ) ,
' POWER ' : ( ' ref/power ' , ' EXPRESSIONS ' ) ,
' UNARY ' : ( ' ref/unary ' , ' EXPRESSIONS ' ) ,
' BINARY ' : ( ' ref/binary ' , ' EXPRESSIONS ' ) ,
' SHIFTING ' : ( ' ref/shifting ' , ' EXPRESSIONS ' ) ,
' BITWISE ' : ( ' ref/bitwise ' , ' EXPRESSIONS ' ) ,
' COMPARISON ' : ( ' ref/comparisons ' , ' EXPRESSIONS BASICMETHODS ' ) ,
2003-02-07 16:49:40 -04:00
' BOOLEAN ' : ( ' ref/Booleans ' , ' EXPRESSIONS TRUTHVALUE ' ) ,
2001-04-12 16:53:52 -03:00
' ASSERTION ' : ' assert ' ,
' ASSIGNMENT ' : ( ' ref/assignment ' , ' AUGMENTEDASSIGNMENT ' ) ,
2001-04-13 07:53:25 -03:00
' AUGMENTEDASSIGNMENT ' : ( ' ref/augassign ' , ' NUMBERMETHODS ' ) ,
2001-04-12 16:53:52 -03:00
' DELETION ' : ' del ' ,
' PRINTING ' : ' print ' ,
' RETURNING ' : ' return ' ,
' IMPORTING ' : ' import ' ,
' CONDITIONAL ' : ' if ' ,
' LOOPING ' : ( ' ref/compound ' , ' for while break continue ' ) ,
' TRUTHVALUE ' : ( ' lib/truth ' , ' if while and or not BASICMETHODS ' ) ,
2001-04-13 07:53:25 -03:00
' DEBUGGING ' : ( ' lib/module-pdb ' , ' pdb ' ) ,
2007-03-13 07:06:48 -03:00
' CONTEXTMANAGERS ' : ( ' ref/context-managers ' , ' with ' ) ,
2001-04-12 16:53:52 -03:00
}
def __init__ ( self , input , output ) :
self . input = input
self . output = output
self . docdir = None
execdir = os . path . dirname ( sys . executable )
homedir = os . environ . get ( ' PYTHONHOME ' )
2007-03-02 10:37:12 -04:00
join = os . path . join
2001-04-12 16:53:52 -03:00
for dir in [ os . environ . get ( ' PYTHONDOCS ' ) ,
homedir and os . path . join ( homedir , ' doc ' ) ,
2007-03-02 10:37:12 -04:00
join ( execdir , ' doc ' ) , # for Windows
join ( sys . prefix , ' doc/python-docs- ' + split ( sys . version ) [ 0 ] ) ,
join ( sys . prefix , ' doc/python- ' + split ( sys . version ) [ 0 ] ) ,
join ( sys . prefix , ' doc/python-docs- ' + sys . version [ : 3 ] ) ,
join ( sys . prefix , ' doc/python- ' + sys . version [ : 3 ] ) ,
join ( sys . prefix , ' Resources/English.lproj/Documentation ' ) ] :
if dir and os . path . isdir ( join ( dir , ' lib ' ) ) :
2001-04-12 16:53:52 -03:00
self . docdir = dir
2007-03-02 10:37:12 -04:00
break
if dir and os . path . isdir ( join ( dir , ' html ' , ' lib ' ) ) :
self . docdir = join ( dir , ' html ' )
break
2001-03-27 04:13:42 -04:00
2001-04-13 07:53:25 -03:00
def __repr__ ( self ) :
2001-04-13 10:57:31 -03:00
if inspect . stack ( ) [ 1 ] [ 3 ] == ' ? ' :
2001-04-13 07:53:25 -03:00
self ( )
return ' '
2001-04-13 10:57:31 -03:00
return ' <pydoc.Helper instance> '
2001-04-13 07:53:25 -03:00
2001-04-12 16:53:52 -03:00
def __call__ ( self , request = None ) :
if request is not None :
self . help ( request )
2001-02-27 10:43:46 -04:00
else :
2001-04-12 16:53:52 -03:00
self . intro ( )
2001-04-13 06:55:49 -03:00
self . interact ( )
2001-04-12 16:53:52 -03:00
self . output . write ( '''
2001-05-10 15:41:02 -03:00
You are now leaving help and returning to the Python interpreter .
2001-04-12 16:53:52 -03:00
If you want to ask for help on a particular object directly from the
interpreter , you can type " help(object) " . Executing " help( ' string ' ) "
has the same effect as typing a particular string at the help > prompt .
''' )
2001-04-13 06:55:49 -03:00
def interact ( self ) :
self . output . write ( ' \n ' )
2002-04-07 03:36:23 -03:00
while True :
2001-04-13 06:55:49 -03:00
try :
2004-08-17 10:21:53 -03:00
request = self . getline ( ' help> ' )
2001-04-13 06:55:49 -03:00
if not request : break
2004-08-17 10:21:53 -03:00
except ( KeyboardInterrupt , EOFError ) :
break
2001-04-13 06:55:49 -03:00
request = strip ( replace ( request , ' " ' , ' ' , " ' " , ' ' ) )
2005-02-06 02:57:08 -04:00
if lower ( request ) in ( ' q ' , ' quit ' ) : break
2001-04-13 06:55:49 -03:00
self . help ( request )
2004-08-17 10:21:53 -03:00
def getline ( self , prompt ) :
""" Read one line, using raw_input when available. """
if self . input is sys . stdin :
return raw_input ( prompt )
else :
self . output . write ( prompt )
self . output . flush ( )
return self . input . readline ( )
2001-04-12 16:53:52 -03:00
def help ( self , request ) :
if type ( request ) is type ( ' ' ) :
if request == ' help ' : self . intro ( )
elif request == ' keywords ' : self . listkeywords ( )
elif request == ' topics ' : self . listtopics ( )
elif request == ' modules ' : self . listmodules ( )
elif request [ : 8 ] == ' modules ' :
self . listmodules ( split ( request ) [ 1 ] )
2002-06-01 11:18:47 -03:00
elif request in self . keywords : self . showtopic ( request )
elif request in self . topics : self . showtopic ( request )
2001-04-12 16:53:52 -03:00
elif request : doc ( request , ' Help on %s : ' )
elif isinstance ( request , Helper ) : self ( )
else : doc ( request , ' Help on %s : ' )
self . output . write ( ' \n ' )
def intro ( self ) :
self . output . write ( '''
Welcome to Python % s ! This is the online help utility .
If this is your first time using Python , you should definitely check out
2008-01-21 13:13:03 -04:00
the tutorial on the Internet at http : / / docs . python . org / tutorial / .
2001-04-12 16:53:52 -03:00
Enter the name of any module , keyword , or topic to get help on writing
Python programs and using Python modules . To quit this help utility and
return to the interpreter , just type " quit " .
To get a list of available modules , keywords , or topics , type " modules " ,
" keywords " , or " topics " . Each module also comes with a one - line summary
of what it does ; to list the modules whose summaries contain a given word
such as " spam " , type " modules spam " .
''' % s ys.version[:3])
def list ( self , items , columns = 4 , width = 80 ) :
items = items [ : ]
items . sort ( )
colw = width / columns
rows = ( len ( items ) + columns - 1 ) / columns
for row in range ( rows ) :
for col in range ( columns ) :
i = col * rows + row
if i < len ( items ) :
self . output . write ( items [ i ] )
if col < columns - 1 :
self . output . write ( ' ' + ' ' * ( colw - 1 - len ( items [ i ] ) ) )
self . output . write ( ' \n ' )
def listkeywords ( self ) :
self . output . write ( '''
Here is a list of the Python keywords . Enter any keyword to get more help .
''' )
self . list ( self . keywords . keys ( ) )
def listtopics ( self ) :
self . output . write ( '''
Here is a list of available topics . Enter any topic name to get more help .
''' )
self . list ( self . topics . keys ( ) )
def showtopic ( self , topic ) :
if not self . docdir :
self . output . write ( '''
Sorry , topic and keyword documentation is not available because the Python
HTML documentation files could not be found . If you have installed them ,
please set the environment variable PYTHONDOCS to indicate their location .
2006-12-19 11:18:12 -04:00
On the Microsoft Windows operating system , the files can be built by
running " hh -decompile . PythonNN.chm " in the C : \PythonNN \Doc > directory .
2001-04-12 16:53:52 -03:00
''' )
return
target = self . topics . get ( topic , self . keywords . get ( topic ) )
if not target :
self . output . write ( ' no documentation found for %s \n ' % repr ( topic ) )
return
if type ( target ) is type ( ' ' ) :
return self . showtopic ( target )
2001-02-27 10:43:46 -04:00
2001-04-12 16:53:52 -03:00
filename , xrefs = target
filename = self . docdir + ' / ' + filename + ' .html '
try :
file = open ( filename )
except :
self . output . write ( ' could not read docs from %s \n ' % filename )
return
2001-04-13 06:55:49 -03:00
divpat = re . compile ( ' <div[^>]*navigat.*?</div.*?> ' , re . I | re . S )
addrpat = re . compile ( ' <address.*?>.*?</address.*?> ' , re . I | re . S )
2001-04-12 16:53:52 -03:00
document = re . sub ( addrpat , ' ' , re . sub ( divpat , ' ' , file . read ( ) ) )
file . close ( )
import htmllib , formatter , StringIO
buffer = StringIO . StringIO ( )
parser = htmllib . HTMLParser (
formatter . AbstractFormatter ( formatter . DumbWriter ( buffer ) ) )
parser . start_table = parser . do_p
parser . end_table = lambda parser = parser : parser . do_p ( { } )
parser . start_tr = parser . do_br
parser . start_td = parser . start_th = lambda a , b = buffer : b . write ( ' \t ' )
parser . feed ( document )
buffer = replace ( buffer . getvalue ( ) , ' \xa0 ' , ' ' , ' \n ' , ' \n ' )
pager ( ' ' + strip ( buffer ) + ' \n ' )
2001-04-13 08:02:51 -03:00
if xrefs :
buffer = StringIO . StringIO ( )
formatter . DumbWriter ( buffer ) . send_flowing_data (
' Related help topics: ' + join ( split ( xrefs ) , ' , ' ) + ' \n ' )
self . output . write ( ' \n %s \n ' % buffer . getvalue ( ) )
2001-04-12 16:53:52 -03:00
def listmodules ( self , key = ' ' ) :
if key :
self . output . write ( '''
Here is a list of matching modules . Enter any module name to get more help .
''' )
apropos ( key )
else :
self . output . write ( '''
Please wait a moment while I gather a list of all available modules . . .
''' )
modules = { }
def callback ( path , modname , desc , modules = modules ) :
if modname and modname [ - 9 : ] == ' .__init__ ' :
modname = modname [ : - 9 ] + ' (package) '
if find ( modname , ' . ' ) < 0 :
modules [ modname ] = 1
2008-01-13 07:25:13 -04:00
def onerror ( modname ) :
callback ( None , modname , None )
ModuleScanner ( ) . run ( callback , onerror = onerror )
2001-04-12 16:53:52 -03:00
self . list ( modules . keys ( ) )
self . output . write ( '''
Enter any module name to get more help . Or , type " modules spam " to search
for modules whose descriptions contain the word " spam " .
''' )
help = Helper ( sys . stdin , sys . stdout )
2001-02-27 10:43:46 -04:00
2001-03-01 09:55:20 -04:00
class Scanner :
""" A generic tree iterator. """
2001-04-12 07:50:23 -03:00
def __init__ ( self , roots , children , descendp ) :
2001-03-01 09:55:20 -04:00
self . roots = roots [ : ]
self . state = [ ]
self . children = children
2001-04-12 07:50:23 -03:00
self . descendp = descendp
2001-03-01 09:55:20 -04:00
def next ( self ) :
if not self . state :
if not self . roots :
return None
root = self . roots . pop ( 0 )
self . state = [ ( root , self . children ( root ) ) ]
node , children = self . state [ - 1 ]
if not children :
self . state . pop ( )
return self . next ( )
child = children . pop ( 0 )
2001-04-12 07:50:23 -03:00
if self . descendp ( child ) :
2001-03-01 09:55:20 -04:00
self . state . append ( ( child , self . children ( child ) ) )
return child
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
class ModuleScanner :
""" An interruptible scanner that searches module synopses. """
2001-03-01 09:55:20 -04:00
2008-01-13 07:25:13 -04:00
def run ( self , callback , key = None , completer = None , onerror = None ) :
2001-04-12 08:59:50 -03:00
if key : key = lower ( key )
2002-04-07 03:36:23 -03:00
self . quit = False
2001-03-01 09:55:20 -04:00
seen = { }
for modname in sys . builtin_module_names :
2001-03-01 22:45:08 -04:00
if modname != ' __main__ ' :
seen [ modname ] = 1
2001-04-12 08:59:50 -03:00
if key is None :
callback ( None , modname , ' ' )
else :
2001-04-13 06:55:49 -03:00
desc = split ( __import__ ( modname ) . __doc__ or ' ' , ' \n ' ) [ 0 ]
2001-04-12 08:59:50 -03:00
if find ( lower ( modname + ' - ' + desc ) , key ) > = 0 :
callback ( None , modname , desc )
2001-03-01 09:55:20 -04:00
2008-01-13 07:25:13 -04:00
for importer , modname , ispkg in pkgutil . walk_packages ( onerror = onerror ) :
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
if self . quit :
break
if key is None :
callback ( None , modname , ' ' )
else :
loader = importer . find_module ( modname )
if hasattr ( loader , ' get_source ' ) :
import StringIO
desc = source_synopsis (
StringIO . StringIO ( loader . get_source ( modname ) )
) or ' '
if hasattr ( loader , ' get_filename ' ) :
path = loader . get_filename ( modname )
2001-04-12 08:59:50 -03:00
else :
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
path = None
else :
module = loader . load_module ( modname )
desc = ( module . __doc__ or ' ' ) . splitlines ( ) [ 0 ]
path = getattr ( module , ' __file__ ' , None )
if find ( lower ( modname + ' - ' + desc ) , key ) > = 0 :
callback ( path , modname , desc )
if completer :
completer ( )
2001-02-27 10:43:46 -04:00
def apropos ( key ) :
""" Print all the one-line module summaries that contain a substring. """
2001-03-01 09:55:20 -04:00
def callback ( path , modname , desc ) :
if modname [ - 9 : ] == ' .__init__ ' :
modname = modname [ : - 9 ] + ' (package) '
2001-04-10 08:46:02 -03:00
print modname , desc and ' - ' + desc
try : import warnings
except ImportError : pass
else : warnings . filterwarnings ( ' ignore ' ) # ignore problems during import
2001-04-12 08:59:50 -03:00
ModuleScanner ( ) . run ( callback , key )
2001-02-27 10:43:46 -04:00
# --------------------------------------------------- web browser interface
2001-04-12 08:59:50 -03:00
def serve ( port , callback = None , completer = None ) :
2001-04-12 09:54:36 -03:00
import BaseHTTPServer , mimetools , select
2001-02-27 10:43:46 -04:00
# Patch up mimetools.Message so it doesn't break if rfc822 is reloaded.
class Message ( mimetools . Message ) :
def __init__ ( self , fp , seekable = 1 ) :
Message = self . __class__
Message . __bases__ [ 0 ] . __bases__ [ 0 ] . __init__ ( self , fp , seekable )
self . encodingheader = self . getheader ( ' content-transfer-encoding ' )
self . typeheader = self . getheader ( ' content-type ' )
self . parsetype ( )
self . parseplist ( )
class DocHandler ( BaseHTTPServer . BaseHTTPRequestHandler ) :
def send_document ( self , title , contents ) :
2001-03-01 09:55:20 -04:00
try :
self . send_response ( 200 )
self . send_header ( ' Content-Type ' , ' text/html ' )
self . end_headers ( )
2001-03-22 20:12:53 -04:00
self . wfile . write ( html . page ( title , contents ) )
2001-03-01 09:55:20 -04:00
except IOError : pass
2001-02-27 10:43:46 -04:00
def do_GET ( self ) :
path = self . path
if path [ - 5 : ] == ' .html ' : path = path [ : - 5 ]
if path [ : 1 ] == ' / ' : path = path [ 1 : ]
if path and path != ' . ' :
try :
2001-04-13 06:55:49 -03:00
obj = locate ( path , forceload = 1 )
2001-03-23 09:17:50 -04:00
except ErrorDuringImport , value :
2001-03-22 20:12:53 -04:00
self . send_document ( path , html . escape ( str ( value ) ) )
2001-02-27 10:43:46 -04:00
return
2001-03-23 09:17:50 -04:00
if obj :
self . send_document ( describe ( obj ) , html . document ( obj , path ) )
2001-02-27 10:43:46 -04:00
else :
self . send_document ( path ,
2001-03-22 20:12:53 -04:00
' no Python documentation found for %s ' % repr ( path ) )
2001-02-27 10:43:46 -04:00
else :
heading = html . heading (
2001-03-01 09:55:20 -04:00
' <big><big><strong>Python: Index of Modules</strong></big></big> ' ,
' #ffffff ' , ' #7799ee ' )
2001-03-01 22:45:08 -04:00
def bltinlink ( name ) :
return ' <a href= " %s .html " > %s </a> ' % ( name , name )
2001-03-23 09:17:50 -04:00
names = filter ( lambda x : x != ' __main__ ' ,
sys . builtin_module_names )
2001-03-01 22:45:08 -04:00
contents = html . multicolumn ( names , bltinlink )
indices = [ ' <p> ' + html . bigsection (
' Built-in Modules ' , ' #ffffff ' , ' #ee77aa ' , contents ) ]
2001-02-27 10:43:46 -04:00
seen = { }
Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools
to share common PEP 302 support code, as described here:
http://mail.python.org/pipermail/python-dev/2006-April/063724.html
pydoc now supports PEP 302 importers, by way of utility functions in
pkgutil, such as 'walk_packages()'. It will properly document
modules that are in zip files, and is backward compatible to Python
2.3 (setuptools installs for Python <2.5 will bundle it so pydoc
doesn't break when used with eggs.)
What has not changed is that pydoc command line options do not support
zip paths or other importer paths, and the webserver index does not
support sys.meta_path. Those are probably okay as limitations.
Tasks remaining: write docs and Misc/NEWS for pkgutil/pydoc changes,
and update setuptools to use pkgutil wherever possible, then add it
to the stdlib.
2006-04-17 21:59:55 -03:00
for dir in sys . path :
2001-02-27 10:43:46 -04:00
indices . append ( html . index ( dir , seen ) )
2001-03-22 20:12:53 -04:00
contents = heading + join ( indices ) + ''' <p align=right>
2001-09-25 00:18:32 -03:00
< font color = " #909090 " face = " helvetica, arial " > < strong >
pydoc < / strong > by Ka - Ping Yee & lt ; ping @lfw.org & gt ; < / font > '''
2001-03-01 09:55:20 -04:00
self . send_document ( ' Index of Modules ' , contents )
2001-02-27 10:43:46 -04:00
def log_message ( self , * args ) : pass
2001-04-12 09:54:36 -03:00
class DocServer ( BaseHTTPServer . HTTPServer ) :
2001-03-01 09:55:20 -04:00
def __init__ ( self , port , callback ) :
2001-03-02 01:58:17 -04:00
host = ( sys . platform == ' mac ' ) and ' 127.0.0.1 ' or ' localhost '
2001-03-22 20:12:53 -04:00
self . address = ( ' ' , port )
2001-03-02 01:58:17 -04:00
self . url = ' http:// %s : %d / ' % ( host , port )
2001-02-27 10:43:46 -04:00
self . callback = callback
2001-03-01 09:55:20 -04:00
self . base . __init__ ( self , self . address , self . handler )
def serve_until_quit ( self ) :
import select
2002-04-07 03:36:23 -03:00
self . quit = False
2001-03-01 09:55:20 -04:00
while not self . quit :
rd , wr , ex = select . select ( [ self . socket . fileno ( ) ] , [ ] , [ ] , 1 )
if rd : self . handle_request ( )
2001-02-27 10:43:46 -04:00
def server_activate ( self ) :
self . base . server_activate ( self )
2001-03-01 09:55:20 -04:00
if self . callback : self . callback ( self )
2001-02-27 10:43:46 -04:00
DocServer . base = BaseHTTPServer . HTTPServer
DocServer . handler = DocHandler
DocHandler . MessageClass = Message
try :
2001-04-12 07:50:23 -03:00
try :
DocServer ( port , callback ) . serve_until_quit ( )
except ( KeyboardInterrupt , select . error ) :
pass
finally :
2001-04-12 08:59:50 -03:00
if completer : completer ( )
2001-03-01 09:55:20 -04:00
# ----------------------------------------------------- graphical interface
def gui ( ) :
""" Graphical interface (starts web server and pops up a control window). """
class GUI :
def __init__ ( self , window , port = 7464 ) :
self . window = window
self . server = None
self . scanner = None
import Tkinter
self . server_frm = Tkinter . Frame ( window )
self . title_lbl = Tkinter . Label ( self . server_frm ,
text = ' Starting server... \n ' )
self . open_btn = Tkinter . Button ( self . server_frm ,
text = ' open browser ' , command = self . open , state = ' disabled ' )
self . quit_btn = Tkinter . Button ( self . server_frm ,
text = ' quit serving ' , command = self . quit , state = ' disabled ' )
self . search_frm = Tkinter . Frame ( window )
self . search_lbl = Tkinter . Label ( self . search_frm , text = ' Search for ' )
self . search_ent = Tkinter . Entry ( self . search_frm )
self . search_ent . bind ( ' <Return> ' , self . search )
self . stop_btn = Tkinter . Button ( self . search_frm ,
text = ' stop ' , pady = 0 , command = self . stop , state = ' disabled ' )
if sys . platform == ' win32 ' :
2001-03-02 01:54:35 -04:00
# Trying to hide and show this button crashes under Windows.
2001-03-01 09:55:20 -04:00
self . stop_btn . pack ( side = ' right ' )
self . window . title ( ' pydoc ' )
self . window . protocol ( ' WM_DELETE_WINDOW ' , self . quit )
self . title_lbl . pack ( side = ' top ' , fill = ' x ' )
self . open_btn . pack ( side = ' left ' , fill = ' x ' , expand = 1 )
self . quit_btn . pack ( side = ' right ' , fill = ' x ' , expand = 1 )
self . server_frm . pack ( side = ' top ' , fill = ' x ' )
self . search_lbl . pack ( side = ' left ' )
self . search_ent . pack ( side = ' right ' , fill = ' x ' , expand = 1 )
self . search_frm . pack ( side = ' top ' , fill = ' x ' )
self . search_ent . focus_set ( )
2001-03-02 01:54:35 -04:00
font = ( ' helvetica ' , sys . platform == ' win32 ' and 8 or 10 )
2001-03-01 22:45:08 -04:00
self . result_lst = Tkinter . Listbox ( window , font = font , height = 6 )
2001-03-01 09:55:20 -04:00
self . result_lst . bind ( ' <Button-1> ' , self . select )
self . result_lst . bind ( ' <Double-Button-1> ' , self . goto )
self . result_scr = Tkinter . Scrollbar ( window ,
orient = ' vertical ' , command = self . result_lst . yview )
self . result_lst . config ( yscrollcommand = self . result_scr . set )
self . result_frm = Tkinter . Frame ( window )
self . goto_btn = Tkinter . Button ( self . result_frm ,
text = ' go to selected ' , command = self . goto )
self . hide_btn = Tkinter . Button ( self . result_frm ,
text = ' hide results ' , command = self . hide )
self . goto_btn . pack ( side = ' left ' , fill = ' x ' , expand = 1 )
self . hide_btn . pack ( side = ' right ' , fill = ' x ' , expand = 1 )
self . window . update ( )
self . minwidth = self . window . winfo_width ( )
self . minheight = self . window . winfo_height ( )
self . bigminheight = ( self . server_frm . winfo_reqheight ( ) +
self . search_frm . winfo_reqheight ( ) +
self . result_lst . winfo_reqheight ( ) +
self . result_frm . winfo_reqheight ( ) )
self . bigwidth , self . bigheight = self . minwidth , self . bigminheight
self . expanded = 0
self . window . wm_geometry ( ' %d x %d ' % ( self . minwidth , self . minheight ) )
self . window . wm_minsize ( self . minwidth , self . minheight )
2002-12-28 05:23:09 -04:00
self . window . tk . willdispatch ( )
2001-03-01 09:55:20 -04:00
import threading
2001-04-12 07:50:23 -03:00
threading . Thread (
target = serve , args = ( port , self . ready , self . quit ) ) . start ( )
2001-03-01 09:55:20 -04:00
def ready ( self , server ) :
self . server = server
self . title_lbl . config (
text = ' Python documentation server at \n ' + server . url )
self . open_btn . config ( state = ' normal ' )
self . quit_btn . config ( state = ' normal ' )
2001-03-01 22:45:08 -04:00
def open ( self , event = None , url = None ) :
url = url or self . server . url
try :
import webbrowser
webbrowser . open ( url )
except ImportError : # pre-webbrowser.py compatibility
2001-03-02 01:54:35 -04:00
if sys . platform == ' win32 ' :
2001-03-01 22:45:08 -04:00
os . system ( ' start " %s " ' % url )
elif sys . platform == ' mac ' :
2001-04-10 08:46:02 -03:00
try : import ic
2001-03-01 22:45:08 -04:00
except ImportError : pass
2001-04-10 08:46:02 -03:00
else : ic . launchurl ( url )
2001-03-01 22:45:08 -04:00
else :
rc = os . system ( ' netscape -remote " openURL( %s ) " & ' % url )
if rc : os . system ( ' netscape " %s " & ' % url )
2001-03-01 09:55:20 -04:00
def quit ( self , event = None ) :
if self . server :
self . server . quit = 1
self . window . quit ( )
def search ( self , event = None ) :
key = self . search_ent . get ( )
self . stop_btn . pack ( side = ' right ' )
self . stop_btn . config ( state = ' normal ' )
self . search_lbl . config ( text = ' Searching for " %s " ... ' % key )
self . search_ent . forget ( )
self . search_lbl . pack ( side = ' left ' )
self . result_lst . delete ( 0 , ' end ' )
self . goto_btn . config ( state = ' disabled ' )
self . expand ( )
import threading
if self . scanner :
self . scanner . quit = 1
self . scanner = ModuleScanner ( )
threading . Thread ( target = self . scanner . run ,
2001-04-12 17:27:31 -03:00
args = ( self . update , key , self . done ) ) . start ( )
2001-03-01 09:55:20 -04:00
def update ( self , path , modname , desc ) :
if modname [ - 9 : ] == ' .__init__ ' :
modname = modname [ : - 9 ] + ' (package) '
self . result_lst . insert ( ' end ' ,
modname + ' - ' + ( desc or ' (no description) ' ) )
def stop ( self , event = None ) :
if self . scanner :
self . scanner . quit = 1
self . scanner = None
def done ( self ) :
self . scanner = None
self . search_lbl . config ( text = ' Search for ' )
self . search_lbl . pack ( side = ' left ' )
self . search_ent . pack ( side = ' right ' , fill = ' x ' , expand = 1 )
if sys . platform != ' win32 ' : self . stop_btn . forget ( )
self . stop_btn . config ( state = ' disabled ' )
def select ( self , event = None ) :
self . goto_btn . config ( state = ' normal ' )
def goto ( self , event = None ) :
selection = self . result_lst . curselection ( )
if selection :
modname = split ( self . result_lst . get ( selection [ 0 ] ) ) [ 0 ]
2001-03-01 22:45:08 -04:00
self . open ( url = self . server . url + modname + ' .html ' )
2001-03-01 09:55:20 -04:00
def collapse ( self ) :
if not self . expanded : return
self . result_frm . forget ( )
self . result_scr . forget ( )
self . result_lst . forget ( )
self . bigwidth = self . window . winfo_width ( )
self . bigheight = self . window . winfo_height ( )
self . window . wm_geometry ( ' %d x %d ' % ( self . minwidth , self . minheight ) )
self . window . wm_minsize ( self . minwidth , self . minheight )
self . expanded = 0
def expand ( self ) :
if self . expanded : return
self . result_frm . pack ( side = ' bottom ' , fill = ' x ' )
self . result_scr . pack ( side = ' right ' , fill = ' y ' )
self . result_lst . pack ( side = ' top ' , fill = ' both ' , expand = 1 )
self . window . wm_geometry ( ' %d x %d ' % ( self . bigwidth , self . bigheight ) )
self . window . wm_minsize ( self . minwidth , self . bigminheight )
self . expanded = 1
def hide ( self , event = None ) :
self . stop ( )
self . collapse ( )
import Tkinter
try :
2004-08-22 13:13:26 -03:00
root = Tkinter . Tk ( )
# Tk will crash if pythonw.exe has an XP .manifest
# file and the root has is not destroyed explicitly.
# If the problem is ever fixed in Tk, the explicit
# destroy can go.
try :
gui = GUI ( root )
root . mainloop ( )
finally :
root . destroy ( )
2001-02-27 10:43:46 -04:00
except KeyboardInterrupt :
2001-03-01 09:55:20 -04:00
pass
2001-02-27 10:43:46 -04:00
# -------------------------------------------------- command-line interface
2001-03-22 20:12:53 -04:00
def ispath ( x ) :
2002-08-11 12:11:33 -03:00
return isinstance ( x , str ) and find ( x , os . sep ) > = 0
2001-03-22 20:12:53 -04:00
2001-02-28 20:24:32 -04:00
def cli ( ) :
2001-03-01 09:55:20 -04:00
""" Command-line interface (looks at sys.argv to decide what to do). """
2001-02-27 10:43:46 -04:00
import getopt
class BadUsage : pass
2001-03-23 09:17:50 -04:00
# Scripts don't get the current directory in their path by default.
2001-03-27 04:13:42 -04:00
scriptdir = os . path . dirname ( sys . argv [ 0 ] )
if scriptdir in sys . path :
sys . path . remove ( scriptdir )
2001-03-23 09:17:50 -04:00
sys . path . insert ( 0 , ' . ' )
2001-03-01 09:55:20 -04:00
2001-03-23 09:17:50 -04:00
try :
2001-03-01 09:55:20 -04:00
opts , args = getopt . getopt ( sys . argv [ 1 : ] , ' gk:p:w ' )
2001-02-27 10:43:46 -04:00
writing = 0
for opt , val in opts :
2001-03-01 09:55:20 -04:00
if opt == ' -g ' :
gui ( )
return
2001-02-27 10:43:46 -04:00
if opt == ' -k ' :
2001-03-01 09:55:20 -04:00
apropos ( val )
return
2001-02-27 10:43:46 -04:00
if opt == ' -p ' :
try :
port = int ( val )
except ValueError :
raise BadUsage
2001-03-01 09:55:20 -04:00
def ready ( server ) :
2001-04-12 07:50:23 -03:00
print ' pydoc server ready at %s ' % server . url
def stopped ( ) :
print ' pydoc server stopped '
serve ( port , ready , stopped )
2001-03-01 09:55:20 -04:00
return
2001-02-27 10:43:46 -04:00
if opt == ' -w ' :
writing = 1
2001-03-01 09:55:20 -04:00
if not args : raise BadUsage
for arg in args :
2002-08-11 12:11:33 -03:00
if ispath ( arg ) and not os . path . exists ( arg ) :
print ' file %r does not exist ' % arg
break
2001-03-01 09:55:20 -04:00
try :
2001-03-22 20:12:53 -04:00
if ispath ( arg ) and os . path . isfile ( arg ) :
2001-03-01 09:55:20 -04:00
arg = importfile ( arg )
2001-03-22 20:12:53 -04:00
if writing :
if ispath ( arg ) and os . path . isdir ( arg ) :
writedocs ( arg )
else :
writedoc ( arg )
else :
2003-06-14 06:03:46 -03:00
help . help ( arg )
2001-03-23 09:17:50 -04:00
except ErrorDuringImport , value :
2001-03-22 20:12:53 -04:00
print value
2001-02-27 10:43:46 -04:00
except ( getopt . error , BadUsage ) :
2003-10-31 09:05:21 -04:00
cmd = os . path . basename ( sys . argv [ 0 ] )
2001-03-01 09:55:20 -04:00
print """ pydoc - the Python documentation tool
% s < name > . . .
Show text documentation on something . < name > may be the name of a
2003-06-14 06:03:46 -03:00
Python keyword , topic , function , module , or package , or a dotted
reference to a class or function within a module or module in a
package . If < name > contains a ' %s ' , it is used as the path to a
Python source file to document . If name is ' keywords ' , ' topics ' ,
or ' modules ' , a listing of these things is displayed .
2001-02-27 10:43:46 -04:00
% s - k < keyword >
2001-03-01 09:55:20 -04:00
Search for a keyword in the synopsis lines of all available modules .
2001-02-27 10:43:46 -04:00
% s - p < port >
Start an HTTP server on the given port on the local machine .
2001-03-01 09:55:20 -04:00
% s - g
2001-04-10 08:46:02 -03:00
Pop up a graphical interface for finding and serving documentation .
2001-03-01 09:55:20 -04:00
% s - w < name > . . .
Write out the HTML documentation for a module to a file in the current
2001-04-10 08:46:02 -03:00
directory . If < name > contains a ' %s ' , it is treated as a filename ; if
it names a directory , documentation is written for all the contents .
2001-03-01 09:55:20 -04:00
""" % (cmd, os.sep, cmd, cmd, cmd, cmd, os.sep)
if __name__ == ' __main__ ' : cli ( )