-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
forgot to commit, add _no_io_ and *_retcodes_
- Loading branch information
Showing
34 changed files
with
169 additions
and
86 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
/.virtualenv/ | ||
/requirements.txt | ||
/python_modules | ||
/pybuildtool/.coverage | ||
|
||
|
||
# waf | ||
|
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
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
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
Submodule fireh_runner
updated
7 files
+2 −2 | README.md | |
+20 −19 | fireh_runner.py | |
+1 −1 | misc/configuration.py | |
+3 −1 | modules/python.py | |
+15 −1 | modules/redis.py | |
+18 −1 | modules/uwsgi.py | |
+4 −2 | setup_modules/python.py |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
try: | ||
from importlib.machinery import SourceFileLoader | ||
from importlib.util import module_from_spec, spec_from_loader | ||
except ImportError: | ||
import imp | ||
|
||
from importlib.machinery import SourceFileLoader | ||
from importlib.util import module_from_spec, spec_from_loader | ||
|
||
def load_module_from_filename(filename, name): | ||
try: | ||
spec = spec_from_loader(name, SourceFileLoader(name, filename)) | ||
mod = module_from_spec(spec) | ||
spec.loader.exec_module(mod) | ||
except NameError: | ||
mod = imp.load_source(name, filename) | ||
spec = spec_from_loader(name, SourceFileLoader(name, filename)) | ||
mod = module_from_spec(spec) | ||
spec.loader.exec_module(mod) | ||
return mod |
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
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
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
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
Oops, something went wrong.