💡 update docstring

This commit is contained in:
yanyongyu 2021-02-02 12:15:20 +08:00
parent 88bbb57c66
commit a54fd2f235
2 changed files with 16 additions and 12 deletions

View File

@ -12,6 +12,7 @@
- ``on_endswith`` => ``nonebot.plugin.on_endswith``
- ``on_keyword`` => ``nonebot.plugin.on_keyword``
- ``on_command`` => ``nonebot.plugin.on_command``
- ``on_shell_command`` => ``nonebot.plugin.on_shell_command``
- ``on_regex`` => ``nonebot.plugin.on_regex``
- ``CommandGroup`` => ``nonebot.plugin.CommandGroup``
- ``Matchergroup`` => ``nonebot.plugin.MatcherGroup``

View File

@ -280,6 +280,11 @@ def command(*cmds: Union[str, Tuple[str, ...]]) -> Rule:
class ArgumentParser(ArgParser):
"""
:说明:
``shell_like`` 命令参数解析器解析出错时不会退出程序
"""
def _print_message(self, message, file=None):
pass
@ -287,16 +292,11 @@ class ArgumentParser(ArgParser):
def exit(self, status=0, message=None):
raise ParserExit(status=status, message=message)
def parse_args(
self,
args: Optional[Sequence[str]] = None,
namespace: Optional[Namespace] = None
) -> Union[ParserExit, Namespace]:
try:
return super().parse_args(args=args,
namespace=namespace) # type: ignore
except ParserExit as e:
return e
def parse_args(self,
args: Optional[Sequence[str]] = None,
namespace: Optional[Namespace] = None) -> Namespace:
return super().parse_args(args=args,
namespace=namespace) # type: ignore
def shell_command(*cmds: Union[str, Tuple[str, ...]],
@ -361,8 +361,11 @@ def shell_command(*cmds: Union[str, Tuple[str, ...]],
):].lstrip()
state["argv"] = shlex.split(strip_message)
if parser:
args = parser.parse_args(state["argv"])
state["args"] = args
try:
args = parser.parse_args(state["argv"])
state["args"] = args
except ParserExit as e:
state["args"] = e
return True
else:
return False