Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d0bb6aa2
Commit
d0bb6aa2
authored
Apr 25, 2012
by
Nick Coghlan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start a shared utility script for poking around at the import internals
parent
c94871a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
Tools/scripts/import_diagnostics.py
Tools/scripts/import_diagnostics.py
+39
-0
No files found.
Tools/scripts/import_diagnostics.py
0 → 100755
View file @
d0bb6aa2
#!/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
)
print
(
"sys.path:"
)
pprint
(
sys
.
path
)
print
(
"sys.meta_path"
)
pprint
(
sys
.
meta_path
)
print
(
"sys.path_hooks"
)
pprint
(
sys
.
path_hooks
)
print
(
"sys.path_importer_cache"
)
pprint
(
sys
.
path_importer_cache
)
print
(
"sys.modules:"
)
pprint
(
sys
.
modules
)
COMMANDS
=
(
(
"dump"
,
"Dump import state"
,
_dump_state
),
)
def
_make_parser
():
parser
=
argparse
.
ArgumentParser
()
sub
=
parser
.
add_subparsers
(
title
=
"Commands"
)
for
name
,
description
,
implementation
in
COMMANDS
:
cmd
=
sub
.
add_parser
(
name
,
help
=
description
)
cmd
.
set_defaults
(
command
=
implementation
)
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
:]))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment