Last active
September 8, 2015 15:28
-
-
Save aaossa/c164b7216d2d89d5ad61 to your computer and use it in GitHub Desktop.
Revisions
-
aaossa revised this gist
Sep 8, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ import imp # This snippet allows to import a compiled python file # in a simple way my_module = imp.load_compiled( "my_module", r"full\or\relative\path\to\module.pyc") -
aaossa revised this gist
Sep 6, 2015 . No changes.There are no files selected for viewing
-
aaossa created this gist
Sep 6, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ import imp # This snippets allows to import a compiled python file # in a simple way my_module = imp.load_compiled( "my_module", r"full\or\relative\path\to\module.pyc")