aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-07-01 10:15:18 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-07-01 10:23:29 +0300
commit8540befcf5182df7fdf5704c02e122320abb4622 (patch)
tree9f9fe9b5349ed3252d7125090f2f2a35729569f0
parent39d6b4e403f27b6adda124cc1a099f454c3db241 (diff)
downloadydb-8540befcf5182df7fdf5704c02e122320abb4622.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-argcomplete5
-rw-r--r--contrib/python/argcomplete/py3/argcomplete/shell_integration.py4
-rw-r--r--contrib/python/argcomplete/py3/ya.make2
4 files changed, 7 insertions, 6 deletions
diff --git a/contrib/python/argcomplete/py3/.dist-info/METADATA b/contrib/python/argcomplete/py3/.dist-info/METADATA
index ffefd85b8c..adbd1293a6 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.3.0
+Version: 3.4.0
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 502bf5effc..dec7cdac16 100644
--- a/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
+++ b/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
@@ -46,9 +46,9 @@ __python_argcomplete_run() {
__python_argcomplete_run_inner() {
if [[ -z "${_ARC_DEBUG-}" ]]; then
- "$@" 8>&1 9>&2 1>/dev/null 2>&1
+ "$@" 8>&1 9>&2 1>/dev/null 2>&1 </dev/null
else
- "$@" 8>&1 9>&2 1>&9 2>&1
+ "$@" 8>&1 9>&2 1>&9 2>&1 </dev/null
fi
}
@@ -76,6 +76,7 @@ __python_argcomplete_scan_head() {
local file="$1"
local target="$2"
+ local REPLY
if [[ -n "${ZSH_VERSION-}" ]]; then
read -r -k 1024 -u 0 < "$file";
else
diff --git a/contrib/python/argcomplete/py3/argcomplete/shell_integration.py b/contrib/python/argcomplete/py3/argcomplete/shell_integration.py
index e84f507de4..f0b9d7db5b 100644
--- a/contrib/python/argcomplete/py3/argcomplete/shell_integration.py
+++ b/contrib/python/argcomplete/py3/argcomplete/shell_integration.py
@@ -24,9 +24,9 @@ __python_argcomplete_run() {
__python_argcomplete_run_inner() {
if [[ -z "${_ARC_DEBUG-}" ]]; then
- "$@" 8>&1 9>&2 1>/dev/null 2>&1
+ "$@" 8>&1 9>&2 1>/dev/null 2>&1 </dev/null
else
- "$@" 8>&1 9>&2 1>&9 2>&1
+ "$@" 8>&1 9>&2 1>&9 2>&1 </dev/null
fi
}
diff --git a/contrib/python/argcomplete/py3/ya.make b/contrib/python/argcomplete/py3/ya.make
index 9b867e4d8b..e2cc4f6540 100644
--- a/contrib/python/argcomplete/py3/ya.make
+++ b/contrib/python/argcomplete/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(3.3.0)
+VERSION(3.4.0)
LICENSE(Apache-2.0)