chore: update dist package

This commit is contained in:
Noortheen Raja 2022-03-24 00:32:12 +05:30 committed by Noorhteen Raja NJ
parent 576842c448
commit 72fd026c52
3 changed files with 7 additions and 6 deletions

View file

@ -321,6 +321,7 @@ def main():
"xonsh.completers",
"xonsh.history",
"xonsh.prompt",
"xonsh.pytest",
"xonsh.lib",
"xonsh.webconfig",
"xompletions",

View file

@ -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__

View file

@ -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