mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
python-3.6.zip added from Github
README.cosmo contains the necessary links.
This commit is contained in:
parent
75fc601ff5
commit
0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions
37
third_party/python/Tools/scripts/import_diagnostics.py
vendored
Executable file
37
third_party/python/Tools/scripts/import_diagnostics.py
vendored
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Miscellaneous diagnostics for the import system"""
|
||||
|
||||
import sys
|
||||
import argparse
|
||||
from pprint import pprint
|
||||
|
||||
def _dump_state(args):
|
||||
print(sys.version)
|
||||
for name in args.attributes:
|
||||
print("sys.{}:".format(name))
|
||||
pprint(getattr(sys, name))
|
||||
|
||||
def _add_dump_args(cmd):
|
||||
cmd.add_argument("attributes", metavar="ATTR", nargs="+",
|
||||
help="sys module attribute to display")
|
||||
|
||||
COMMANDS = (
|
||||
("dump", "Dump import state", _dump_state, _add_dump_args),
|
||||
)
|
||||
|
||||
def _make_parser():
|
||||
parser = argparse.ArgumentParser()
|
||||
sub = parser.add_subparsers(title="Commands")
|
||||
for name, description, implementation, add_args in COMMANDS:
|
||||
cmd = sub.add_parser(name, help=description)
|
||||
cmd.set_defaults(command=implementation)
|
||||
add_args(cmd)
|
||||
return parser
|
||||
|
||||
def main(args):
|
||||
parser = _make_parser()
|
||||
args = parser.parse_args(args)
|
||||
return args.command(args)
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main(sys.argv[1:]))
|
Loading…
Add table
Add a link
Reference in a new issue