/opt/imh-python/lib/python3.9/site-packages/jaraco/text
NameSizeModeActions
__pycache__/-0755rm
layouts.py6430644editdlrm
Lorem ipsum.txt13350644editdlrm
show-newlines.py9030644editdlrm
strip-prefix.py4120644editdlrm
to-dvorak.py1180644editdlrm
to-qwerty.py1180644editdlrm
__init__.py167620644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/jaraco/text/strip-prefix.py (412B)
import sys import autocommand from jaraco.text import Stripper def strip_prefix(): r""" Strip any common prefix from stdin. >>> import io, pytest >>> getfixture('monkeypatch').setattr('sys.stdin', io.StringIO('abcdef\nabc123')) >>> strip_prefix() def 123 """ sys.stdout.writelines(Stripper.strip_prefix(sys.stdin).lines) autocommand.autocommand(__name__)(strip_prefix)