mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
chore: update dist package
This commit is contained in:
parent
576842c448
commit
72fd026c52
3 changed files with 7 additions and 6 deletions
1
setup.py
1
setup.py
|
@ -321,6 +321,7 @@ def main():
|
|||
"xonsh.completers",
|
||||
"xonsh.history",
|
||||
"xonsh.prompt",
|
||||
"xonsh.pytest",
|
||||
"xonsh.lib",
|
||||
"xonsh.webconfig",
|
||||
"xompletions",
|
||||
|
|
|
@ -11,6 +11,8 @@ else:
|
|||
|
||||
bash_completion = __amalgam__
|
||||
_sys.modules["xonsh.completers.bash_completion"] = __amalgam__
|
||||
dirs = __amalgam__
|
||||
_sys.modules["xonsh.completers.dirs"] = __amalgam__
|
||||
tools = __amalgam__
|
||||
_sys.modules["xonsh.completers.tools"] = __amalgam__
|
||||
commands = __amalgam__
|
||||
|
@ -19,12 +21,12 @@ else:
|
|||
_sys.modules["xonsh.completers.completer"] = __amalgam__
|
||||
environment = __amalgam__
|
||||
_sys.modules["xonsh.completers.environment"] = __amalgam__
|
||||
imports = __amalgam__
|
||||
_sys.modules["xonsh.completers.imports"] = __amalgam__
|
||||
man = __amalgam__
|
||||
_sys.modules["xonsh.completers.man"] = __amalgam__
|
||||
path = __amalgam__
|
||||
_sys.modules["xonsh.completers.path"] = __amalgam__
|
||||
pip = __amalgam__
|
||||
_sys.modules["xonsh.completers.pip"] = __amalgam__
|
||||
python = __amalgam__
|
||||
_sys.modules["xonsh.completers.python"] = __amalgam__
|
||||
_aliases = __amalgam__
|
||||
|
@ -33,8 +35,6 @@ else:
|
|||
_sys.modules["xonsh.completers.base"] = __amalgam__
|
||||
bash = __amalgam__
|
||||
_sys.modules["xonsh.completers.bash"] = __amalgam__
|
||||
dirs = __amalgam__
|
||||
_sys.modules["xonsh.completers.dirs"] = __amalgam__
|
||||
init = __amalgam__
|
||||
_sys.modules["xonsh.completers.init"] = __amalgam__
|
||||
del __amalgam__
|
||||
|
|
|
@ -9,6 +9,8 @@ else:
|
|||
try:
|
||||
from xonsh.prompt import __amalgam__
|
||||
|
||||
base = __amalgam__
|
||||
_sys.modules["xonsh.prompt.base"] = __amalgam__
|
||||
cwd = __amalgam__
|
||||
_sys.modules["xonsh.prompt.cwd"] = __amalgam__
|
||||
env = __amalgam__
|
||||
|
@ -19,8 +21,6 @@ else:
|
|||
_sys.modules["xonsh.prompt.times"] = __amalgam__
|
||||
vc = __amalgam__
|
||||
_sys.modules["xonsh.prompt.vc"] = __amalgam__
|
||||
base = __amalgam__
|
||||
_sys.modules["xonsh.prompt.base"] = __amalgam__
|
||||
del __amalgam__
|
||||
except ImportError:
|
||||
pass
|
||||
|
|
Loading…
Add table
Reference in a new issue