diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-13 14:00:06 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-13 14:50:18 +0300 |
commit | 84872c9673776978453258b23ba78fb2a6f32d85 (patch) | |
tree | 42294999d5db59f777b166c06b2afcbeba02bf01 | |
parent | 4526714adffb9a72bcf8e217ace99c462ef8fe1f (diff) | |
download | ydb-84872c9673776978453258b23ba78fb2a6f32d85.tar.gz |
Intermediate changes
commit_hash:992717cf79aff70cae8cf0b99d379f3c804aa73f
-rw-r--r-- | contrib/python/argcomplete/py3/.dist-info/METADATA | 12 | ||||
-rw-r--r-- | contrib/python/argcomplete/py3/argcomplete/packages/_argparse.py | 2 | ||||
-rw-r--r-- | contrib/python/argcomplete/py3/ya.make | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/contrib/python/argcomplete/py3/.dist-info/METADATA b/contrib/python/argcomplete/py3/.dist-info/METADATA index 8bda4dd4a3..5298d4a927 100644 --- a/contrib/python/argcomplete/py3/.dist-info/METADATA +++ b/contrib/python/argcomplete/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: argcomplete -Version: 3.5.1 +Version: 3.5.2 Summary: Bash tab completion for argparse Home-page: https://github.com/kislyuk/argcomplete Author: Andrey Kislyuk @@ -37,11 +37,11 @@ Description-Content-Type: text/x-rst License-File: LICENSE.rst License-File: NOTICE Provides-Extra: test -Requires-Dist: coverage ; extra == 'test' -Requires-Dist: pexpect ; extra == 'test' -Requires-Dist: wheel ; extra == 'test' -Requires-Dist: ruff ; extra == 'test' -Requires-Dist: mypy ; extra == 'test' +Requires-Dist: coverage; extra == "test" +Requires-Dist: pexpect; extra == "test" +Requires-Dist: wheel; extra == "test" +Requires-Dist: ruff; extra == "test" +Requires-Dist: mypy; extra == "test" argcomplete - Bash/zsh tab completion for argparse ================================================== diff --git a/contrib/python/argcomplete/py3/argcomplete/packages/_argparse.py b/contrib/python/argcomplete/py3/argcomplete/packages/_argparse.py index d10cf01da9..0666845e3a 100644 --- a/contrib/python/argcomplete/py3/argcomplete/packages/_argparse.py +++ b/contrib/python/argcomplete/py3/argcomplete/packages/_argparse.py @@ -75,7 +75,7 @@ class IntrospectiveArgumentParser(ArgumentParser): except for the lines that contain the string "Added by argcomplete". ''' - def _parse_known_args(self, arg_strings, namespace): + def _parse_known_args(self, arg_strings, namespace, intermixed=False): _num_consumed_args.clear() # Added by argcomplete self._argcomplete_namespace = namespace self.active_actions: List[Action] = [] # Added by argcomplete diff --git a/contrib/python/argcomplete/py3/ya.make b/contrib/python/argcomplete/py3/ya.make index ddce3929fb..e54ca26a82 100644 --- a/contrib/python/argcomplete/py3/ya.make +++ b/contrib/python/argcomplete/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(3.5.1) +VERSION(3.5.2) LICENSE(Apache-2.0) |