MCPcopy Index your code
hub / github.com/RustPython/RustPython / pager

Function pager

Lib/pydoc.py:1679–1683  ·  view source on GitHub ↗

The first time this is called, determine what kind of pager to use.

(text, title='')

Source from the content-addressed store, hash-verified

1677# --------------------------------------------------------- user interfaces
1678
1679def pager(text, title=''):
1680 """The first time this is called, determine what kind of pager to use."""
1681 global pager
1682 pager = get_pager()
1683 pager(text, title)
1684
1685def describe(thing):
1686 """Produce a short description of the given thing."""

Callers 3

docFunction · 0.85
showtopicMethod · 0.85
doMethod · 0.85

Calls 1

get_pagerFunction · 0.90

Tested by

no test coverage detected