本文整理汇总了Python中pydoc.synopsis函数的典型用法代码示例。如果您正苦于以下问题:Python synopsis函数的具体用法?Python synopsis怎么用?Python synopsis使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了synopsis函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_synopsis_sourceless_empty_doc
def test_synopsis_sourceless_empty_doc(self):
with test.support.temp_cwd() as test_dir:
init_path = os.path.join(test_dir, 'foomod42.py')
cached_path = importlib.util.cache_from_source(init_path)
with open(init_path, 'w') as fobj:
fobj.write("foo = 1")
py_compile.compile(init_path)
synopsis = pydoc.synopsis(init_path, {})
self.assertIsNone(synopsis)
synopsis_cached = pydoc.synopsis(cached_path, {})
self.assertIsNone(synopsis_cached)
示例2: test_synopsis_sourceless_empty_doc
def test_synopsis_sourceless_empty_doc(self):
with test.test_support.temp_cwd() as test_dir:
init_path = os.path.join(test_dir, "foomod42.py")
cached_path = os.path.join(test_dir, "foomod42.pyc")
with open(init_path, "w") as fobj:
fobj.write("foo = 1")
py_compile.compile(init_path)
synopsis = pydoc.synopsis(init_path, {})
self.assertIsNone(synopsis)
synopsis_cached = pydoc.synopsis(cached_path, {})
self.assertIsNone(synopsis_cached)
示例3: shortusage
def shortusage():
print(pydoc.synopsis(sys.argv[0]))
print("""
For simple text summary:
find-fix.py [options] query-set-1.tsv YYYY-MM-DD YYYY-MM-DD
For gnuplot presentation:
find-fix.py [options] query-set-1.tsv outfile
""")
示例4: test_synopsis
def test_synopsis(self):
self.addCleanup(unlink, TESTFN)
for encoding in ('ISO-8859-1', 'UTF-8'):
with open(TESTFN, 'w', encoding=encoding) as script:
if encoding != 'UTF-8':
print('#coding: {}'.format(encoding), file=script)
print('"""line 1: h\xe9', file=script)
print('line 2: hi"""', file=script)
synopsis = pydoc.synopsis(TESTFN, {})
self.assertEqual(synopsis, 'line 1: h\xe9')
示例5: test_synopsis
def test_synopsis(self):
with test.test_support.temp_cwd() as test_dir:
init_path = os.path.join(test_dir, 'dt.py')
with open(init_path, 'w') as fobj:
fobj.write('''\
"""
my doc
second line
"""
foo = 1
''')
py_compile.compile(init_path)
synopsis = pydoc.synopsis(init_path, {})
self.assertEqual(synopsis, 'my doc')
示例6: run
def run(self, callback, key=None, completer=None):
if key: key = lower(key)
self.quit = False
seen = {}
for modname in sys.builtin_module_names:
if modname != '__main__':
seen[modname] = 1
if key is None:
callback(None, modname, '')
else:
desc = split(__import__(modname).__doc__ or '', '\n')[0]
if key in lower('%s - %s' % (modname, desc)):
callback(None, modname, desc)
while not self.quit:
node = self.next()
if not node: break
path, package = node
path_parts = split(path, os.sep)
build_path = ''
found_package_info = False
for path in path_parts:
if path.endswith(':'): path = os.path.join(path, os.sep)
build_path = os.path.join(build_path, path)
if os.path.exists(os.path.join(build_path, 'opus_package_info.py')):
found_package_info = True
break
if not found_package_info: continue
modname = inspect.getmodulename(path)
if os.path.isfile(path) and modname:
modname = package + (package and '.') + modname
if not modname in seen:
seen[modname] = 1 # if we see spam.py, skip spam.pyc
if key is None:
callback(path, modname, '')
else:
desc = synopsis(path) or ''
if key in lower('%s - %s' % (modname, desc)):
callback(path, modname, desc)
if completer: completer()
示例7: test_synopsis_sourceless
def test_synopsis_sourceless(self):
expected = os.__doc__.splitlines()[0]
filename = os.__cached__
synopsis = pydoc.synopsis(filename)
self.assertEqual(synopsis, expected)
示例8: shortusage
def shortusage():
print pydoc.synopsis(sys.argv[0])
print """
示例9: shortusage
def shortusage():
"Print one-line usage summary."
print("%s - %s" % (me, pydoc.synopsis(sys.argv[0])))