-
-
Save tonyfast/195c426f6d2c15b6827557caf1f7f2d0 to your computer and use it in GitHub Desktop.
This file contains 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