2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

selected_doc() helper function modified to increase readability

[SVN r32339]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2006-01-16 20:54:53 +00:00
parent 335cd02c2d
commit 8897cc9ce6
2 changed files with 73 additions and 45 deletions

View File

@@ -111,16 +111,30 @@
>>> def selected_doc(obj, *args):
... doc = obj.__doc__.splitlines()
... return [doc[i] for i in args]
... return "\\n".join(["|"+doc[i] for i in args])
>>> selected_doc(X.__init__, 0, 2, 4, 6, 8, 9, 10, 12)
['C++ signature:', 'C++ signature:', 'C++ signature:', 'C++ signature:', '', 'doc of init', 'C++ signature:', 'C++ signature:']
>>> print selected_doc(X.__init__, 0, 2, 4, 6, 8, 9, 10, 12)
|C++ signature:
|C++ signature:
|C++ signature:
|C++ signature:
|
|doc of init
|C++ signature:
|C++ signature:
>>> selected_doc(Y.__init__, 0, 1)
['doc of Y init', 'C++ signature:']
>>> print selected_doc(Y.__init__, 0, 1)
|doc of Y init
|C++ signature:
>>> selected_doc(X.bar2, 0, 2, 4, 6, 8, 9, 10)
['C++ signature:', 'C++ signature:', 'C++ signature:', 'C++ signature:', '', 'doc of X::bar2', 'C++ signature:']
>>> print selected_doc(X.bar2, 0, 2, 4, 6, 8, 9, 10)
|C++ signature:
|C++ signature:
|C++ signature:
|C++ signature:
|
|doc of X::bar2
|C++ signature:
"""
def run(args = None):

View File

@@ -1,73 +1,87 @@
# Copyright David Abrahams 2004. Distributed under the Boost
# Software License, Version 1.0. (See accompanying
# Copyright David Abrahams & Ralf W. Grosse-Kunsteve 2004-2006.
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
'''
>>> from docstring_ext import *
>>> def selected_doc(obj, *args):
... doc = obj.__doc__.splitlines()
... return [doc[i] for i in args]
... return "\\n".join(["|"+doc[i] for i in args])
>>> selected_doc(X.__init__, 0, 1, 2)
['this is the __init__ function', 'its documentation has two lines.', 'C++ signature:']
>>> print selected_doc(X.__init__, 0, 1, 2)
|this is the __init__ function
|its documentation has two lines.
|C++ signature:
>>> selected_doc(X.value, 0, 1, 3, 4, 5)
['gets the value of the object', 'C++ signature:', '', 'also gets the value of the object', 'C++ signature:']
>>> print selected_doc(X.value, 0, 1, 3, 4, 5)
|gets the value of the object
|C++ signature:
|
|also gets the value of the object
|C++ signature:
>>> selected_doc(create, 0, 1)
['creates a new X object', 'C++ signature:']
>>> print selected_doc(create, 0, 1)
|creates a new X object
|C++ signature:
>>> selected_doc(fact, 0, 1)
['compute the factorial', 'C++ signature:']
>>> print selected_doc(fact, 0, 1)
|compute the factorial
|C++ signature:
>>> len(fact_usr_off_1.__doc__.splitlines())
2
>>> selected_doc(fact_usr_off_1, 0)
['C++ signature:']
>>> print selected_doc(fact_usr_off_1, 0)
|C++ signature:
>>> len(fact_usr_on_1.__doc__.splitlines())
3
>>> selected_doc(fact_usr_on_1, 0, 1)
['usr on 1', 'C++ signature:']
>>> print selected_doc(fact_usr_on_1, 0, 1)
|usr on 1
|C++ signature:
>>> len(fact_usr_off_2.__doc__.splitlines())
2
>>> selected_doc(fact_usr_off_2, 0)
['C++ signature:']
>>> print selected_doc(fact_usr_off_2, 0)
|C++ signature:
>>> len(fact_usr_on_2.__doc__.splitlines())
3
>>> selected_doc(fact_usr_on_2, 0, 1)
['usr on 2', 'C++ signature:']
>>> print selected_doc(fact_usr_on_2, 0, 1)
|usr on 2
|C++ signature:
>>> len(fact_sig_off_1.__doc__.splitlines())
1
>>> selected_doc(fact_sig_off_1, 0)
['sig off 1']
>>> print selected_doc(fact_sig_off_1, 0)
|sig off 1
>>> len(fact_sig_on_1.__doc__.splitlines())
3
>>> selected_doc(fact_sig_on_1, 0, 1)
['sig on 1', 'C++ signature:']
>>> print selected_doc(fact_sig_on_1, 0, 1)
|sig on 1
|C++ signature:
>>> len(fact_sig_off_2.__doc__.splitlines())
1
>>> selected_doc(fact_sig_off_2, 0)
['sig off 2']
>>> print selected_doc(fact_sig_off_2, 0)
|sig off 2
>>> len(fact_sig_on_2.__doc__.splitlines())
3
>>> selected_doc(fact_sig_on_2, 0, 1)
['sig on 2', 'C++ signature:']
>>> print selected_doc(fact_sig_on_2, 0, 1)
|sig on 2
|C++ signature:
>>> print fact_usr_off_sig_off_1.__doc__
None
>>> len(fact_usr_on_sig_on_1.__doc__.splitlines())
3
>>> selected_doc(fact_usr_on_sig_on_1, 0, 1)
['usr on sig on 1', 'C++ signature:']
>>> print selected_doc(fact_usr_on_sig_on_1, 0, 1)
|usr on sig on 1
|C++ signature:
>>> len(fact_usr_on_sig_off_1.__doc__.splitlines())
1
>>> selected_doc(fact_usr_on_sig_off_1, 0)
['usr on sig off 1']
>>> print selected_doc(fact_usr_on_sig_off_1, 0)
|usr on sig off 1
>>> len(fact_usr_on_sig_on_2.__doc__.splitlines())
3
>>> selected_doc(fact_usr_on_sig_on_2, 0, 1)
['usr on sig on 2', 'C++ signature:']
>>> print selected_doc(fact_usr_on_sig_on_2, 0, 1)
|usr on sig on 2
|C++ signature:
>>> print fact_usr_off_sig_off_2.__doc__
None
@@ -79,11 +93,11 @@ def run(args = None):
if args is not None:
sys.argv = args
import docstring_ext
result = doctest.testmod(sys.modules.get(__name__))
import pydoc
import re
docmodule = lambda m: re.sub(".\10", "", pydoc.text.docmodule(m))
@@ -96,9 +110,9 @@ def run(args = None):
result = list(result)
result[0] += 1
return tuple(result)
return result
if __name__ == '__main__':
print "running..."
import sys