aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-11-17 07:44:30 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-11-17 08:24:38 +0300
commit9e68d5a3e3726dfbadc18da70d56dd4b30820fc7 (patch)
tree39f7e12d8d61bdd5409fb7d8f0be266d09cfc66d
parent275956d7b7169702a670b937dea50a17b44e2cc2 (diff)
downloadydb-9e68d5a3e3726dfbadc18da70d56dd4b30820fc7.tar.gz
Intermediate changes
-rw-r--r--contrib/python/argcomplete/py3/.dist-info/METADATA2
-rw-r--r--contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete4
-rw-r--r--contrib/python/argcomplete/py3/ya.make2
3 files changed, 5 insertions, 3 deletions
diff --git a/contrib/python/argcomplete/py3/.dist-info/METADATA b/contrib/python/argcomplete/py3/.dist-info/METADATA
index f398fefb39..4998ab3f8c 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.1.3
+Version: 3.1.4
Summary: Bash tab completion for argparse
Home-page: https://github.com/kislyuk/argcomplete
Author: Andrey Kislyuk
diff --git a/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete b/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
index 4c7edda3c3..1e4c66ce80 100644
--- a/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
+++ b/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
@@ -138,8 +138,10 @@ _python_argcomplete_global() {
req_argv=( "" "${COMP_WORDS[@]:1}" )
__python_argcomplete_expand_tilde_by_ref executable
else
- # TODO: check if we should call _default or use a different condition here
if [[ "$service" != "-default-" ]]; then
+ # TODO: this may not be sufficient - see https://zsh.sourceforge.io/Doc/Release/Completion-System.html
+ # May need to call _complete with avoid-completer=_python-argcomplete or something like that
+ _default
return
fi
executable="${words[1]}"
diff --git a/contrib/python/argcomplete/py3/ya.make b/contrib/python/argcomplete/py3/ya.make
index 9f84819376..87550994a9 100644
--- a/contrib/python/argcomplete/py3/ya.make
+++ b/contrib/python/argcomplete/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(3.1.3)
+VERSION(3.1.4)
LICENSE(Apache-2.0)