Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/2] Update python3 completion for version 3.11
- X-seq: zsh-workers 51330
- From: Shohei YOSHIDA <syohex@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Cc: Shohei YOSHIDA <syohex@xxxxxxxxx>
- Subject: [PATCH 1/2] Update python3 completion for version 3.11
- Date: Wed, 25 Jan 2023 14:48:38 +0900
- Archived-at: <https://zsh.org/workers/51330>
- In-reply-to: <20230125054839.283644-1-syohex@gmail.com>
- List-id: <zsh-workers.zsh.org>
- References: <20230125054839.283644-1-syohex@gmail.com>
---
Completion/Unix/Command/_python | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_python b/Completion/Unix/Command/_python
index 2711b8fd3..6e209a199 100644
--- a/Completion/Unix/Command/_python
+++ b/Completion/Unix/Command/_python
@@ -1,7 +1,7 @@
#compdef -P python[0-9.]#
# Python 2.7
-# Python 3.9
+# Python 3.11
local curcontext="$curcontext" state state_descr line _compskip="$_compskip"
typeset -A opt_args
@@ -12,7 +12,11 @@ if _pick_variant python3=Python\ 3 python2 --version; then
'(-bb)-b[issue warnings about str(bytes_instance), str(bytearray_instance) and comparing bytes/bytearray with str]'
'(-b)-bb[issue errors about str(bytes_instance), str(bytearray_instance) and comparing bytes/bytearray with str]'
'--check-hash-based-pycs[configure how Python evaluates up-to-dateness of hash-based .pyc files]:mode:(always default never)'
+ '--help-env[print help about Python environment variables and exit]'
+ '--help-xoptions[print help about implementation-specific -X options and exit]'
+ '--help-all[print complete help information and exit]'
"-I[isolate Python from the user's environment]"
+ '-P[do not prepend a potentially unsafe path to sys.path]'
'-q[do not print version and copyright messages]'
'-X[set implementation-specific option]:option'
)
--
2.37.2
Messages sorted by:
Reverse Date,
Date,
Thread,
Author