Created
January 31, 2018 14:39
-
-
Save anonymous/bb12fac1ef11ebf73c51f10fd2dde1aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph { | |
node [shape="none"] | |
subgraph cluster_python { | |
label=Python | |
MetaPathFinder PathFinder | |
} | |
subgraph cluster_ipython { | |
label=IPython | |
InputTransformer | |
} | |
subgraph cluster_XXX { | |
label=deathbeds | |
aye mumble | |
} | |
literacy -> mumble | |
literacy -> MetaPathFinder | |
literacy -> InputTransformer | |
root [label="."] | |
MetaPathFinder -> root -> module | |
mumble -> InputTransformer [label="literate"] | |
aye -> PathFinder [label="import"] | |
# PathFinder -> MetaPathFinder [label="*"] | |
aye -> mumble | |
aye -> literacy | |
sys[label="sys.paths"] | |
PathFinder -> sys -> module | |
InputTransformer -> module | |
subgraph cluster_directory { | |
label="search paths" | |
root sys | |
} | |
subgraph cluster_before { | |
label=Before | |
literacy | |
} | |
subgraph cluster_import { | |
label="ipynb" | |
module | |
} | |
star_ipynb[label="*.ipynb"] | |
star_ipynb -> {literacy aye} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment