MCPcopy Index your code
hub / github.com/python/cpython / pager

Function pager

Lib/pydoc.py:1633–1637  ·  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

1631# --------------------------------------------------------- user interfaces
1632
1633def pager(text, title=''):
1634 """The first time this is called, determine what kind of pager to use."""
1635 global pager
1636 pager = get_pager()
1637 pager(text, title)
1638
1639def describe(thing):
1640 """Produce a short description of the given thing."""

Callers 4

__call__Method · 0.85
docFunction · 0.85
showtopicMethod · 0.85
doMethod · 0.85

Calls 1

get_pagerFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…