asda?‰PNG  IHDR ? f ??C1 sRGB ??é gAMA ±? üa pHYs ? ??o¨d GIDATx^íüL”÷e÷Y?a?("Bh?_ò???¢§?q5k?*:t0A-o??¥]VkJ¢M??f?±8\k2íll£1]q?ù???T usr/lib64/python3.11/unittest/__main__.py000064400000000730151027146140014073 0ustar00"""Main entry point""" import sys if sys.argv[0].endswith("__main__.py"): import os.path # We change sys.argv[0] to make help message more useful # use executable without path, unquoted # (it's just a hint anyway) # (if you have spaces in your executable you get what you deserve!) executable = os.path.basename(sys.executable) sys.argv[0] = executable + " -m unittest" del os __unittest = True from .main import main main(module=None) usr/lib64/python3.6/lib2to3/__main__.py000064400000000103151027163350013412 0ustar00import sys from .main import main sys.exit(main("lib2to3.fixes")) usr/lib64/python2.7/ensurepip/__main__.py000064400000000130151027355750014155 0ustar00import ensurepip import sys if __name__ == "__main__": sys.exit(ensurepip._main()) usr/lib/python3.6/site-packages/html2text/__main__.py000064400000000047151027610670016446 0ustar00from html2text.cli import main main() usr/lib/python3.6/site-packages/pip/__main__.py000064400000001110151027757500015277 0ustar00from __future__ import absolute_import import os import sys # If we are running from a wheel, add the wheel to sys.path # This allows the usage python pip-*.whl/pip install pip-*.whl if __package__ == '': # __file__ is pip-*.whl/pip/__main__.py # first dirname call strips of '/__main__.py', second strips off '/pip' # Resulting path is the name of the wheel itself # Add that to sys.path so we can import pip path = os.path.dirname(os.path.dirname(__file__)) sys.path.insert(0, path) import pip # noqa if __name__ == '__main__': sys.exit(pip.main()) usr/lib/python2.7/site-packages/pip/__main__.py000064400000001110151027770160015274 0ustar00from __future__ import absolute_import import os import sys # If we are running from a wheel, add the wheel to sys.path # This allows the usage python pip-*.whl/pip install pip-*.whl if __package__ == '': # __file__ is pip-*.whl/pip/__main__.py # first dirname call strips of '/__main__.py', second strips off '/pip' # Resulting path is the name of the wheel itself # Add that to sys.path so we can import pip path = os.path.dirname(os.path.dirname(__file__)) sys.path.insert(0, path) import pip # noqa if __name__ == '__main__': sys.exit(pip.main())