forked from donnemartin/gitsome
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request donnemartin#160 from donnemartin/develop
Add Python 3.7 support
- Loading branch information
Showing
291 changed files
with
58,596 additions
and
7,743 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
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 +1,104 @@ | ||
__version__ = '0.2.2' | ||
__version__ = "0.8.10" | ||
|
||
|
||
# amalgamate exclude jupyter_kernel parser_table parser_test_table pyghooks | ||
# amalgamate exclude winutils wizard pytest_plugin fs macutils pygments_cache | ||
# amalgamate exclude jupyter_shell | ||
import os as _os | ||
|
||
if _os.getenv("XONSH_DEBUG", ""): | ||
pass | ||
else: | ||
import sys as _sys | ||
|
||
try: | ||
from xonsh import __amalgam__ | ||
|
||
completer = __amalgam__ | ||
_sys.modules["xonsh.completer"] = __amalgam__ | ||
contexts = __amalgam__ | ||
_sys.modules["xonsh.contexts"] = __amalgam__ | ||
lazyasd = __amalgam__ | ||
_sys.modules["xonsh.lazyasd"] = __amalgam__ | ||
lazyjson = __amalgam__ | ||
_sys.modules["xonsh.lazyjson"] = __amalgam__ | ||
color_tools = __amalgam__ | ||
_sys.modules["xonsh.color_tools"] = __amalgam__ | ||
platform = __amalgam__ | ||
_sys.modules["xonsh.platform"] = __amalgam__ | ||
pretty = __amalgam__ | ||
_sys.modules["xonsh.pretty"] = __amalgam__ | ||
codecache = __amalgam__ | ||
_sys.modules["xonsh.codecache"] = __amalgam__ | ||
lazyimps = __amalgam__ | ||
_sys.modules["xonsh.lazyimps"] = __amalgam__ | ||
parser = __amalgam__ | ||
_sys.modules["xonsh.parser"] = __amalgam__ | ||
tokenize = __amalgam__ | ||
_sys.modules["xonsh.tokenize"] = __amalgam__ | ||
tools = __amalgam__ | ||
_sys.modules["xonsh.tools"] = __amalgam__ | ||
ansi_colors = __amalgam__ | ||
_sys.modules["xonsh.ansi_colors"] = __amalgam__ | ||
ast = __amalgam__ | ||
_sys.modules["xonsh.ast"] = __amalgam__ | ||
commands_cache = __amalgam__ | ||
_sys.modules["xonsh.commands_cache"] = __amalgam__ | ||
diff_history = __amalgam__ | ||
_sys.modules["xonsh.diff_history"] = __amalgam__ | ||
events = __amalgam__ | ||
_sys.modules["xonsh.events"] = __amalgam__ | ||
foreign_shells = __amalgam__ | ||
_sys.modules["xonsh.foreign_shells"] = __amalgam__ | ||
jobs = __amalgam__ | ||
_sys.modules["xonsh.jobs"] = __amalgam__ | ||
jsonutils = __amalgam__ | ||
_sys.modules["xonsh.jsonutils"] = __amalgam__ | ||
lexer = __amalgam__ | ||
_sys.modules["xonsh.lexer"] = __amalgam__ | ||
openpy = __amalgam__ | ||
_sys.modules["xonsh.openpy"] = __amalgam__ | ||
style_tools = __amalgam__ | ||
_sys.modules["xonsh.style_tools"] = __amalgam__ | ||
xontribs = __amalgam__ | ||
_sys.modules["xonsh.xontribs"] = __amalgam__ | ||
dirstack = __amalgam__ | ||
_sys.modules["xonsh.dirstack"] = __amalgam__ | ||
inspectors = __amalgam__ | ||
_sys.modules["xonsh.inspectors"] = __amalgam__ | ||
proc = __amalgam__ | ||
_sys.modules["xonsh.proc"] = __amalgam__ | ||
shell = __amalgam__ | ||
_sys.modules["xonsh.shell"] = __amalgam__ | ||
timings = __amalgam__ | ||
_sys.modules["xonsh.timings"] = __amalgam__ | ||
xonfig = __amalgam__ | ||
_sys.modules["xonsh.xonfig"] = __amalgam__ | ||
base_shell = __amalgam__ | ||
_sys.modules["xonsh.base_shell"] = __amalgam__ | ||
environ = __amalgam__ | ||
_sys.modules["xonsh.environ"] = __amalgam__ | ||
tracer = __amalgam__ | ||
_sys.modules["xonsh.tracer"] = __amalgam__ | ||
readline_shell = __amalgam__ | ||
_sys.modules["xonsh.readline_shell"] = __amalgam__ | ||
replay = __amalgam__ | ||
_sys.modules["xonsh.replay"] = __amalgam__ | ||
aliases = __amalgam__ | ||
_sys.modules["xonsh.aliases"] = __amalgam__ | ||
dumb_shell = __amalgam__ | ||
_sys.modules["xonsh.dumb_shell"] = __amalgam__ | ||
built_ins = __amalgam__ | ||
_sys.modules["xonsh.built_ins"] = __amalgam__ | ||
execer = __amalgam__ | ||
_sys.modules["xonsh.execer"] = __amalgam__ | ||
imphooks = __amalgam__ | ||
_sys.modules["xonsh.imphooks"] = __amalgam__ | ||
main = __amalgam__ | ||
_sys.modules["xonsh.main"] = __amalgam__ | ||
del __amalgam__ | ||
except ImportError: | ||
pass | ||
del _sys | ||
del _os | ||
# amalgamate end |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from xonsh.main import main | ||
|
||
main() |
Oops, something went wrong.