本文整理汇总了Python中pydoc.splitdoc方法的典型用法代码示例。如果您正苦于以下问题:Python pydoc.splitdoc方法的具体用法?Python pydoc.splitdoc怎么用?Python pydoc.splitdoc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pydoc
的用法示例。
在下文中一共展示了pydoc.splitdoc方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_splitdoc_with_description
# 需要导入模块: import pydoc [as 别名]
# 或者: from pydoc import splitdoc [as 别名]
def test_splitdoc_with_description(self):
example_string = "I Am A Doc\n\n\nHere is my description"
self.assertEqual(pydoc.splitdoc(example_string),
('I Am A Doc', '\nHere is my description'))
示例2: get_module_name
# 需要导入模块: import pydoc [as 别名]
# 或者: from pydoc import splitdoc [as 别名]
def get_module_name(module):
"""Return the short description of the number."""
return pydoc.splitdoc(pydoc.getdoc(module))[0].strip('.')
示例3: get_module_description
# 需要导入模块: import pydoc [as 别名]
# 或者: from pydoc import splitdoc [as 别名]
def get_module_description(module):
"""Return a description of the number."""
doc = pydoc.splitdoc(pydoc.getdoc(module))[1]
# remove the doctests
return _strip_doctest_re.sub('', doc).strip()