aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/argcomplete
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2023-12-27 23:31:58 +0100
committerGitHub <noreply@github.com>2023-12-27 23:31:58 +0100
commitd67bfb4b4b7549081543e87a31bc6cb5c46ac973 (patch)
tree8674f2f1570877cb653e7ddcff37ba00288de15a /contrib/python/argcomplete
parent1f6bef05ed441c3aa2d565ac792b26cded704ac7 (diff)
downloadydb-d67bfb4b4b7549081543e87a31bc6cb5c46ac973.tar.gz
Import libs 4 (#758)
Diffstat (limited to 'contrib/python/argcomplete')
-rw-r--r--contrib/python/argcomplete/py3/.dist-info/METADATA2
-rw-r--r--contrib/python/argcomplete/py3/argcomplete/_check_console_script.py12
-rw-r--r--contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete40
-rw-r--r--contrib/python/argcomplete/py3/argcomplete/shell_integration.py11
-rw-r--r--contrib/python/argcomplete/py3/ya.make2
5 files changed, 48 insertions, 19 deletions
diff --git a/contrib/python/argcomplete/py3/.dist-info/METADATA b/contrib/python/argcomplete/py3/.dist-info/METADATA
index d9b6891313..c86dfbcaf5 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.6
+Version: 3.2.1
Summary: Bash tab completion for argparse
Home-page: https://github.com/kislyuk/argcomplete
Author: Andrey Kislyuk
diff --git a/contrib/python/argcomplete/py3/argcomplete/_check_console_script.py b/contrib/python/argcomplete/py3/argcomplete/_check_console_script.py
index bd324b4e71..63eac73f6f 100644
--- a/contrib/python/argcomplete/py3/argcomplete/_check_console_script.py
+++ b/contrib/python/argcomplete/py3/argcomplete/_check_console_script.py
@@ -13,12 +13,11 @@ Intended to be invoked by argcomplete's global completion function.
"""
import os
import sys
-
-from importlib.metadata import entry_points as importlib_entry_points
from importlib.metadata import EntryPoint
+from importlib.metadata import entry_points as importlib_entry_points
+from typing import Iterable
from ._check_module import ArgcompleteMarkerNotFound, find
-from typing import Iterable
def main():
@@ -29,15 +28,14 @@ def main():
# assuming it is actually a console script.
name = os.path.basename(script_path)
- entry_points : Iterable[EntryPoint] = importlib_entry_points() # type:ignore
+ entry_points: Iterable[EntryPoint] = importlib_entry_points() # type:ignore
# Python 3.12+ returns a tuple of entry point objects
# whereas <=3.11 returns a SelectableGroups object
if sys.version_info < (3, 12):
- entry_points = entry_points["console_scripts"] # type:ignore
+ entry_points = entry_points["console_scripts"] # type:ignore
- entry_points = [ep for ep in entry_points \
- if ep.name == name and ep.group == "console_scripts" ] # type:ignore
+ entry_points = [ep for ep in entry_points if ep.name == name and ep.group == "console_scripts"] # type:ignore
if not entry_points:
raise ArgcompleteMarkerNotFound("no entry point found matching script")
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 1e4c66ce80..3023ff289e 100644
--- a/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
+++ b/contrib/python/argcomplete/py3/argcomplete/bash_completion.d/_python-argcomplete
@@ -1,10 +1,15 @@
-#compdef -P *
+#compdef -default-
# Copyright 2012-2023, Andrey Kislyuk and argcomplete contributors.
# Licensed under the Apache License. See https://github.com/kislyuk/argcomplete for more info.
# Note: both the leading underscore in the name of this file and the first line (compdef) are required by zsh
+# In zsh, this file is autoloaded and used as the default completer (_default).
+# There are many other special contexts we don't want to override
+# (as would be the case with `#compdef -P *`).
+# https://zsh.sourceforge.io/Doc/Release/Completion-System.html
+
# Copy of __expand_tilde_by_ref from bash-completion
# ZSH implementation added
__python_argcomplete_expand_tilde_by_ref () {
@@ -138,12 +143,6 @@ _python_argcomplete_global() {
req_argv=( "" "${COMP_WORDS[@]:1}" )
__python_argcomplete_expand_tilde_by_ref executable
else
- 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]}"
req_argv=( "${words[@]:1}" )
fi
@@ -208,7 +207,15 @@ _python_argcomplete_global() {
_ARGCOMPLETE_SHELL="zsh" \
_ARGCOMPLETE_SUPPRESS_SPACE=1 \
__python_argcomplete_run "$executable" "${(@)req_argv[1, ${ARGCOMPLETE}-1]}"))
- _describe "$executable" completions
+ local nosort=()
+ local nospace=()
+ if is-at-least 5.8; then
+ nosort=(-o nosort)
+ fi
+ if [[ "${completions-}" =~ ([^\\]): && "${BASH_REMATCH[2]}" =~ [=/:] ]]; then
+ nospace=(-S '')
+ fi
+ _describe "$executable" completions "${nosort[@]}" "${nospace[@]}"
else
COMPREPLY=($(IFS="$IFS" \
COMP_LINE="$COMP_LINE" \
@@ -234,5 +241,20 @@ _python_argcomplete_global() {
if [[ -z "${ZSH_VERSION-}" ]]; then
complete -o default -o bashdefault -D -F _python_argcomplete_global
else
- compdef _python_argcomplete_global -P '*'
+ # -Uz is recommended for the use of functions supplied with the zsh distribution.
+ # https://unix.stackexchange.com/a/214306
+ autoload -Uz is-at-least
+ # If this is being implicitly loaded because we placed it on fpath,
+ # the comment at the top of this file causes zsh to invoke this script directly,
+ # so we must explicitly call the global completion function.
+ # Note $service should only ever be -default- because the comment at the top
+ # registers this script as the default completer (#compdef -default-).
+ if [[ $service == -default- ]]; then
+ _python_argcomplete_global
+ fi
+ # If this has been executed directly (e.g. `eval "$(activate-global-python-argcomplete --dest=-)"`)
+ # we need to explicitly call compdef to register the completion function.
+ # If we have been implicitly loaded, we still call compdef as a slight optimisation
+ # (there is no need to execute any top-level code more than once).
+ compdef _python_argcomplete_global -default-
fi
diff --git a/contrib/python/argcomplete/py3/argcomplete/shell_integration.py b/contrib/python/argcomplete/py3/argcomplete/shell_integration.py
index 53b8e18234..73214bb651 100644
--- a/contrib/python/argcomplete/py3/argcomplete/shell_integration.py
+++ b/contrib/python/argcomplete/py3/argcomplete/shell_integration.py
@@ -42,7 +42,15 @@ _python_argcomplete%(function_suffix)s() {
_ARGCOMPLETE_SHELL="zsh" \
_ARGCOMPLETE_SUPPRESS_SPACE=1 \
__python_argcomplete_run ${script:-${words[1]}}))
- _describe "${words[1]}" completions -o nosort
+ local nosort=()
+ local nospace=()
+ if is-at-least 5.8; then
+ nosort=(-o nosort)
+ fi
+ if [[ "${completions-}" =~ ([^\\]): && "${match[1]}" =~ [=/:] ]]; then
+ nospace=(-S '')
+ fi
+ _describe "${words[1]}" completions "${nosort[@]}" "${nospace[@]}"
else
local SUPPRESS_SPACE=0
if compopt +o nospace 2> /dev/null; then
@@ -67,6 +75,7 @@ _python_argcomplete%(function_suffix)s() {
if [[ -z "${ZSH_VERSION-}" ]]; then
complete %(complete_opts)s -F _python_argcomplete%(function_suffix)s %(executables)s
else
+ autoload is-at-least
compdef _python_argcomplete%(function_suffix)s %(executables)s
fi
"""
diff --git a/contrib/python/argcomplete/py3/ya.make b/contrib/python/argcomplete/py3/ya.make
index 6c09efa674..ceca768f4d 100644
--- a/contrib/python/argcomplete/py3/ya.make
+++ b/contrib/python/argcomplete/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(3.1.6)
+VERSION(3.2.1)
LICENSE(Apache-2.0)