bpo-30444: Added ability to set pager module's see more text by gautamkrishnar · Pull Request #1774 · python/cpython (original) (raw)
As of now, their is no way to change the text -- more --
that is displayed while using pager module. This PR will introduce this feature to the pager module so that we can use pager module, more effectively in our own applications for piping the text.
Old usage
pager("text to pipe")
New usage
pager("text to pipe", "text to display in the see more section")
I am new to python project. Please guide me if i need to make any changes regarding this PR.